
/*
 * LOCCO — vision-check page
 * Scoped stylesheet: it does not override the shared site header, footer,
 * modal or cookie layer when the renderer is used inside the project shell.
 */

.vision-check-page {
  --vc-page: #f6f3ed;
  --vc-soft: #ece9e1;
  --vc-card: #fffdf8;
  --vc-green-soft: #e4eee7;
  --vc-text: #183e36;
  --vc-muted: #68746f;
  --vc-green: #1f5b4d;
  --vc-green-deep: #123f35;
  --vc-green-light: #dfece5;
  --vc-warm: #efb08c;
  --vc-warm-soft: #f8dfcf;
  --vc-border: rgba(24, 62, 54, .14);
  --vc-shadow: 0 22px 54px rgba(25, 66, 55, .12);
  --vc-radius-control: 999px;
  --vc-radius-card: 22px;
  --vc-radius-feature: 32px;
  --vc-container: 1240px;

  overflow: clip;
  background: var(--vc-page);
  color: var(--vc-text);
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.vision-check-page *,
.vision-check-page *::before,
.vision-check-page *::after {
  box-sizing: border-box;
}

.vision-check-page a {
  color: inherit;
}

.vision-check-page img {
  display: block;
  width: 100%;
  height: auto;
}

.vision-check-page .container {
  width: min(var(--vc-container), calc(100% - 48px));
  margin-inline: auto;
}

/* Prevent collisions with the shared corpus CSS. */
.vision-check-page > .vc-hero-section,
.vision-check-page > .vc-facts-section {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
}

.vision-check-page > .vc-hero-section > .container.hero-grid,
.vision-check-page > .vc-facts-section > .container.fact-grid {
  width: min(var(--vc-container), calc(100% - 48px)) !important;
  max-width: none !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
}

@media (max-width: 760px) {
  .vision-check-page > .vc-hero-section > .container.hero-grid,
  .vision-check-page > .vc-facts-section > .container.fact-grid {
    width: min(100% - 28px, var(--vc-container)) !important;
  }
}

.vision-check-page h1,
.vision-check-page h2,
.vision-check-page h3,
.vision-check-page p {
  margin-top: 0;
}

.vision-check-page h1 {
  max-width: 700px;
  margin: 14px 0 20px;
  font-size: clamp(48px, 4.7vw, 68px);
  line-height: 1;
  letter-spacing: -.052em;
}

.vision-check-page h2 {
  margin-bottom: 15px;
  font-size: clamp(34px, 3.15vw, 48px);
  line-height: 1.06;
  letter-spacing: -.043em;
}

.vision-check-page h3 {
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.vision-check-page .btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--vc-radius-control);
  font: inherit;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.vision-check-page .btn-primary {
  background: var(--vc-green);
  color: #fff;
  box-shadow: 0 11px 26px rgba(31, 91, 77, .17);
}

.vision-check-page .btn-primary:hover {
  background: var(--vc-green-deep);
  transform: translateY(-1px);
}

.vision-check-page .btn-secondary {
  border-color: var(--vc-border);
  background: transparent;
  color: var(--vc-text);
}

.vision-check-page .breadcrumbs {
  overflow: hidden;
  padding: 23px 0 16px;
  color: var(--vc-muted);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vision-check-page .breadcrumbs span {
  margin: 0 8px;
  opacity: .55;
}

.vision-check-page .kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--vc-green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.vision-check-page .kicker::before {
  width: 23px;
  height: 2px;
  border-radius: 2px;
  background: var(--vc-warm);
  content: "";
}

/* Hero */
.vision-check-page .vc-hero-section {
  padding: 8px 0 46px;
}

.vision-check-page .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, .82fr);
  align-items: center;
  gap: clamp(38px, 4.2vw, 64px);
}

.vision-check-page .hero-lead {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: clamp(21px, 1.9vw, 26px);
  line-height: 1.26;
  letter-spacing: -.022em;
}

.vision-check-page .hero-copy {
  max-width: 690px;
  margin-bottom: 24px;
  color: var(--vc-muted);
  font-size: 16px;
  line-height: 1.62;
}

.vision-check-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 22px;
}

.vision-check-page .location-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--vc-green-deep);
  font-size: 13px;
  font-weight: 760;
}

.vision-check-page .location-inline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vision-check-page .location-inline i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vc-warm);
}

.vision-check-page .hero-media {
  position: relative;
  min-width: 0;
}

.vision-check-page .hero-photo {
  height: clamp(455px, 38vw, 550px);
  border-radius: 62px 22px 62px 22px;
  object-fit: cover;
  box-shadow: var(--vc-shadow);
}

.vision-check-page .zero-badge {
  position: absolute;
  bottom: 30px;
  left: -22px;
  padding: 15px 19px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 21px;
  background: var(--vc-card);
  box-shadow: var(--vc-shadow);
}

.vision-check-page .zero-badge strong {
  display: block;
  color: var(--vc-green);
  font-size: 28px;
  line-height: 1;
}

.vision-check-page .zero-badge span {
  color: var(--vc-muted);
  font-size: 11px;
  font-weight: 750;
}

/* Facts */
.vision-check-page .vc-facts-section {
  padding: 14px 0 68px;
}

.vision-check-page .fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.vision-check-page .fact {
  display: flex;
  min-width: 0;
  min-height: 136px;
  flex-direction: column;
  gap: 15px;
  padding: 21px;
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-card);
  background: var(--vc-card);
}

.vision-check-page .fact-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 13px;
  background: var(--vc-warm-soft);
  color: var(--vc-green-deep);
  font-weight: 900;
}

.vision-check-page .fact > strong {
  min-height: 2.35em;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.vision-check-page .fact-more {
  margin-top: auto;
  color: var(--vc-muted);
  font-size: 13px;
}

.vision-check-page .fact-more summary {
  display: inline-flex;
  cursor: pointer;
  color: var(--vc-green);
  font-weight: 800;
  list-style: none;
}

.vision-check-page .fact-more summary::-webkit-details-marker {
  display: none;
}

.vision-check-page .fact-more summary::after {
  margin-left: 5px;
  content: "+";
}

.vision-check-page .fact-more[open] summary::after {
  content: "−";
}

.vision-check-page .fact-more p {
  margin: 9px 0 0;
  line-height: 1.45;
}

/* Main reading area */
.vision-check-page .content-wrap {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: start;
  gap: 42px;
}

.vision-check-page .side-nav {
  position: sticky;
  top: 112px;
  padding: 16px;
  border: 1px solid var(--vc-border);
  border-radius: 20px;
  background: rgba(255, 253, 248, .78);
}

.vision-check-page .side-nav-title {
  margin-bottom: 9px;
  color: var(--vc-muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.vision-check-page .side-nav a {
  display: block;
  padding: 7px 9px;
  border-radius: 11px;
  color: var(--vc-muted);
  font-size: 12px;
  font-weight: 720;
  text-decoration: none;
}

.vision-check-page .side-nav a:hover {
  background: var(--vc-soft);
  color: var(--vc-green-deep);
}

.vision-check-page .section {
  padding: 38px 0 62px;
  scroll-margin-top: 110px;
}

.vision-check-page .section.soft {
  margin: 7px 0;
  padding: 34px;
  border-radius: var(--vc-radius-feature);
  background: var(--vc-soft);
}

.vision-check-page .section-head {
  max-width: 800px;
  margin-bottom: 26px;
}

.vision-check-page .eyebrow {
  margin-bottom: 9px;
  color: var(--vc-green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.vision-check-page .section-head p,
.vision-check-page .body-copy {
  max-width: 780px;
  color: var(--vc-muted);
  font-size: 16px;
  line-height: 1.64;
}

.vision-check-page .body-copy-lead {
  color: var(--vc-text);
}

/* Scenario cards */
.vision-check-page .scenarios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vision-check-page .card {
  display: flex;
  min-width: 0;
  min-height: 250px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-card);
  background: var(--vc-card);
}

.vision-check-page .card.primary {
  background: var(--vc-green);
  color: #fff;
  box-shadow: var(--vc-shadow);
  transform: translateY(-5px);
}

.vision-check-page .card-tag {
  align-self: flex-start;
  margin-bottom: 23px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--vc-warm-soft);
  color: var(--vc-green-deep);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.vision-check-page .card.primary .card-tag {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.vision-check-page .card p {
  margin-bottom: 17px;
  color: var(--vc-muted);
  font-size: 14px;
  line-height: 1.55;
}

.vision-check-page .card.primary p {
  color: rgba(255, 255, 255, .82);
}

.vision-check-page .card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  font-weight: 820;
  text-decoration: none;
}

.vision-check-page .card-link::after {
  content: "→";
}

/* Editorial feature blocks */
.vision-check-page .editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: stretch;
  gap: 24px;
}

.vision-check-page .editorial.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
}

.vision-check-page .editorial-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid var(--vc-border);
  border-radius: 28px;
  background: var(--vc-card);
}

.vision-check-page .editorial-media {
  min-width: 0;
  min-height: 440px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--vc-shadow);
}

.vision-check-page .editorial-media img {
  height: 100%;
  object-fit: cover;
}

.vision-check-page .question-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 5px 0 20px;
}

.vision-check-page .question-cloud span {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--vc-soft);
  font-size: 12px;
  font-weight: 720;
}

.vision-check-page .related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 18px;
}

.vision-check-page .copy-more {
  margin-top: 12px;
  border-top: 1px solid var(--vc-border);
  padding-top: 11px;
}

.vision-check-page .copy-more > summary {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: var(--vc-green);
  font-size: 13px;
  font-weight: 820;
  list-style: none;
}

.vision-check-page .copy-more > summary::-webkit-details-marker {
  display: none;
}

.vision-check-page .copy-more > summary::after {
  margin-left: 6px;
  content: "+";
}

.vision-check-page .copy-more[open] > summary::after {
  content: "−";
}

.vision-check-page .copy-more > div {
  padding-top: 10px;
}

.vision-check-page .copy-more p:last-child {
  margin-bottom: 0;
}

/* Callout */
.vision-check-page .callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 30px 32px;
  border-radius: 28px;
  background: var(--vc-warm-soft);
}

.vision-check-page .callout p {
  margin: 0;
  color: var(--vc-muted);
}

/* Steps */
.vision-check-page .steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  counter-reset: step;
}

.vision-check-page .step {
  position: relative;
  min-width: 0;
  min-height: 232px;
  padding: 21px;
  border: 1px solid var(--vc-border);
  border-radius: 20px;
  background: var(--vc-card);
}

.vision-check-page .step::before {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 14px;
  background: var(--vc-warm-soft);
  color: var(--vc-green-deep);
  content: "0" counter(step);
  counter-increment: step;
  font-weight: 900;
}

.vision-check-page .step:not(:last-child)::after {
  position: absolute;
  top: 41px;
  right: -13px;
  width: 14px;
  height: 2px;
  background: var(--vc-warm);
  content: "";
}

.vision-check-page .step p {
  margin: 0;
  color: var(--vc-muted);
  font-size: 13px;
  line-height: 1.5;
}

.vision-check-page .center-action {
  display: flex;
  justify-content: center;
  margin-top: 23px;
}

/* Preparation */
.vision-check-page .prep-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.vision-check-page .checklist-box,
.vision-check-page .note-box {
  min-width: 0;
  padding: 27px;
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-card);
}

.vision-check-page .checklist-box {
  background: var(--vc-card);
}

.vision-check-page .note-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--vc-green);
  color: #fff;
}

.vision-check-page .note-box p {
  color: rgba(255, 255, 255, .82);
}

.vision-check-page .bullets {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.vision-check-page .bullets li {
  position: relative;
  padding: 6px 0 6px 25px;
  color: var(--vc-muted);
}

.vision-check-page .bullets li::before {
  position: absolute;
  top: 6px;
  left: 0;
  color: var(--vc-green);
  content: "✓";
  font-weight: 900;
}

.vision-check-page .copy-more-on-green {
  border-top-color: rgba(255, 255, 255, .22);
}

.vision-check-page .copy-more-on-green > summary {
  color: #fff;
}

/* Next actions */
.vision-check-page .options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.vision-check-page .option {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  padding: 16px;
  border: 1px solid var(--vc-border);
  border-radius: 17px;
  background: var(--vc-card);
}

.vision-check-page .option-icon {
  display: grid;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: var(--vc-green-light);
  font-weight: 900;
}

.vision-check-page .option strong {
  font-size: 14px;
  line-height: 1.35;
}

/* Sign-up methods */
.vision-check-page .methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.vision-check-page .method {
  display: grid;
  min-width: 0;
  min-height: 144px;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--vc-border);
  border-radius: 19px;
  background: var(--vc-card);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.vision-check-page .method:hover {
  box-shadow: 0 13px 30px rgba(25, 66, 55, .09);
  transform: translateY(-2px);
}

.vision-check-page .method > span {
  font-size: 25px;
  line-height: 1;
}

.vision-check-page .method h3 {
  font-size: 18px;
}

.vision-check-page .method small {
  display: block;
  color: var(--vc-muted);
  line-height: 1.45;
}

.vision-check-page .method-action {
  display: block;
  margin-top: 9px;
  color: var(--vc-green);
  font-size: 12px;
}

/* Location */
.vision-check-page .location-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  overflow: hidden;
  border-radius: var(--vc-radius-feature);
  background: var(--vc-green-deep);
  color: #fff;
  box-shadow: var(--vc-shadow);
}

.vision-check-page .location-copy {
  padding: 38px;
}

.vision-check-page .location-copy h2 {
  max-width: 580px;
}

.vision-check-page .location-copy p {
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.58;
}

.vision-check-page .location-copy .btn-secondary {
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}

.vision-check-page .location-img {
  min-height: 430px;
}

.vision-check-page .location-img img {
  height: 100%;
  object-fit: cover;
}

.vision-check-page .floor-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .11);
  font-size: 12px;
  font-weight: 820;
}

/* FAQ */
.vision-check-page .faq {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: start;
  gap: 20px;
}

.vision-check-page .faq-list {
  display: grid;
  gap: 8px;
}

.vision-check-page .faq-list details {
  padding: 0 19px;
  border: 1px solid var(--vc-border);
  border-radius: 16px;
  background: var(--vc-card);
}

.vision-check-page .faq-list summary {
  position: relative;
  padding: 17px 31px 17px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.vision-check-page .faq-list summary::-webkit-details-marker {
  display: none;
}

.vision-check-page .faq-list summary::after {
  position: absolute;
  top: 13px;
  right: 0;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--vc-soft);
  content: "+";
  font-size: 18px;
}

.vision-check-page .faq-list details[open] summary::after {
  content: "−";
}

.vision-check-page .faq-list details p {
  margin: 0;
  padding: 0 0 17px;
  color: var(--vc-muted);
  font-size: 14px;
  line-height: 1.55;
}

.vision-check-page .contact-mini {
  position: sticky;
  top: 112px;
  padding: 21px;
  border-radius: 20px;
  background: var(--vc-warm-soft);
}

.vision-check-page .contact-mini p {
  color: var(--vc-muted);
  font-size: 14px;
}

/* Final CTA */
.vision-check-page .final-cta {
  position: relative;
  overflow: hidden;
  margin: 50px auto 26px;
  padding: 48px;
  border-radius: 38px;
  background: var(--vc-green);
  color: #fff;
}

.vision-check-page .final-cta::after {
  position: absolute;
  top: -115px;
  right: -80px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(239, 176, 140, .24);
  content: "";
}

.vision-check-page .final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.vision-check-page .final-cta h2 {
  max-width: 760px;
}

.vision-check-page .final-cta p {
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
}

.vision-check-page .final-cta-lead {
  max-width: 760px;
  font-size: 18px !important;
}

.vision-check-page .final-cta-more {
  max-width: 780px;
}

.vision-check-page .final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 21px;
}

.vision-check-page .final-cta .btn-primary {
  background: #fff;
  color: var(--vc-green-deep);
}

.vision-check-page .final-cta .btn-secondary {
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}

.vision-check-page .vc-hidden-heading {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/*
 * Optional standalone-preview shell. These selectors are active only when the
 * renderer itself emits <body class="vision-check-shell">. They do not touch
 * the existing project shell when includeShell=false.
 */
.vision-check-shell {
  margin: 0;
  background: #f6f3ed;
  color: #183e36;
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
}

.vision-check-shell *,
.vision-check-shell *::before,
.vision-check-shell *::after {
  box-sizing: border-box;
}

.vision-check-shell > .utility {
  background: #123f35;
  color: #fff;
  font-size: 13px;
}

.vision-check-shell > .utility .container,
.vision-check-shell > .site-header .container,
.vision-check-shell > .footer .container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.vision-check-shell .utility-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.vision-check-shell .utility-left,
.vision-check-shell .utility-right {
  display: flex;
  gap: 18px;
}

.vision-check-shell .site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(24, 62, 54, .14);
  background: rgba(246, 243, 237, .94);
  backdrop-filter: blur(16px);
}

.vision-check-shell .nav {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.vision-check-shell .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.vision-check-shell .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1f5b4d;
}

.vision-check-shell .nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
}

.vision-check-shell .nav-links a {
  color: inherit;
  text-decoration: none;
}

.vision-check-shell .header-actions {
  display: flex;
  gap: 9px;
}

.vision-check-shell .menu-btn {
  display: none;
}

.vision-check-shell .footer {
  padding: 30px 0 70px;
  border-top: 1px solid rgba(24, 62, 54, .14);
  color: #68746f;
  font-size: 13px;
}

.vision-check-shell .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 36px;
}

.vision-check-shell .mobile-bar {
  display: none;
}

/* Large tablet / narrow desktop */
@media (max-width: 1180px) {
  .vision-check-page .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
    gap: 34px;
  }

  .vision-check-page .content-wrap {
    grid-template-columns: 1fr;
  }

  .vision-check-page .side-nav {
    display: none;
  }

  .vision-check-page .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vision-check-page .step:nth-child(2)::after {
    display: none;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .vision-check-page .container {
    width: min(var(--vc-container), calc(100% - 36px));
  }

  .vision-check-page .hero-grid {
    grid-template-columns: 1fr;
  }

  .vision-check-page .hero-media {
    max-width: 680px;
  }

  .vision-check-page .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vision-check-page .editorial,
  .vision-check-page .editorial.reverse {
    grid-template-columns: 1fr;
  }

  .vision-check-page .editorial.reverse .editorial-media {
    order: -1;
  }

  .vision-check-page .editorial-media {
    min-height: 380px;
  }

  .vision-check-page .scenarios {
    grid-template-columns: 1fr;
  }

  .vision-check-page .card.primary {
    transform: none;
  }

  .vision-check-page .location-card {
    grid-template-columns: 1fr;
  }

  .vision-check-page .location-img {
    min-height: 340px;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .vision-check-page .container {
    width: min(100% - 28px, var(--vc-container));
  }

  .vision-check-page {
    font-size: 15px;
  }

  .vision-check-page h1 {
    margin-top: 11px;
    font-size: 43px;
  }

  .vision-check-page h2 {
    font-size: 33px;
  }

  .vision-check-page h3 {
    font-size: 20px;
  }

  .vision-check-page .breadcrumbs {
    padding: 16px 0 9px;
  }

  .vision-check-page .vc-hero-section {
    padding-bottom: 31px;
  }

  .vision-check-page .hero-lead {
    font-size: 21px;
  }

  .vision-check-page .hero-copy {
    font-size: 15px;
  }

  .vision-check-page .hero-actions {
    display: grid;
  }

  .vision-check-page .hero-actions .btn {
    width: 100%;
  }

  .vision-check-page .location-inline {
    display: grid;
  }

  .vision-check-page .hero-photo {
    height: 400px;
    border-radius: 40px 17px 40px 17px;
  }

  .vision-check-page .zero-badge {
    bottom: 13px;
    left: 13px;
  }

  .vision-check-page .vc-facts-section {
    padding-bottom: 42px;
  }

  .vision-check-page .fact-grid {
    gap: 9px;
  }

  .vision-check-page .fact {
    min-height: 124px;
    padding: 16px;
  }

  .vision-check-page .fact > strong {
    min-height: auto;
    font-size: 16px;
  }

  .vision-check-page .section {
    padding: 30px 0 45px;
  }

  .vision-check-page .section.soft {
    margin: 0;
    padding: 25px 17px;
    border-radius: 25px;
  }

  .vision-check-page .section-head p,
  .vision-check-page .body-copy {
    font-size: 15px;
  }

  .vision-check-page .editorial-copy {
    padding: 24px;
  }

  .vision-check-page .editorial-media {
    min-height: 290px;
  }

  .vision-check-page .question-cloud {
    gap: 7px;
  }

  .vision-check-page .callout {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .vision-check-page .steps {
    grid-template-columns: 1fr;
  }

  .vision-check-page .step {
    display: grid;
    min-height: auto;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 14px;
  }

  .vision-check-page .step::before {
    margin: 0;
  }

  .vision-check-page .step::after {
    display: none !important;
  }

  .vision-check-page .prep-grid,
  .vision-check-page .options,
  .vision-check-page .methods,
  .vision-check-page .faq {
    grid-template-columns: 1fr;
  }

  .vision-check-page .option {
    padding: 14px;
  }

  .vision-check-page .method {
    min-height: 126px;
  }

  .vision-check-page .location-copy {
    padding: 27px;
  }

  .vision-check-page .contact-mini {
    position: static;
  }

  .vision-check-page .final-cta {
    padding: 33px 24px;
    border-radius: 28px;
  }

  .vision-check-page .final-actions {
    display: grid;
  }

  .vision-check-page .final-actions .btn {
    width: 100%;
  }

  .vision-check-shell > .utility,
  .vision-check-shell .nav-links,
  .vision-check-shell .header-actions .btn-primary,
  .vision-check-shell .header-actions .btn-secondary {
    display: none;
  }

  .vision-check-shell .nav {
    min-height: 64px;
  }

  .vision-check-shell .menu-btn {
    display: inline-flex;
  }

  .vision-check-shell .footer-grid {
    grid-template-columns: 1fr;
  }

  .vision-check-shell .mobile-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 52px;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(24, 62, 54, .14);
    border-radius: 19px;
    background: rgba(246, 243, 237, .94);
    box-shadow: 0 16px 40px rgba(24, 62, 54, .18);
    backdrop-filter: blur(18px);
  }
}

@media (max-width: 420px) {
  .vision-check-page h1 {
    font-size: 39px;
  }

  .vision-check-page .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .vision-check-page *,
  .vision-check-shell * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
