:root {
  --ink: #0b1834;
  --navy: #0e2f68;
  --blue: #145fbd;
  --sky: #31b7eb;
  --gold: #f4b544;
  --red: #ef5b54;
  --paper: #f7f9fc;
  --line: #dce5f1;
  --muted: #60708a;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.is-hidden { display: none !important; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(14, 47, 104, 0.1);
  backdrop-filter: blur(16px);
}
.nav-wrap { height: 82px; display: flex; align-items: center; gap: 34px; }
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand span { display: grid; line-height: 1; }
.brand strong { font-size: 15px; letter-spacing: .01em; text-transform: uppercase; }
.brand small { margin-top: 6px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a { color: #34445f; font-size: 14px; font-weight: 700; }
.desktop-nav a:hover { color: var(--blue); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding-inline: 18px; background: var(--blue); color: white; }
.button-gold { background: var(--gold); color: var(--ink); box-shadow: 0 13px 30px rgba(244,181,68,.22); }
.button-ghost { color: white; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.button-ghost:hover { background: rgba(255,255,255,.16); }
.button-lead { border-color: #2f8cf0; background: #1474dc; color: white; box-shadow: 0 14px 32px rgba(20,116,220,.35); }
.button-lead:hover { border-color: #58a6f8; background: #0e63c2; box-shadow: 0 17px 36px rgba(20,116,220,.44); }

.hero { position: relative; min-height: 720px; display: grid; align-items: center; overflow: hidden; }
.hero-photo, .hero-shade { position: absolute; inset: 0; }
.hero-photo { background-size: cover; background-position: center; transform: scale(1.015); }
.hero-shade { background: linear-gradient(90deg, rgba(5,20,49,.94) 0%, rgba(5,27,63,.82) 47%, rgba(5,27,63,.35) 100%); }
.hero-content { position: relative; z-index: 2; padding-block: 108px 78px; color: white; }
.eyebrow { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.light { color: #83ddff; }
.hero h1 { max-width: 790px; margin: 18px 0; font-size: clamp(42px, 5.7vw, 74px); line-height: .98; letter-spacing: -.045em; }
.hero-content > p { max-width: 620px; margin: 0; color: #dce9f7; font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 62px; color: #c9daed; font-size: 13px; }
.trust-row span { display: inline-flex; align-items: center; gap: 9px; }
.trust-row b { color: white; font-size: 15px; }

.promise-strip { background: var(--gold); }
.promise-grid { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.promise-grid p { margin: 0; max-width: 700px; font-size: 21px; font-weight: 800; letter-spacing: -.015em; }
.promise-grid a { font-size: 14px; font-weight: 900; white-space: nowrap; }

.section { padding-block: 110px; }
.section-heading h2, .process-intro h2, .about-card h2, .scan-cta h2 { margin: 13px 0 0; font-size: clamp(36px, 4.2vw, 56px); line-height: 1.03; letter-spacing: -.04em; }
.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; }
.split-heading > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.service-accordion { overflow: hidden; margin-top: 54px; border: 1px solid #d6e1ee; border-radius: 20px; background: white; box-shadow: 0 20px 48px rgba(23,47,82,.08); }
.service-accordion-item { border-bottom: 1px solid #e3eaf3; background: white; }
.service-accordion-item:last-child { border-bottom: 0; }
.service-accordion-item summary { display: grid; grid-template-columns: 70px 1fr 44px; align-items: center; min-height: 86px; padding: 18px 28px; list-style: none; cursor: pointer; transition: background .18s ease, color .18s ease; }
.service-accordion-item summary::-webkit-details-marker { display: none; }
.service-accordion-item summary:hover { background: #f7faff; }
.service-accordion-item summary:focus-visible { position: relative; z-index: 1; outline: 3px solid rgba(20,95,189,.24); outline-offset: -3px; }
.service-number { color: var(--sky); font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.service-accordion-item summary strong { font-size: 21px; line-height: 1.2; letter-spacing: -.02em; }
.service-toggle { position: relative; width: 38px; height: 38px; display: grid; place-items: center; justify-self: end; border: 1px solid #cedae8; border-radius: 50%; background: white; color: var(--blue); }
.service-toggle::before, .service-toggle::after { content: ""; position: absolute; width: 13px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .18s ease; }
.service-toggle::after { transform: rotate(90deg); }
.service-accordion-item[open] summary { background: linear-gradient(90deg,#eef6ff,#f8fbff); color: #0c448d; }
.service-accordion-item[open] .service-toggle { border-color: var(--blue); background: var(--blue); color: white; }
.service-accordion-item[open] .service-toggle::after { transform: rotate(0); }
.service-accordion-content { display: grid; grid-template-columns: 1.15fr .85fr; gap: 55px; padding: 5px 96px 32px; background: linear-gradient(90deg,#eef6ff,#f8fbff); animation: serviceReveal .2s ease; }
.service-accordion-content p { margin: 0; color: #51647c; font-size: 15px; line-height: 1.7; }
.service-accordion-content ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.service-accordion-content li { position: relative; padding-left: 20px; color: #30445f; font-size: 13px; font-weight: 700; line-height: 1.45; }
.service-accordion-content li::before { content: ""; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
@keyframes serviceReveal { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

.process-section { background: var(--ink); color: white; }
.process-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; align-items: center; }
.process-intro p { max-width: 530px; color: #bac9dc; font-size: 17px; line-height: 1.75; }
.text-link { display: inline-flex; margin-top: 18px; font-size: 14px; font-weight: 900; }
.light-link { color: var(--gold); }
.steps { display: grid; gap: 4px; }
.steps article { display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.steps article:last-child { border-bottom: 0; }
.steps article > span { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(131,221,255,.5); border-radius: 50%; color: #83ddff; font-weight: 900; }
.steps h3 { margin: 0 0 7px; font-size: 23px; }
.steps p { margin: 0; color: #aebfd3; line-height: 1.6; }

.about-card { overflow: hidden; display: grid; grid-template-columns: 1.03fr .97fr; min-height: 590px; background: white; border: 1px solid var(--line); border-radius: 26px; box-shadow: 0 28px 55px rgba(23,47,82,.09); }
.about-card > div:first-child { padding: clamp(38px, 6vw, 76px); }
.about-card > div:first-child > p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.quote { margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line); font-size: 19px; font-weight: 700; line-height: 1.5; }
.quote span { display: block; margin-top: 12px; color: var(--muted); font-size: 13px; font-weight: 600; }
.about-visual { position: relative; min-height: 440px; background-size: cover; background-position: center; }
.about-badge { position: absolute; right: 24px; bottom: 24px; width: 175px; padding: 22px; border-radius: 16px; background: var(--gold); color: var(--ink); }
.about-badge strong { display: block; font-size: 38px; }
.about-badge span { display: block; margin-top: 6px; font-size: 12px; font-weight: 800; line-height: 1.35; }

.scan-cta { background: linear-gradient(120deg, var(--blue), #0d3f87); color: white; }
.scan-cta-wrap { min-height: 370px; display: flex; align-items: center; justify-content: space-between; gap: 70px; }
.scan-cta-wrap > div { max-width: 740px; }
.scan-cta p { max-width: 680px; margin: 18px 0 0; color: #d7e8fa; font-size: 17px; line-height: 1.7; }
.scan-cta .button { flex: 0 0 auto; }
.scan-cta-actions{display:grid;justify-items:center;gap:13px;flex:0 0 auto}
.scan-direct-link{color:#fff;font-size:12px;font-weight:900;text-decoration:underline;text-underline-offset:4px}

footer { padding: 70px 0 24px; background: #071126; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; }
.footer-brand img { width: 84px; height: 84px; object-fit: contain; padding: 4px; border-radius: 14px; background: white; }
.footer-brand p, footer p { color: #9dafc6; font-size: 14px; line-height: 1.7; }
footer h3 { margin: 8px 0 18px; color: #85dcff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
footer div:not(.footer-brand) > a { display: block; margin: 0 0 10px; color: #c9d6e6; font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); color: #7890ae; font-size: 12px; }
.footer-bottom a { color: var(--gold); font-weight: 800; }
.mobile-whatsapp { display: none; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .split-heading, .process-wrap { grid-template-columns: 1fr; gap: 42px; }
  .service-accordion-content { grid-template-columns: 1fr; gap: 18px; }
  .about-card { grid-template-columns: 1fr; }
  .about-visual { min-height: 420px; }
  .scan-cta-wrap { padding-block: 70px; flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav-wrap { height: 72px; }
  .brand span, .nav-wrap > .button { display: none; }
  .brand img { width: 52px; height: 52px; }
  .hero { min-height: 720px; }
  .hero-shade { background: linear-gradient(180deg, rgba(5,20,49,.60) 0%, rgba(5,20,49,.94) 60%, rgba(5,20,49,.98) 100%); }
  .hero-content { padding-block: 110px 42px; align-self: end; }
  .hero h1 { font-size: 45px; }
  .hero-content > p { font-size: 17px; }
  .hero-actions { display: grid; }
  .trust-row { gap: 15px; margin-top: 42px; display: grid; }
  .promise-grid { min-height: 150px; align-items: flex-start; justify-content: center; flex-direction: column; padding-block: 25px; }
  .promise-grid p { font-size: 19px; }
  .section { padding-block: 78px; }
  .split-heading { gap: 22px; }
  .service-accordion { margin-top: 34px; border-radius: 15px; }
  .service-accordion-item summary { grid-template-columns: 44px 1fr 36px; min-height: 76px; padding: 14px 15px; }
  .service-accordion-item summary strong { font-size: 17px; }
  .service-number { font-size: 10px; }
  .service-toggle { width: 32px; height: 32px; }
  .service-accordion-content { padding: 3px 59px 25px; }
  .service-accordion-content p { font-size: 14px; }
  .process-wrap { gap: 32px; }
  .steps article { grid-template-columns: 52px 1fr; gap: 14px; }
  .about-section { width: 100%; }
  .about-card { border-radius: 0; border-inline: 0; }
  .about-visual { min-height: 340px; }
  .scan-cta-wrap { min-height: 0; padding-block: 72px; gap: 35px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { padding-bottom: 62px; flex-direction: column; }
  .mobile-whatsapp { position: fixed; z-index: 30; right: 14px; bottom: 14px; display: inline-flex; min-height: 48px; align-items: center; padding: 0 18px; border-radius: 999px; background: #21c063; color: white; font-size: 13px; font-weight: 900; box-shadow: 0 12px 30px rgba(0,0,0,.24); }
}

@media (prefers-reduced-motion: reduce) {
  .service-accordion-item summary, .service-toggle::before, .service-toggle::after { transition: none; }
  .service-accordion-content { animation: none; }
}

/* Business scan landing page */
.scan-page { min-height: 100vh; background: #f4f8fd; }
.scan-shell { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.scan-header { position: relative; z-index: 10; background: white; border-bottom: 1px solid #dfe8f2; }
.scan-nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.scan-brand { display: flex; align-items: center; gap: 10px; }
.scan-brand img { width: 54px; height: 54px; object-fit: contain; }
.scan-brand span { display: grid; line-height: 1; }
.scan-brand strong { font-size: 14px; text-transform: uppercase; }
.scan-brand small { margin-top: 6px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.secure-label { color: #64728a; font-size: 13px; font-weight: 700; }

.scan-start { position: relative; min-height: calc(100vh - 132px); display: grid; align-items: center; overflow: hidden; background: linear-gradient(135deg, #07172f 0%, #0f3771 58%, #1469b9 100%); color: white; }
.scan-grid-bg { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(90deg, transparent, black 30%, black); }
.scan-start:after { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; top: -150px; border-radius: 50%; background: rgba(49,183,235,.17); filter: blur(3px); }
.scan-start-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 86px; align-items: center; padding-block: 80px; }
.scan-kicker { display: inline-block; color: #1980d8; font-size: 12px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.scan-copy .scan-kicker, .scanning-view .scan-kicker, .new-business-view .scan-kicker { color: #83ddff; }
.scan-copy h1, .scan-progress-copy h1, .new-business-card h1, .sent-card h1 { margin: 18px 0; font-size: clamp(43px, 5.3vw, 68px); line-height: 1.01; letter-spacing: -.045em; }
.scan-copy > p { max-width: 610px; margin: 0; color: #c8d8eb; font-size: 18px; line-height: 1.7; }
.scan-assurances { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.scan-assurances span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #d9e6f5; font-size: 12px; font-weight: 800; background: rgba(255,255,255,.06); }

.search-panel { padding: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: 24px; background: rgba(255,255,255,.97); color: var(--ink); box-shadow: 0 30px 70px rgba(0,0,0,.25); }
.search-panel-top { display: grid; margin-bottom: 25px; }
.search-panel-top span, .lead-form-heading > span { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.search-panel-top strong { margin-top: 7px; font-size: 25px; }
.search-panel form { display: grid; }
.search-panel label, .lead-fields label { margin-bottom: 7px; color: #34445f; font-size: 13px; font-weight: 800; }
.search-panel input, .lead-fields input { width: 100%; height: 54px; margin: 0 0 18px; padding: 0 15px; border: 1px solid #cad6e4; border-radius: 10px; outline: none; background: white; color: var(--ink); font: inherit; }
.search-panel input:focus, .lead-fields input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20,95,189,.11); }
.scan-primary { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 0; border-radius: 11px; background: linear-gradient(110deg, var(--blue), #0c7bc5); color: white; font: inherit; font-size: 15px; font-weight: 900; cursor: pointer; box-shadow: 0 13px 28px rgba(20,95,189,.23); }
.scan-primary:hover { filter: brightness(1.04); transform: translateY(-1px); }
.scan-primary:disabled { cursor: wait; opacity: .7; }
.scan-primary.compact { min-width: 230px; flex: 0 0 auto; }
.link-button { text-decoration: none; }
.no-business { width: 100%; margin-top: 13px; padding: 13px; border: 0; background: transparent; color: var(--blue); font: inherit; font-size: 13px; font-weight: 900; cursor: pointer; }
.privacy-note { margin: 12px 0 0; color: #7e8b9f; font-size: 11px; line-height: 1.5; text-align: center; }

.scanning-view { min-height: calc(100vh - 76px); display: grid; align-items: center; padding-block: 70px; background: radial-gradient(circle at 20% 10%, #173e76, transparent 35%), #07162e; color: white; }
.scanning-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 115px; align-items: center; }
.scan-phone { width: min(100%, 340px); justify-self: center; overflow: hidden; border: 9px solid #dce7f2; border-radius: 42px; background: white; box-shadow: 0 34px 80px rgba(0,0,0,.36); color: var(--ink); transform: rotate(-2deg); }
.phone-bar { height: 40px; display: flex; justify-content: center; align-items: center; gap: 5px; background: #f3f6fa; }
.phone-bar span { width: 5px; height: 5px; border-radius: 50%; background: #a4b2c2; }
.phone-map { position: relative; height: 210px; overflow: hidden; background: #dceadb; }
.phone-map:before, .phone-map:after { content: ""; position: absolute; inset: 22px -40px auto -20px; height: 36px; transform: rotate(-12deg); background: white; border: 7px solid #c7d5c6; }
.phone-map:after { inset: 116px -30px auto -80px; transform: rotate(21deg); }
.map-road { position: absolute; z-index: 1; width: 12px; height: 280px; background: #f8e6ad; }
.road-one { left: 74px; top: -30px; transform: rotate(33deg); }
.road-two { right: 78px; top: -30px; transform: rotate(-24deg); }
.map-pin { position: absolute; z-index: 3; left: 50%; top: 43%; width: 40px; height: 40px; display: grid; place-items: center; transform: translate(-50%,-50%) rotate(45deg); border-radius: 50% 50% 50% 8px; background: var(--red); box-shadow: 0 8px 20px rgba(0,0,0,.22); }
.map-pin span { width: 13px; height: 13px; border-radius: 50%; background: white; }
.map-label { position: absolute; z-index: 4; left: 50%; bottom: 14px; max-width: 90%; transform: translateX(-50%); padding: 8px 11px; border-radius: 8px; background: white; font-size: 11px; font-weight: 900; white-space: nowrap; box-shadow: 0 5px 15px rgba(0,0,0,.16); }
.phone-content { padding: 22px; }
.skeleton { height: 12px; margin-bottom: 10px; border-radius: 10px; background: #dfe8f2; }
.skeleton.wide { width: 90%; }.skeleton.medium { width: 58%; }
.photo-skeletons { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 21px 0; }
.photo-skeletons span { height: 68px; border-radius: 9px; background: linear-gradient(120deg,#dce8f0,#bcd6e5); }
.website-check { display: flex; align-items: center; gap: 9px; color: #5d6d82; font-size: 11px; font-weight: 800; }
.website-check i { width: 16px; height: 16px; border: 2px solid #b8c5d5; border-top-color: var(--blue); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.scan-progress-copy h1 { max-width: 650px; font-size: clamp(39px, 4.7vw, 60px); }
.scan-progress-copy > p { color: #aebfd3; font-size: 16px; }
.progress-list { margin-top: 34px; }
.progress-step { display: flex; align-items: center; gap: 16px; min-height: 62px; opacity: .38; }
.progress-step > span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid #7f91aa; border-radius: 50%; font-size: 12px; font-weight: 900; }
.progress-step strong, .progress-step small { display: block; }
.progress-step small { margin-top: 5px; color: #9eafc4; font-size: 12px; }
.progress-step.active, .progress-step.done { opacity: 1; }
.progress-step.active > span { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 0 6px rgba(244,181,68,.1); }
.progress-step.done > span { border-color: #47cf91; background: #47cf91; color: #06261a; }

.results-view { min-height: calc(100vh - 76px); padding: 78px 0 55px; }
.result-heading { display: flex; align-items: center; justify-content: space-between; gap: 50px; margin-bottom: 42px; }
.result-heading h1 { margin: 12px 0 8px; font-size: clamp(38px, 5vw, 62px); line-height: 1; letter-spacing: -.045em; }
.result-heading p { max-width: 760px; margin: 0; color: var(--muted); line-height: 1.55; }
.score-ring { --score: 220deg; width: 132px; height: 132px; display: grid; place-content: center; flex: 0 0 auto; border-radius: 50%; background: radial-gradient(circle at center, #f4f8fd 59%, transparent 60%), conic-gradient(#26b784 var(--score), #d9e3ed 0); text-align: center; }
.score-ring strong { font-size: 38px; line-height: 1; }.score-ring span { margin-top: 4px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.result-overview { display: grid; grid-template-columns: 1.06fr .94fr; gap: 20px; }
.map-card, .audit-card, .opportunity-box, .lead-form { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 16px 40px rgba(23,47,82,.07); }
.map-card iframe, .map-fallback { width: 100%; height: 330px; border: 0; }
.map-fallback { display: grid; place-content: center; justify-items: center; gap: 15px; background: linear-gradient(135deg,#dde9e2,#c9dfd4); color: #465c55; text-align: center; }
.fallback-pin { width: 40px; height: 40px; transform: rotate(45deg); border-radius: 50% 50% 50% 8px; background: var(--red); }
.map-caption { display: grid; gap: 5px; padding: 22px; }.map-caption span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.audit-card { padding: 29px; }
.audit-card h2 { margin: 0 0 20px; font-size: 24px; }
.audit-row { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; padding: 15px 0; border-bottom: 1px solid #e7edf4; }
.audit-row:last-child { border-bottom: 0; }
.audit-row > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; font-size: 12px; font-weight: 900; }
.audit-row > span.good { background: #d9f7e9; color: #13794b; }.audit-row > span.warn { background: #fff0cc; color: #9a6100; }
.audit-row strong, .audit-row small { display: block; }.audit-row small { margin-top: 4px; color: var(--muted); line-height: 1.45; }
.audit-link { display: inline-block; margin-top: 7px; color: var(--blue); font-size: 11px; font-weight: 900; }
.data-source { display: block; margin-top: 10px; color: #7b899d; font-size: 10px; line-height: 1.45; }
.photo-results { display: grid; grid-template-columns: 250px 1fr; gap: 28px; align-items: center; margin-top: 20px; padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 16px 40px rgba(23,47,82,.07); }
.photo-results h2 { margin: 8px 0 0; font-size: 24px; }
.photo-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.photo-gallery img { width: 100%; height: 145px; object-fit: cover; border-radius: 12px; background: #e4ebf3; }
.opportunity-box { display: flex; align-items: center; justify-content: space-between; gap: 55px; margin-top: 20px; padding: 40px; background: var(--ink); color: white; }
.opportunity-box h2 { max-width: 680px; margin: 10px 0; font-size: clamp(29px, 3.5vw, 43px); letter-spacing: -.035em; }
.opportunity-box p { max-width: 700px; margin: 0; color: #afc0d5; line-height: 1.65; }
.lead-form { margin-top: 20px; padding: 40px; }
.lead-form-heading h2 { margin: 8px 0; font-size: 31px; letter-spacing: -.03em; }.lead-form-heading p { margin: 0 0 28px; color: var(--muted); }
.lead-fields { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.lead-fields label { display: grid; margin: 0; }.lead-fields input { margin: 8px 0 0; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; color: #5c6c81; font-size: 12px; line-height: 1.5; }.consent-row input { margin-top: 2px; }
.contact-requirement { margin: 6px 0 18px; color: #6c7c91; font-size: 11px; }
.turnstile-wrap { min-height: 70px; display: flex; justify-content: center; margin: 8px 0 18px; }
.test-mode-note { margin: -7px 0 16px; padding: 9px 12px; border-radius: 8px; background: #fff0cc; color: #795000; font-size: 10px; line-height: 1.45; text-align: center; }
.lead-form > .scan-primary { width: 100%; }
.form-error { margin: 0 0 15px; color: #b52f32; font-size: 13px; font-weight: 700; text-align: center; }
.restart-button { display: block; margin: 28px auto 0; border: 0; background: transparent; color: var(--blue); font: inherit; font-size: 13px; font-weight: 900; cursor: pointer; }
.result-disclaimer { max-width: 760px; margin: 24px auto 0; color: #8997a9; font-size: 10px; line-height: 1.55; text-align: center; }

.new-business-view { min-height: calc(100vh - 76px); display: grid; place-items: center; padding-block: 70px; background: radial-gradient(circle at 80% 0%, #1b5ca5, transparent 35%), var(--ink); color: white; }
.new-business-card { max-width: 840px; text-align: center; }
.new-business-card h1 { font-size: clamp(41px, 6vw, 67px); }.new-business-card > p { max-width: 720px; margin: 0 auto; color: #b9c8da; font-size: 17px; line-height: 1.7; }
.new-business-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 38px 0; }
.new-business-steps span { display: flex; align-items: center; gap: 10px; padding: 15px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: rgba(255,255,255,.05); font-size: 13px; font-weight: 700; text-align: left; }
.new-business-steps b { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--gold); color: var(--ink); }
.new-business-actions { display: grid; justify-content: center; }.new-business-actions .restart-button { color: #8fdffc; }
.new-business-card > .scan-primary { margin-top: 3px; }
.new-business-card .lead-form { color: var(--ink); text-align: left; }
.new-business-card .lead-form-heading { text-align: center; }
.dark-form { max-width: 1000px; margin: 30px auto 0; }

.sent-view { min-height: calc(100vh - 132px); display: grid; place-items: center; padding: 70px 20px; }
.sent-card { max-width: 650px; padding: 65px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 25px 65px rgba(23,47,82,.11); text-align: center; }
.sent-check { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 24px; border-radius: 50%; background: #d9f7e9; color: #138155; font-size: 32px; font-weight: 900; }
.sent-card h1 { font-size: 48px; }.sent-card p { margin: 0 0 30px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.sent-home-link { display: block; margin-top: 20px; color: var(--blue); font-size: 13px; font-weight: 900; }

.scan-footer { padding: 19px 0; background: #071126; color: #899cb4; }
.scan-footer > div { display: flex; justify-content: space-between; gap: 20px; font-size: 11px; }.scan-footer a { color: #b9cce2; }

@media (max-width: 850px) {
  .scan-start-grid, .scanning-grid { grid-template-columns: 1fr; gap: 55px; }
  .scan-copy { text-align: center; }.scan-copy > p { margin-inline: auto; }.scan-assurances { justify-content: center; }
  .scanning-grid { grid-template-columns: .8fr 1.2fr; gap: 40px; }
  .result-overview { grid-template-columns: 1fr; }
  .lead-fields { grid-template-columns: 1fr; }.lead-fields input { margin-bottom: 3px; }
  .opportunity-box { align-items: flex-start; flex-direction: column; gap: 25px; }
  .photo-results { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .scan-shell { width: min(100% - 28px, 1120px); }
  .scan-nav { min-height: 68px; }.scan-brand img { width: 48px; height: 48px; }.scan-brand span, .secure-label { display: none; }
  .scan-start { min-height: calc(100vh - 68px); align-items: start; }
  .scan-start-grid { gap: 36px; padding-block: 55px; }
  .scan-copy { text-align: left; }.scan-copy h1 { font-size: 44px; }.scan-copy > p { font-size: 16px; }.scan-assurances { justify-content: flex-start; }
  .search-panel { padding: 25px 20px; border-radius: 18px; }
  .scanning-view { min-height: calc(100vh - 68px); padding-block: 48px; }
  .scanning-grid { grid-template-columns: 1fr; gap: 45px; }.scan-phone { width: 230px; border-width: 7px; border-radius: 31px; }.phone-map { height: 145px; }.phone-content { padding: 16px; }.photo-skeletons span { height: 48px; }
  .scan-progress-copy h1 { font-size: 39px; }.scan-progress-copy > p { font-size: 14px; }
  .progress-step { min-height: 57px; }.progress-step small { font-size: 10px; }
  .results-view { padding-top: 55px; }.result-heading { align-items: flex-start; flex-direction: column; gap: 25px; }.score-ring { width: 110px; height: 110px; }.score-ring strong { font-size: 31px; }
  .map-card iframe, .map-fallback { height: 260px; }.audit-card, .opportunity-box, .lead-form { padding: 24px 20px; border-radius: 16px; }
  .photo-results { padding: 20px; }.photo-gallery { grid-template-columns: 1fr 1fr; }.photo-gallery img { height: 130px; }.photo-gallery img:nth-child(3) { display: none; }
  .opportunity-box h2 { font-size: 31px; }.scan-primary.compact { width: 100%; min-width: 0; }
  .new-business-view { min-height: calc(100vh - 68px); }.new-business-card { text-align: left; }.new-business-card h1 { font-size: 43px; }.new-business-steps { grid-template-columns: 1fr; }
  .new-business-actions { justify-content: stretch; text-align: center; }.sent-card { padding: 45px 23px; }.sent-card h1 { font-size: 39px; }
  .scan-footer > div { flex-direction: column; text-align: center; }
}

/* Business orientation experience v2.1.7 */
.guided-scan-page{margin:0;background:#f3f6fb;color:#0b1834;font-family:Arial,Helvetica,sans-serif}
.guided-scan{min-height:100vh;overflow:hidden;background:#f3f6fb}
.guided-scan .is-hidden{display:none!important}
.guided-shell{width:min(1160px,calc(100% - 44px));margin-inline:auto}
.guided-header{position:relative;z-index:20;background:#fff;border-bottom:1px solid #e3e9f2}
.guided-nav{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:28px}
.guided-brand{display:flex;align-items:center;gap:11px;color:#0b1834;text-decoration:none}
.guided-brand img{width:58px;height:58px;object-fit:contain}
.guided-brand strong,.guided-brand small{display:block;line-height:1}
.guided-brand strong{font-size:15px;text-transform:uppercase;letter-spacing:.02em}
.guided-brand small{margin-top:5px;color:#f17b08;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.12em}
.guided-nav-actions{display:flex;align-items:center;gap:22px}
.guided-secure{color:#617089;font-size:12px;font-weight:800}
.language-switch{display:flex;padding:3px;border:1px solid #d8e1ed;border-radius:999px;background:#f6f8fb}
.language-switch button{width:42px;height:33px;border:0;border-radius:999px;background:transparent;color:#67758a;font-size:11px;font-weight:900;cursor:pointer}
.language-switch button.active{background:#0e48a3;color:#fff;box-shadow:0 4px 12px rgba(14,72,163,.2)}
.guided-intro{position:relative;min-height:calc(100vh - 82px);display:flex;align-items:center;overflow:hidden;background-image:linear-gradient(90deg,rgba(5,20,49,.95) 0%,rgba(5,27,63,.86) 43%,rgba(5,27,63,.38) 72%,rgba(5,27,63,.16) 100%),url('/assets/images/office.jpg');background-size:cover;background-position:center;background-repeat:no-repeat}
.guided-intro:after{content:"";position:absolute;inset:auto 0 0;height:30%;pointer-events:none;background:linear-gradient(180deg,transparent,rgba(3,14,34,.34))}
.guided-intro-grid{position:relative;z-index:1;padding-block:80px}
.guided-intro-copy{max-width:690px}
.guided-kicker{display:block;color:#f6a21b;font-size:11px;font-weight:900;letter-spacing:.17em;text-transform:uppercase}
.guided-intro-copy h1{max-width:680px;margin:18px 0 22px;color:#fff;font-size:clamp(48px,6vw,78px);line-height:.98;letter-spacing:-.055em}
.guided-intro-copy>p{max-width:650px;margin:0;color:#cbd8ec;font-size:18px;line-height:1.7}
.requested-service-notice{width:max-content;max-width:100%;display:flex;align-items:center;gap:9px;margin-top:20px;padding:10px 13px;border:1px solid rgba(132,221,255,.3);border-radius:10px;background:rgba(10,55,123,.58);color:#dbeafa;font-size:11px}
.requested-service-notice strong{color:#fff;font-size:12px}
.guided-trust{display:flex;flex-wrap:wrap;gap:10px;margin:27px 0}
.guided-trust span{padding:9px 12px;border:1px solid rgba(255,255,255,.14);border-radius:999px;color:#edf4ff;background:rgba(255,255,255,.055);font-size:11px;font-weight:800}
.guided-primary{min-height:54px;display:inline-flex;align-items:center;justify-content:center;padding:0 25px;border:0;border-radius:12px;background:linear-gradient(135deg,#f79b10,#ee7200);box-shadow:0 13px 28px rgba(239,117,0,.24);color:#fff;font:inherit;font-size:13px;font-weight:900;cursor:pointer;text-decoration:none;transition:transform .18s ease,box-shadow .18s ease}
.guided-primary:hover{transform:translateY(-2px);box-shadow:0 17px 34px rgba(239,117,0,.3)}
.guided-primary:disabled{opacity:.55;cursor:wait;transform:none}
.guided-intro-actions{display:flex;flex-wrap:wrap;align-items:center;gap:18px}
.guided-intro-actions>a{color:#fff;font-size:12px;font-weight:900;text-decoration:underline;text-underline-offset:5px}
.guided-question-view{min-height:calc(100vh - 82px);padding:48px 0 75px;background:linear-gradient(180deg,#edf3fb,#f8fafc)}
.question-shell{max-width:930px}
.question-topline{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:13px;color:#6a7890;font-size:11px;font-weight:800}
.guided-back{border:0;background:transparent;color:#174f9f;font:inherit;font-size:12px;font-weight:900;cursor:pointer}
.guided-progress{height:6px;overflow:hidden;border-radius:999px;background:#dce5f0}
.guided-progress span{display:block;width:8%;height:100%;border-radius:inherit;background:linear-gradient(90deg,#0f4aa5,#1f77d4,#f28a08);transition:width .3s ease}
.question-card{margin-top:28px;padding:50px;border:1px solid #e0e7f0;border-radius:24px;background:#fff;box-shadow:0 28px 70px rgba(27,53,89,.09)}
.question-card h1{max-width:720px;margin:12px 0 10px;color:#0b1834;font-size:clamp(36px,5vw,55px);line-height:1.03;letter-spacing:-.045em}
.question-card>p{margin:0;color:#65748a;font-size:15px;line-height:1.6}
.option-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:32px}
.option-card{position:relative;min-height:104px;display:grid;grid-template-columns:47px 1fr 25px;align-items:center;gap:15px;padding:17px;border:1px solid #dbe4ef;border-radius:15px;background:#fff;color:#0b1834;text-align:left;cursor:pointer;transition:border-color .18s ease,transform .18s ease,box-shadow .18s ease}
.option-card:hover{transform:translateY(-2px);border-color:#7ca7dc;box-shadow:0 12px 27px rgba(24,67,122,.08)}
.option-card.selected{border-color:#1462bd;background:#f1f7ff;box-shadow:inset 0 0 0 1px #1462bd}
.option-icon{width:47px;height:47px;display:grid;place-items:center;border-radius:13px;background:#eaf2fc;color:#0e4c9e;font-size:15px;font-weight:900}
.option-card.selected .option-icon{background:#0f55ad;color:#fff}
.option-copy strong,.option-copy small{display:block}
.option-copy strong{font-size:14px;line-height:1.25}
.option-copy small{margin-top:6px;color:#76869b;font-size:11px;line-height:1.35}
.option-check{width:23px;height:23px;display:grid;place-items:center;border:1px solid #d3deeb;border-radius:50%;color:transparent;font-size:11px}
.option-card.selected .option-check{border-color:#0f55ad;background:#0f55ad;color:#fff}
.multi-continue{margin-top:23px;min-width:170px}
.question-help{margin-top:24px!important;padding-top:20px;border-top:1px solid #edf1f6;color:#8190a3!important;font-size:11px!important}
.guided-thinking{min-height:calc(100vh - 82px);display:grid;place-items:center;padding:50px 22px;background:radial-gradient(circle at 50% 35%,#174da8,#071d49 70%)}
.thinking-card{max-width:720px;color:#fff;text-align:center}
.thinking-card h1{margin:17px 0 15px;font-size:clamp(38px,6vw,62px);line-height:1;letter-spacing:-.05em}
.thinking-card p{color:#c9d6e9;line-height:1.65}
.thinking-mark{width:84px;height:84px;display:flex;align-items:center;justify-content:center;gap:7px;margin:0 auto 28px;border:1px solid rgba(255,255,255,.18);border-radius:50%;background:rgba(255,255,255,.07)}
.thinking-mark span{width:8px;height:8px;border-radius:50%;background:#f49a16;animation:guidedPulse 1s infinite ease-in-out}
.thinking-mark span:nth-child(2){animation-delay:.16s}.thinking-mark span:nth-child(3){animation-delay:.32s}
@keyframes guidedPulse{0%,80%,100%{transform:scale(.7);opacity:.4}40%{transform:scale(1.2);opacity:1}}
.guided-result{padding:70px 0;background:#f3f6fb}
.result-hero{display:grid;grid-template-columns:1fr 260px;align-items:end;gap:40px;margin-bottom:30px}
.result-hero h1{max-width:760px;margin:12px 0 15px;font-size:clamp(42px,6vw,68px);line-height:.98;letter-spacing:-.055em}
.result-hero p{max-width:720px;margin:0;color:#64738a;line-height:1.65}
.priority-card{padding:23px;border:1px solid #dbe4ef;border-radius:16px;background:#fff}
.priority-card span,.priority-card strong,.priority-card small{display:block}.priority-card span{color:#77869a;font-size:10px;font-weight:900;letter-spacing:.1em;text-transform:uppercase}
.priority-card strong{margin:8px 0 5px;font-size:22px}.priority-card small{color:#66758a;font-size:11px;line-height:1.4}
.priority-card.urgent{border-color:#f0b0a6;background:#fff5f3}.priority-card.urgent strong{color:#b63828}
.priority-card.important{border-color:#f0d096;background:#fff9ec}.priority-card.important strong{color:#9b6300}
.priority-card.normal{border-color:#a9d6bd;background:#f2fbf6}.priority-card.normal strong{color:#167549}
.result-layout{display:grid;grid-template-columns:1.35fr .65fr;gap:18px}
.route-card,.documents-card,.next-card,.guided-contact-form{border:1px solid #dfe7f1;border-radius:20px;background:#fff;box-shadow:0 18px 50px rgba(26,54,92,.06)}
.route-card{padding:34px}.result-side{display:grid;align-content:start;gap:18px}.documents-card,.next-card{padding:28px}
.result-card-heading{display:flex;align-items:flex-start;gap:15px;padding-bottom:22px;border-bottom:1px solid #edf1f6}
.result-card-heading>span{width:38px;height:38px;display:grid;place-items:center;flex:0 0 38px;border-radius:11px;background:#0e4ca3;color:#fff;font-size:10px;font-weight:900}
.result-card-heading h2{margin:0 0 5px;font-size:21px}.result-card-heading p{margin:0;color:#7b899c;font-size:11px;line-height:1.4}
.recommendation-list{display:grid}
.recommendation-item{display:grid;grid-template-columns:45px 1fr;gap:17px;padding:23px 0;border-bottom:1px solid #edf1f6}
.recommendation-item:last-child{border-bottom:0;padding-bottom:0}
.route-index{color:#c2ccda;font-size:19px;font-weight:900}
.tier-label{display:block;margin-bottom:5px;color:#ef7d08;font-size:9px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.recommendation-item h3{margin:0 0 7px;font-size:18px}.recommendation-item p{margin:0;color:#68778d;font-size:12px;line-height:1.55}
.documents-card ul{display:grid;gap:11px;margin:22px 0 0;padding:0;list-style:none}
.documents-card li{position:relative;padding-left:25px;color:#53647b;font-size:12px;line-height:1.45}
.documents-card li:before{content:"✓";position:absolute;left:0;top:0;width:17px;height:17px;display:grid;place-items:center;border-radius:50%;background:#e0f5e9;color:#187448;font-size:9px;font-weight:900}
.next-card{background:linear-gradient(145deg,#092963,#0c438f);color:#fff}
.next-card h2{margin:0 0 10px;font-size:25px}.next-card p{margin:0 0 22px;color:#cbd8eb;font-size:12px;line-height:1.6}.next-card .guided-primary{width:100%}
.guided-contact-form{margin-top:25px;padding:40px}
.contact-heading{max-width:720px;margin-bottom:26px}.contact-heading h2{margin:10px 0 8px;font-size:33px}.contact-heading p{margin:0;color:#6b798d;line-height:1.55}
.contact-choice-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-bottom:24px}
.contact-choice-grid button{min-height:86px;display:grid;place-items:center;align-content:center;gap:8px;padding:12px;border:1px solid #d7e1ed;border-radius:13px;background:#fff;color:#53647b;font:inherit;cursor:pointer}
.contact-choice-grid button span{font-size:19px;color:#1754a3}.contact-choice-grid button strong{font-size:11px}
.contact-choice-grid button.selected{border-color:#1259b2;background:#eef6ff;box-shadow:inset 0 0 0 1px #1259b2;color:#0b3976}
.guided-fields{display:grid;grid-template-columns:repeat(2,1fr);gap:15px}
.guided-fields label{display:grid;gap:7px;color:#45566e;font-size:11px;font-weight:900}
.guided-fields input{width:100%;height:50px;padding:0 14px;border:1px solid #cfdbe8;border-radius:10px;background:#fff;color:#0b1834;font:inherit}
.guided-fields input:focus{outline:3px solid rgba(20,95,189,.12);border-color:#145fbd}
.guided-contact-form .consent-row{display:flex;align-items:flex-start;gap:10px;margin-top:17px;color:#637289;font-size:10px;line-height:1.55}
.guided-contact-form .consent-row input{margin-top:3px;flex:0 0 auto}
.guided-contact-form .recommended-consent{padding:13px;border:1px solid #bed5ef;border-radius:10px;background:#f1f7ff}
.guided-contact-form .turnstile-wrap{margin:20px 0 12px}.guided-contact-form .form-error{margin:14px 0;padding:13px;border-radius:9px;background:#fde8e9;color:#8c292d;font-size:12px}
.guided-contact-form .test-mode-note{color:#946000;font-size:10px}
.guided-contact-form>.guided-primary{margin-top:10px;min-width:210px}
.direct-contact-section{padding:86px 0;background:#eef3f9}
.direct-contact-scan{border-top:1px solid #dce5ef}
.direct-contact-form{width:100%;margin:0;padding:45px;border-radius:24px;box-shadow:0 22px 58px rgba(23,47,82,.09)}
.direct-contact-form .contact-heading{max-width:790px}
.direct-contact-form .contact-heading h2{font-size:clamp(31px,4vw,45px)}
.direct-contact-form button[type="submit"]{min-width:210px;margin-top:10px}
.direct-contact-success{max-width:680px;margin:auto;padding:38px 15px;text-align:center}
.direct-contact-success-mark{width:68px;height:68px;display:grid;place-items:center;margin:0 auto 22px;border-radius:50%;background:#e1f6e9;color:#177548;font-size:29px;font-weight:900}
.direct-contact-success h2{margin:0 0 12px;font-size:36px;letter-spacing:-.035em}
.direct-contact-success p{margin:0;color:#637289;line-height:1.65}
.restart-guidance{display:block;margin:27px auto 0;border:0;background:transparent;color:#1752a1;font:inherit;font-size:11px;font-weight:900;cursor:pointer}
.guided-disclaimer{max-width:850px;margin:22px auto 0;color:#8491a3;font-size:10px;line-height:1.6;text-align:center}
.guided-sent{min-height:calc(100vh - 82px);display:grid;place-items:center;padding:65px 22px;background:radial-gradient(circle at 50% 35%,#174da8,#071d49 72%)}
.guided-sent .sent-card{width:min(650px,100%);padding:58px 45px;border-radius:24px;background:#fff;text-align:center;box-shadow:0 35px 90px rgba(0,0,0,.2)}
.guided-sent .sent-check{width:70px;height:70px;display:grid;place-items:center;margin:0 auto 24px;border-radius:50%;background:#e1f6e9;color:#177548;font-size:30px;font-weight:900}
.guided-sent h1{margin:12px 0 13px;font-size:43px;letter-spacing:-.045em}.guided-sent p{color:#637289;line-height:1.65}
.guided-sent .link-button{margin-top:10px}.guided-sent .sent-home-link{display:block;margin-top:20px;color:#60708a;font-size:11px;font-weight:900}
.guided-footer{padding:22px 0;border-top:1px solid #dfe6ef;background:#fff;color:#718096;font-size:10px}
.guided-footer>div{display:flex;align-items:center;justify-content:space-between;gap:20px}.guided-footer a{color:#36587f;text-decoration:none}

@media(max-width:900px){
  .result-layout{grid-template-columns:1fr}.result-side{grid-template-columns:1fr 1fr}.contact-choice-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:680px){
  .guided-shell{width:min(100% - 28px,1160px)}.guided-nav{min-height:70px}.guided-brand img{width:50px;height:50px}.guided-brand span,.guided-secure{display:none}.guided-nav-actions{gap:9px}
  .guided-intro{min-height:calc(100vh - 70px);align-items:flex-start;background-image:linear-gradient(180deg,rgba(5,20,49,.76) 0%,rgba(5,20,49,.86) 50%,rgba(5,20,49,.97) 100%),url('/assets/images/office.jpg');background-position:64% center}.guided-intro-grid{padding-block:55px}.guided-intro-copy h1{font-size:48px}.guided-intro-copy>p{font-size:15px}.guided-trust{gap:7px}.guided-trust span{padding:8px 10px;font-size:9px}.guided-primary{width:100%}.guided-intro-actions{display:grid;gap:15px;text-align:center}
  .guided-question-view{min-height:calc(100vh - 70px);padding:28px 0 50px}.question-topline{align-items:flex-start}.question-card{margin-top:20px;padding:27px 19px;border-radius:18px}.question-card h1{font-size:37px}.option-grid{grid-template-columns:1fr;margin-top:24px}.option-card{min-height:88px;padding:13px;grid-template-columns:43px 1fr 23px}.option-icon{width:43px;height:43px}.multi-continue{min-width:0}
  .guided-thinking,.guided-sent{min-height:calc(100vh - 70px)}.thinking-card h1{font-size:42px}
  .guided-result{padding:48px 0}.result-hero{grid-template-columns:1fr;align-items:start;gap:22px}.result-hero h1{font-size:45px}.route-card,.documents-card,.next-card{padding:23px 19px}.result-side{grid-template-columns:1fr}.recommendation-item{grid-template-columns:36px 1fr}
  .guided-contact-form{padding:27px 19px}.contact-heading h2{font-size:30px}.contact-choice-grid{grid-template-columns:1fr 1fr}.guided-fields{grid-template-columns:1fr}.guided-contact-form>.guided-primary{min-width:0}
  .direct-contact-section{padding:52px 0}.direct-contact-form{padding:27px 16px}.direct-contact-form button[type="submit"]{width:100%;min-width:0}.direct-contact-success{padding:28px 5px}.direct-contact-success h2{font-size:30px}
  .guided-sent .sent-card{padding:45px 22px}.guided-sent h1{font-size:38px}.guided-footer>div{flex-direction:column;text-align:center}
}

/* Mobile navigation and logo emphasis v2.2.1 */
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.brand img,.guided-brand img{padding:3px;border:1px solid rgba(18,76,151,.1);border-radius:16px;background:rgba(255,255,255,.96);box-shadow:0 9px 22px rgba(7,35,77,.2),0 2px 6px rgba(7,35,77,.12);transition:transform .2s ease,box-shadow .2s ease}
.brand:hover img,.guided-brand:hover img{transform:translateY(-1px);box-shadow:0 12px 27px rgba(7,35,77,.24),0 3px 8px rgba(7,35,77,.14)}
.mobile-menu-toggle{display:none;width:46px;height:46px;flex:0 0 46px;align-items:center;justify-content:center;flex-direction:column;gap:5px;padding:0;border:1px solid #cfdbea;border-radius:13px;background:#fff;color:#0e2f68;box-shadow:0 7px 18px rgba(14,47,104,.11);cursor:pointer}
.mobile-menu-toggle>span:not(.sr-only){width:21px;height:2px;border-radius:3px;background:currentColor;transition:transform .2s ease,opacity .2s ease}
.mobile-menu-toggle[aria-expanded="true"]>span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.mobile-menu-toggle[aria-expanded="true"]>span:nth-child(2){opacity:0}
.mobile-menu-toggle[aria-expanded="true"]>span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobile-menu-toggle:focus-visible{outline:3px solid rgba(20,95,189,.25);outline-offset:3px}
.mobile-navigation{display:none}
@media(max-width:900px){
  .mobile-menu-toggle{display:inline-flex}
  .mobile-navigation{position:absolute;top:100%;left:0;right:0;z-index:30;border-top:1px solid #e5ebf3;border-bottom:1px solid #d7e1ed;background:rgba(255,255,255,.985);box-shadow:0 22px 38px rgba(8,33,72,.18);backdrop-filter:blur(16px)}
  .mobile-navigation.is-open{display:block;animation:mobileMenuReveal .18s ease-out}
  .mobile-menu-inner{display:grid;gap:0;padding-top:10px;padding-bottom:15px}
  .mobile-menu-inner>a{min-height:49px;display:flex;align-items:center;padding:0 12px;border-bottom:1px solid #edf1f6;color:#243853;font-size:14px;font-weight:800}
  .mobile-menu-inner>a:last-child{border-bottom:0}
  .mobile-menu-inner>a:focus-visible{outline:3px solid rgba(20,95,189,.2);outline-offset:-3px}
  .mobile-menu-inner .mobile-menu-cta{min-height:48px;justify-content:center;margin-top:11px;border:0;border-radius:11px;background:#145fbd;color:#fff;box-shadow:0 10px 23px rgba(20,95,189,.23)}
  .guided-mobile-navigation .mobile-menu-inner>a{color:#243853}
}
@keyframes mobileMenuReveal{from{opacity:0;transform:translateY(-7px)}to{opacity:1;transform:translateY(0)}}
@media(max-width:620px){
  .brand img{width:52px;height:52px}.guided-brand img{width:50px;height:50px}
  .nav-wrap{gap:12px}.guided-nav{gap:12px}.guided-nav-actions{margin-left:auto}
}
