@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --black: #050505;
  --black-2: #0b0b0b;
  --charcoal: #171717;
  --charcoal-2: #222222;
  --blue: #2856a3;
  --blue-2: #173c7d;
  --yellow: #fdbb16;
  --yellow-2: #d89d00;
  --white: #ffffff;
  --muted: #aeb4c0;
  --line: rgba(255, 255, 255, .12);
  --shadow: 0 28px 80px rgba(0, 0, 0, .42);
  --page-max: 1180px;
  --page-pad: 24px;
  --section-y: clamp(76px, 7vw, 104px);
  --display: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  --body: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--yellow); color: var(--black); }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--yellow);
  color: var(--black);
  padding: 10px 14px;
  font-weight: 900;
}
.skip-link:focus { transform: translateY(0); }

.site-shell { min-height: 100vh; background: var(--black); }
.sbs-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  height: 44px;
  background: rgba(0, 0, 0, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}
.sbs-bar__inner,
.brand-header__inner,
.hero__inner,
.proof-band__inner,
.section__head,
.service-stage,
.planner-grid,
.route-line,
.location-grid,
.video-hub,
.faq-grid,
.footer__inner,
.footer__bottom {
  width: min(100% - calc(var(--page-pad) * 2), var(--page-max));
  margin-inline: auto;
}
.sbs-bar__inner {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sbs-mark,
.sbs-lockup,
.sbs-footer-mark,
.built-by-sbs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  border-radius: 999px;
  padding: 8px 16px;
  line-height: 0;
  text-decoration: none;
}
.sbs-mark img,
.sbs-lockup img,
.sbs-footer-mark img,
.built-by-sbs img,
[class*="sbs"] img {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  height: 22px;
  width: auto;
  display: block;
}
.sbs-bar__links { display: flex; align-items: center; gap: 10px; }
.sbs-bar__links a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  color: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 7px 10px;
  border-radius: 999px;
  transition: .2s ease;
}
.sbs-bar__links a:hover { color: var(--white); border-color: rgba(255, 255, 255, .34); transform: translateY(-1px); }
.sbs-bar__links .sbs-bar__test { background: var(--blue); border-color: var(--blue); color: var(--white); }

.brand-header {
  position: fixed;
  inset: 44px 0 auto 0;
  z-index: 70;
  height: 76px;
  background: rgba(2, 2, 2, .86);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}
.brand-header__inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo img { width: clamp(230px, 22vw, 355px); height: auto; }
.brand-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); }
.brand-nav a {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 16px;
  color: rgba(255, 255, 255, .78);
  position: relative;
  padding: 28px 0;
}
.brand-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: .2s ease;
}
.brand-nav a:hover { color: var(--white); }
.brand-nav a:hover::after { transform: scaleX(1); }
.brand-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  color: rgba(255, 255, 255, .7);
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
}
.menu-toggle {
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  color: var(--white);
  display: none;
  place-content: center;
  gap: 4px;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  margin: 2px auto;
}
.menu-toggle em {
  display: block;
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 10px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  box-shadow: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--small { min-height: 38px; padding: 0 14px; font-size: 14px; border-radius: 8px; }
.btn--yellow { background: var(--yellow); color: #080808; border-color: var(--yellow); }
.btn--yellow:hover { background: var(--yellow-2); border-color: var(--yellow-2); }
.btn--ghost { background: rgba(0, 0, 0, .36); color: var(--white); border-color: rgba(255, 255, 255, .38); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .08); }
.btn--blue { background: var(--blue); color: var(--white); border-color: rgba(255, 255, 255, .08); }
.btn--blue:hover { background: var(--blue-2); }
.btn--black { background: var(--black); color: var(--white); border-color: rgba(255, 255, 255, .16); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
  padding-top: 120px;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.66) 34%, rgba(0,0,0,.22) 66%, rgba(0,0,0,.62) 100%),
    linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.14) 45%, rgba(0,0,0,.76) 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 62%);
  opacity: .35;
}
.hero__inner {
  min-height: calc(100svh - 120px);
  display: grid;
  align-items: center;
  padding: clamp(54px, 7vw, 90px) 0 88px;
}
.hero__panel {
  max-width: 690px;
  padding: clamp(26px, 4vw, 46px);
  background: linear-gradient(145deg, rgba(0,0,0,.76), rgba(18,18,18,.48));
  border: 1px solid rgba(255,255,255,.14);
  border-left: 5px solid var(--yellow);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: opacity .32s ease, transform .32s ease, visibility .32s ease;
}
.hero.is-video-mode .hero__panel { opacity: 0; transform: translateY(18px); visibility: hidden; pointer-events: none; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 42px;
  height: 3px;
  background: var(--yellow);
  display: inline-block;
}
h1, h2, h3 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .015em;
  line-height: .92;
  margin: 0;
}
h1 { font-size: clamp(58px, 8.4vw, 126px); max-width: 660px; }
h2 { font-size: clamp(42px, 5vw, 78px); }
h3 { font-size: clamp(30px, 3.2vw, 50px); }
.hero__copy {
  color: rgba(255,255,255,.84);
  max-width: 560px;
  font-size: clamp(17px, 1.6vw, 20px);
  margin: 20px 0 0;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.hero__chips span {
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.78);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(255,255,255,.04);
}
.hero-controls {
  position: absolute;
  top: 144px;
  right: max(24px, calc((100vw - var(--page-max)) / 2));
  z-index: 10;
  display: flex;
  gap: 8px;
  padding: 6px;
  background: rgba(0,0,0,.58);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}
.control-pill {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,.76);
  padding: 9px 12px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.control-pill.is-active,
.control-pill:hover { background: var(--yellow); color: var(--black); }
.hero__ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 7;
  min-height: 46px;
  background: rgba(0,0,0,.86);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.78);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero__ticker a { color: var(--white); }
.hero__ticker a:hover { color: var(--yellow); }
.hero__ticker i { width: 4px; height: 4px; background: var(--yellow); border-radius: 50%; }

.proof-band {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-top: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
  position: relative;
  overflow: hidden;
}
.proof-band::before,
.proof-band::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 50%;
}
.proof-band::before { left: -150px; top: -210px; }
.proof-band::after { right: -140px; bottom: -230px; }
.proof-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  position: relative;
  z-index: 1;
}
.proof-band article {
  min-height: 168px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 30px 20px;
  border-left: 1px solid rgba(255,255,255,.16);
}
.proof-band article:last-child { border-right: 1px solid rgba(255,255,255,.16); }
.proof-band strong {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: .9;
}
.proof-band strong::after { content: "+"; color: var(--yellow); font-size: .55em; vertical-align: top; margin-left: 3px; }
.proof-band article:nth-child(2) strong::after { content: "%"; }
.proof-band article:first-child strong::after { content: "M"; }
.proof-band span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.section { padding: var(--section-y) 0; position: relative; }
.section--dark { background: radial-gradient(circle at 20% 0%, rgba(40,86,163,.2), transparent 32%), var(--charcoal); }
.section__head { margin-bottom: clamp(32px, 4vw, 50px); }
.section__head--center { text-align: center; max-width: 820px; }
.section__head--center .eyebrow { justify-content: center; }
.section__head p:not(.eyebrow) { color: var(--muted); margin: 18px auto 0; max-width: 720px; font-size: 18px; }
.service-stage {
  display: grid;
  grid-template-columns: minmax(300px, .38fr) minmax(0, .62fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
}
.service-stage__menu { display: grid; gap: 12px; }
.service-card {
  text-align: left;
  color: var(--white);
  background: linear-gradient(145deg, rgba(0,0,0,.92), rgba(20,20,20,.96));
  border: 1px solid rgba(255,255,255,.1);
  border-left: 4px solid transparent;
  padding: 18px;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
  transition: .22s ease;
}
.service-card:hover,
.service-card.is-active { transform: translateX(5px); border-left-color: var(--yellow); background: linear-gradient(145deg, rgba(11,11,11,1), rgba(20,43,85,.82)); }
.service-card__icon {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--blue);
  border: 3px solid var(--black);
  outline: 2px solid rgba(255,255,255,.16);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 900;
  color: var(--white);
}
.service-card strong {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1;
}
.service-card em { color: var(--muted); font-size: 13px; font-style: normal; }
.service-feature {
  min-height: 100%;
  background: #090909;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(300px, .42fr);
}
.video-frame { position: relative; overflow: hidden; background: var(--black); min-height: 360px; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; opacity: .86; }
.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.72));
  pointer-events: none;
}
.video-play {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.2);
  background: var(--yellow);
  color: var(--black);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}
.service-feature__copy { padding: clamp(24px, 4vw, 42px); align-self: center; }
.service-feature__copy p:not(.eyebrow) { color: rgba(255,255,255,.78); margin-top: 14px; }
.service-feature__copy ul { padding: 0; margin: 20px 0 26px; display: grid; gap: 10px; list-style: none; }
.service-feature__copy li {
  color: rgba(255,255,255,.82);
  padding-left: 24px;
  position: relative;
  font-size: 15px;
}
.service-feature__copy li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: .6em;
  background: var(--yellow);
}

.section--planner { background: var(--black); }
.planner-grid {
  display: grid;
  grid-template-columns: minmax(280px, .34fr) minmax(0, .66fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: start;
}
.planner-copy { position: sticky; top: 150px; }
.planner-copy p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.planner-proof {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-left: 4px solid var(--yellow);
  background: rgba(255,255,255,.04);
}
.planner-proof strong { display: block; font-family: var(--display); font-size: 30px; text-transform: uppercase; }
.planner-proof span { color: var(--muted); }
.planner-tool {
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, #111, #070707);
  box-shadow: var(--shadow);
}
.planner-tool__steps { padding: clamp(22px, 3vw, 34px); display: grid; gap: 24px; }
.planner-tool__steps > div { display: grid; gap: 12px; }
.planner-tool__steps span {
  width: 38px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  font-family: var(--display);
  font-weight: 900;
  margin-right: 8px;
}
.planner-tool__steps strong { font-family: var(--display); font-size: 26px; text-transform: uppercase; }
.choice-row { display: flex; gap: 10px; flex-wrap: nowrap; }
.choice-row--wrap { flex-wrap: wrap; }
.choice {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
  color: var(--white);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: .2s ease;
}
.choice:hover,
.choice.is-active { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.plan-result {
  background: var(--blue);
  padding: clamp(24px, 4vw, 38px);
  position: relative;
  overflow: hidden;
}
.plan-result::after {
  content: "";
  position: absolute;
  inset: auto -80px -150px auto;
  width: 260px;
  height: 260px;
  border: 34px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.plan-result > * { position: relative; z-index: 1; }
.plan-result p:first-child { margin: 0 0 8px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: var(--yellow); }
.plan-result h3 { max-width: 600px; }
.plan-result p { color: rgba(255,255,255,.86); max-width: 640px; }
.plan-result__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.section--route { background: #202020; overflow: hidden; }
.section--route::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(40,86,163,.16), transparent 48%, rgba(253,187,22,.08));
  pointer-events: none;
}
.route-line {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.route-line::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 38px;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--blue));
  opacity: .75;
}
.route-line article {
  position: relative;
  background: rgba(0,0,0,.62);
  border: 1px solid rgba(255,255,255,.12);
  padding: 26px;
  min-height: 210px;
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
}
.route-line span {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 900;
  position: relative;
  z-index: 2;
}
.route-line strong { display: block; margin-top: 22px; font-family: var(--display); text-transform: uppercase; font-size: 28px; line-height: .95; }
.route-line p { color: var(--muted); margin: 12px 0 0; }

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, .54fr) minmax(320px, .46fr);
  min-height: 620px;
  background: var(--black);
}
.trust-panel__media { position: relative; overflow: hidden; min-height: 420px; }
.trust-panel__media video { width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.trust-panel__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(0,0,0,.9)); }
.trust-panel__copy {
  align-self: center;
  padding: clamp(42px, 7vw, 88px);
  max-width: 680px;
}
.trust-panel__copy p:not(.eyebrow) { color: rgba(255,255,255,.78); font-size: 18px; }
.trust-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.trust-points span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(40,86,163,.28);
  border: 1px solid rgba(255,255,255,.12);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}

.section--locations { background: linear-gradient(135deg, #f3f3ef 0%, #fff 100%); color: var(--black); }
.section--locations .eyebrow { color: var(--blue); }
.section--locations .eyebrow span { background: var(--blue); }
.location-grid { display: grid; grid-template-columns: minmax(300px, .4fr) minmax(0, .6fr); gap: clamp(28px, 4vw, 56px); align-items: center; }
.location-grid p:not(.eyebrow) { color: #4b5563; font-size: 18px; }
.location-form {
  margin-top: 28px;
  background: var(--black);
  color: var(--white);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 22px 58px rgba(0,0,0,.18);
}
.location-form label { display: block; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; margin-bottom: 10px; }
.location-form__row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.location-form input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: var(--white);
  min-height: 52px;
  padding: 0 14px;
  border-radius: 10px;
  outline: none;
}
.location-form input:focus { border-color: var(--yellow); }
.location-form small { display: block; margin-top: 12px; color: rgba(255,255,255,.66); }
.map-card {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--blue), var(--blue-2));
  box-shadow: 0 30px 80px rgba(23,60,125,.32);
}
.map-card__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .45;
}
.map-card svg { position: absolute; inset: 8% 5%; width: 90%; height: 84%; }
.map-card path { fill: none; stroke: var(--yellow); stroke-width: 9; stroke-linecap: round; stroke-dasharray: 14 18; filter: drop-shadow(0 10px 18px rgba(0,0,0,.3)); }
.map-pin {
  position: absolute;
  z-index: 2;
  background: var(--black);
  color: var(--white);
  border: 3px solid var(--yellow);
  border-radius: 999px;
  padding: 10px 14px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(0,0,0,.25);
}
.map-pin--a { left: 10%; bottom: 22%; }
.map-pin--b { left: 48%; top: 43%; }
.map-pin--c { right: 9%; top: 13%; }

.video-hub { padding: var(--section-y) 0; }
.video-hub__head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 34px; }
.video-hub__head a {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 6px;
}
.video-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.resource-card {
  background: #101010;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 42px rgba(0,0,0,.24);
  transition: .22s ease;
}
.resource-card:hover { transform: translateY(-5px); border-color: rgba(253,187,22,.48); }
.resource-card__thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #080808 0%, #080808 55%, var(--yellow) 55%, var(--yellow) 100%);
  display: grid;
  place-items: center;
}
.resource-card__thumb--blue { background: linear-gradient(135deg, #080808 0%, #080808 52%, var(--blue) 52%, var(--blue) 100%); }
.resource-card__thumb--white { background: linear-gradient(135deg, #fff 0%, #fff 54%, #080808 54%, #080808 100%); }
.resource-card__thumb span {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 86px);
  text-transform: uppercase;
  font-weight: 900;
  color: var(--yellow);
  text-shadow: 0 10px 26px rgba(0,0,0,.32);
}
.resource-card__thumb--white span { color: var(--black); text-shadow: none; }
.resource-card strong { display: block; padding: 20px 20px 0; font-family: var(--display); font-size: 28px; line-height: .95; text-transform: uppercase; }
.resource-card p { color: var(--muted); margin: 12px 20px 22px; }

.section--faq { background: #202020; }
.faq-grid { display: grid; grid-template-columns: minmax(280px, .36fr) minmax(0, .64fr); gap: clamp(28px, 5vw, 70px); align-items: start; }
.faq-grid > div:first-child p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.faq-list { display: grid; gap: 12px; }
details {
  background: #090909;
  border: 1px solid rgba(255,255,255,.12);
  padding: 0;
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 54px 20px 20px;
  position: relative;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--yellow);
  font-size: 30px;
}
details[open] summary::after { content: "-"; }
details p { margin: 0; padding: 0 20px 20px; color: var(--muted); }

.final-cta {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.final-cta video { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; }
.final-cta__shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(135deg, rgba(0,0,0,.88), rgba(40,86,163,.72)); }
.final-cta__content { width: min(100% - 48px, 900px); }
.final-cta__content .eyebrow { justify-content: center; }
.final-cta h2 { font-size: clamp(62px, 10vw, 140px); }
.final-cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.footer { background: #030303; border-top: 4px solid var(--blue); }
.footer__inner { display: grid; grid-template-columns: minmax(280px, .42fr) minmax(0, .58fr); gap: clamp(34px, 6vw, 84px); padding: 58px 0; }
.footer__brand img { width: min(330px, 100%); height: auto; }
.footer__brand p { color: var(--muted); max-width: 430px; }
.footer__contacts { display: grid; gap: 8px; margin-top: 22px; }
.footer__contacts a { color: var(--yellow); font-weight: 900; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__links h3 { font-size: 24px; margin-bottom: 14px; }
.footer__links a { display: block; color: var(--muted); font-size: 14px; margin: 8px 0; }
.footer__links a:hover { color: var(--yellow); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}
.footer__bottom p { color: rgba(255,255,255,.52); font-size: 12px; margin: 0; text-align: right; }
.floating-quote {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 999px;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: .06em;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0,0,0,.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: .22s ease;
}
.floating-quote.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 1100px) {
  .brand-nav { position: fixed; left: 18px; right: 18px; top: 128px; display: none; grid-template-columns: 1fr; background: rgba(0,0,0,.96); border: 1px solid rgba(255,255,255,.12); padding: 12px; box-shadow: var(--shadow); }
  body.nav-open .brand-nav { display: grid; }
  .brand-nav a { padding: 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .brand-nav a::after { display: none; }
  .menu-toggle { display: grid; }
  .header-phone { display: none; }
  .service-stage, .service-feature, .planner-grid, .location-grid, .faq-grid, .footer__inner { grid-template-columns: 1fr; }
  .planner-copy { position: static; }
  .route-line { grid-template-columns: repeat(2, 1fr); }
  .route-line::before { display: none; }
  .trust-panel { grid-template-columns: 1fr; }
  .trust-panel__media::after { background: linear-gradient(180deg, transparent, rgba(0,0,0,.9)); }
}

@media (max-width: 760px) {
  :root { --page-pad: 16px; --section-y: 62px; }
  .sbs-bar { height: 52px; }
  .sbs-bar__inner { height: 52px; }
  .sbs-bar__links a:first-child { display: none; }
  .brand-header { top: 52px; height: 72px; }
  .brand-header__inner { height: 72px; }
  .brand-logo img { width: 210px; }
  .brand-actions .btn { display: none; }
  .hero { padding-top: 124px; min-height: 92svh; }
  .hero__inner { min-height: calc(92svh - 124px); padding: 72px 0 98px; align-items: end; }
  .hero__panel { padding: 24px; border-left-width: 4px; }
  h1 { font-size: clamp(50px, 17vw, 78px); }
  h2 { font-size: clamp(38px, 12vw, 56px); }
  .hero-controls { top: 138px; left: 16px; right: 16px; justify-content: center; overflow: auto; border-radius: 18px; }
  .control-pill { white-space: nowrap; }
  .hero__ticker { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  .proof-band__inner { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .proof-band article { min-height: 136px; padding: 22px 10px; }
  .service-stage__menu { grid-template-columns: 1fr; }
  .video-frame { min-height: 260px; }
  .choice-row { flex-wrap: wrap; }
  .route-line, .video-row, .footer__links { grid-template-columns: 1fr; }
  .location-form__row { grid-template-columns: 1fr; }
  .map-card { min-height: 340px; border-radius: 18px; }
  .video-hub__head { display: grid; align-items: start; }
  .footer__bottom { display: grid; text-align: left; }
  .footer__bottom p { text-align: left; }
  .floating-quote { left: 16px; right: 16px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  video { animation: none !important; }
}

/* SBS polish pass: tighten hero, readability, video density, and timeline bleed */
body { line-height: 1.6; }
p, li, small, input, button { line-height: 1.6; }
h1, h2, h3 { line-height: 1.04; }
h1 { line-height: .96; }
h3 { line-height: 1.06; }
summary { line-height: 1.1; }

:root {
  --muted: #d2d8e4;
  --muted-strong: #e5e9f2;
}

.hero {
  height: 100svh;
  min-height: 580px;
  padding-top: 0;
}
.hero__inner {
  height: 100%;
  min-height: 0;
  padding: 120px 0 62px;
  align-items: center;
}
.hero.is-copy-hidden .hero__panel { display: none; }
.hero.is-video-mode .hero__panel { opacity: 1; transform: none; visibility: visible; pointer-events: auto; }
.hero__panel { max-width: 650px; }
.hero__copy { line-height: 1.55; }
.hero-controls { top: 134px; }
.hero__ticker { min-height: 42px; padding-block: 8px; }

.section__head p:not(.eyebrow),
.planner-copy p:not(.eyebrow),
.trust-panel__copy p:not(.eyebrow),
.faq-grid > div:first-child p:not(.eyebrow),
.location-grid p:not(.eyebrow) {
  line-height: 1.62;
}

.service-stage {
  grid-template-columns: 1fr;
  gap: 18px;
}
.service-stage__menu {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.service-card {
  min-height: 112px;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  padding: 14px;
  transform: none !important;
}
.service-card:hover,
.service-card.is-active { transform: translateY(-3px) !important; }
.service-card__icon {
  width: 42px;
  height: 42px;
  font-size: 18px;
}
.service-card strong { font-size: clamp(19px, 1.7vw, 24px); }
.service-card em {
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.45;
}
.service-feature {
  grid-template-columns: minmax(320px, .42fr) minmax(0, .58fr);
  min-height: 330px;
}
.video-frame { min-height: 330px; }
.service-feature__copy {
  padding: clamp(22px, 3vw, 34px);
  align-self: stretch;
  display: grid;
  align-content: center;
}
.service-feature__copy .eyebrow { margin-bottom: 8px; }
.service-feature__copy h3 { font-size: clamp(34px, 4vw, 60px); }
.service-feature__copy p:not(.eyebrow) {
  margin-top: 10px;
  line-height: 1.56;
  color: var(--muted-strong);
}
.service-feature__copy ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 20px;
}
.service-feature__copy li {
  font-size: 13px;
  line-height: 1.48;
  color: var(--muted-strong);
  padding: 12px 12px 12px 26px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
}
.service-feature__copy li::before { left: 12px; top: 18px; }

.planner-tool__steps { gap: 18px; }
.planner-tool__steps > div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  grid-template-areas:
    "num label"
    "num choices";
  gap: 4px 20px;
  align-items: center;
  padding: 4px 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.planner-tool__steps > div:last-child { border-bottom: 0; padding-bottom: 0; }
.planner-tool__steps span {
  grid-area: num;
  width: auto;
  height: auto;
  margin: 0;
  display: block;
  background: transparent;
  color: var(--yellow);
  font-size: clamp(64px, 7vw, 96px);
  line-height: .78;
  letter-spacing: -.03em;
}
.planner-tool__steps strong {
  grid-area: label;
  color: var(--muted-strong);
  font-size: clamp(18px, 1.9vw, 26px);
  letter-spacing: .1em;
}
.planner-tool__steps .choice-row { grid-area: choices; }
.choice { line-height: 1; }
.plan-result p { line-height: 1.6; }

.route-line::before { display: none; }
.route-line article { overflow: hidden; }
.route-line article::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 53px;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), rgba(40,86,163,.15));
  opacity: .75;
  z-index: 0;
}
.route-line span { position: relative; z-index: 2; }
.route-line strong { line-height: 1.06; }
.route-line p {
  color: var(--muted-strong);
  line-height: 1.58;
}

.resource-card { overflow: hidden; }
.resource-card__thumb {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.resource-card__thumb video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  filter: saturate(.96) contrast(1.05);
}
.resource-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(0,0,0,.82), rgba(0,0,0,.28) 48%, rgba(253,187,22,.28));
}
.resource-card__thumb--blue::after { background: linear-gradient(135deg, rgba(0,0,0,.82), rgba(23,60,125,.48), rgba(40,86,163,.52)); }
.resource-card__thumb--white::after { background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.2), rgba(0,0,0,.52)); }
.resource-card p { color: var(--muted-strong); line-height: 1.58; }

details p { color: var(--muted-strong); line-height: 1.6; }
.footer__brand p, .footer__links a, .footer__bottom p { line-height: 1.58; }

@media (max-width: 1100px) {
  .service-stage__menu { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-feature { grid-template-columns: 1fr; }
  .service-feature__copy ul { grid-template-columns: 1fr; }
  .video-frame { min-height: 320px; max-height: none; }
}

@media (max-width: 760px) {
  body { line-height: 1.62; }
  .hero {
    height: 100svh;
    min-height: 560px;
    padding-top: 0;
  }
  .hero__inner {
    height: 100%;
    min-height: 0;
    padding: 146px 0 88px;
    align-items: end;
  }
  .hero__panel { padding: 22px; }
  .hero-controls {
    top: 132px;
    left: 16px;
    right: auto;
    max-width: calc(100vw - 32px);
  }
  .service-stage__menu { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .planner-tool__steps > div {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 4px 14px;
  }
  .planner-tool__steps span { font-size: 62px; }
  .choice-row { gap: 8px; }
  .choice { padding: 10px 12px; font-size: 12px; }
  .route-line article::before { display: none; }
}

/* HERO REDO: match the real TWO MEN AND A TRUCK visual language, no glass-card junk */
.hero.hero--brand {
  height: 100svh;
  min-height: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #050505;
  isolation: isolate;
}

.hero.hero--brand .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -3;
}

.hero.hero--brand .hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .66) 31%, rgba(0, 0, 0, .20) 63%, rgba(0, 0, 0, .46) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .12) 42%, rgba(0, 0, 0, .86) 100%);
}

.hero.hero--brand .hero__grid,
.hero.hero--brand .hero-controls {
  display: none !important;
}

.hero.hero--brand .hero__inner {
  height: 100%;
  min-height: 0;
  padding: 120px 0 56px;
  display: grid;
  align-items: center;
}

.hero.hero--brand .hero__panel {
  width: min(760px, 100%);
  max-width: 760px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  color: #fff;
  text-shadow: 0 4px 26px rgba(0, 0, 0, .72);
  transition: opacity .18s ease, visibility .18s ease;
}

.hero.hero--brand.is-copy-hidden .hero__panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero__eyebrow {
  color: #fdbb16;
  margin-bottom: 14px;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .75);
}

.hero__headline {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .14em;
  max-width: 820px;
  margin: 0;
  color: #fff;
  line-height: .86;
  letter-spacing: -.01em;
}

.hero__number {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(64px, 9.4vw, 132px);
  font-weight: 900;
  line-height: .86;
  text-transform: uppercase;
}

.hero__words {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(44px, 6.5vw, 92px);
  font-weight: 700;
  line-height: .9;
  text-transform: uppercase;
}

.hero__tagline {
  margin: 8px 0 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 700;
  font-style: italic;
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.hero.hero--brand .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero.hero--brand .btn {
  min-height: 48px;
  padding-inline: 22px;
  border-radius: 7px;
}

.hero-watch {
  position: absolute;
  z-index: 12;
  top: 136px;
  right: max(24px, calc((100vw - var(--page-max)) / 2));
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(0, 0, 0, .70);
  color: #fff;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .34);
}

.hero-watch:hover {
  background: #fdbb16;
  border-color: #fdbb16;
  color: #050505;
}

.hero.hero--brand .hero__ticker {
  min-height: 42px;
  padding: 8px 20px;
  background: rgba(0, 0, 0, .92);
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: 11px;
  letter-spacing: .1em;
}

@media (max-width: 980px) {
  .hero.hero--brand .hero__video {
    object-position: 58% center;
  }
  .hero.hero--brand .hero__inner {
    padding-top: 126px;
    padding-bottom: 62px;
  }
  .hero__headline {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .hero.hero--brand {
    height: 100svh;
    min-height: 0;
  }
  .hero.hero--brand .hero__video {
    object-position: 63% center;
  }
  .hero.hero--brand .hero__shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .55) 53%, rgba(0, 0, 0, .24) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .16) 42%, rgba(0, 0, 0, .88) 100%);
  }
  .hero.hero--brand .hero__inner {
    align-items: end;
    padding: 142px 0 76px;
  }
  .hero__number {
    font-size: clamp(52px, 17vw, 74px);
  }
  .hero__words {
    font-size: clamp(34px, 11vw, 48px);
  }
  .hero__tagline {
    font-size: clamp(29px, 10vw, 44px);
  }
  .hero-watch {
    top: 128px;
    right: 16px;
    font-size: 12px;
  }
  .hero.hero--brand .hero__actions {
    margin-top: 22px;
  }
  .hero.hero--brand .hero__ticker {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* APPROVED LIVE PATCH: match the hero poster to video frame 1 before playback */
.hero.hero--brand {
  background: #050505 url('public/images/hero-poster.webp') center center / cover no-repeat;
}
.hero.hero--brand .hero__video {
  background: #050505 url('public/images/hero-poster.webp') center center / cover no-repeat;
}
