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

:root {
  color-scheme: light;
  --blue: #098ff2;
  --blue-dark: #003651;
  --blue-deep: #001a23;
  --cta-blue: #005ea8;
  --cta-blue-hover: #00477f;
  --ink: #000000;
  --muted: #404040;
  --line: #d8d8d8;
  --paper: #ffffff;
  --surface: #f7f7f7;
  --pink: #ff8d91;
  font-family: "Barlow", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body {
  font-size: 18px;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.utility-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 53px;
  background: var(--blue);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.utility-inner {
  width: 1180px;
  max-width: calc(100% - 40px);
  height: 53px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.phone-link {
  position: relative;
  min-width: 210px;
  padding-left: 34px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.phone-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.phone-link::after {
  content: "\260E";
  position: absolute;
  left: 6px;
  top: 50%;
  color: var(--blue);
  font-size: 15px;
  transform: translateY(-52%);
}

.utility-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 34px;
  font-size: 17px;
}

.utility-nav a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.utility-inner::after {
  content: "";
  width: 86px;
  height: 26px;
  background:
    url("/assets/wix/facebook.png") left center / 26px 26px no-repeat,
    url("/assets/wix/instagram.png") 36px center / 26px 26px no-repeat;
}

.site-header {
  position: relative;
  top: auto;
  z-index: 10;
  height: 154px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.24);
}

.site-header {
  display: grid;
  grid-template-columns: 152px 1fr 180px;
  align-items: center;
  gap: 28px;
  width: 1232px;
  max-width: calc(100% - 88px);
  margin: 0 auto;
}

.site-header::before {
  content: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 152px;
  height: 144px;
}

.brand img {
  display: block;
  width: 152px;
  height: 144px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.main-nav a {
  color: #000;
  text-decoration: none;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--blue);
}

.nav-group {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
}

.nav-menu {
  position: absolute;
  left: 0;
  top: 48px;
  min-width: 230px;
  padding: 12px 0;
  background: #fff;
  border: 1px solid #d4d4d4;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 50px;
  border-radius: 8px;
  background: var(--cta-blue);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 94, 168, 0.26);
}

.header-cta:hover {
  background: var(--cta-blue-hover);
}

.header-cta::after {
  content: ">";
  margin-left: 12px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 143, 242, 0.42), rgba(9, 143, 242, 0.34)),
    url("/assets/wix/live-hero.png") center / cover no-repeat;
}

.hero-split {
  height: 750px;
}

.compact-hero,
.legal-hero {
  min-height: 440px;
}

.hero-inner {
  width: 1080px;
  max-width: calc(100% - 80px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 580px 430px;
  align-items: center;
  gap: 70px;
}

.compact-hero .hero-inner,
.legal-hero .hero-copy {
  display: block;
  height: auto;
  padding: 92px 0;
}

.compact-hero .hero-copy,
.legal-hero .hero-copy {
  width: 1080px;
  max-width: calc(100% - 80px);
  margin: 0 auto;
}

.hero-copy {
  color: #fff;
  padding-left: 16px;
}

.hero-copy h1,
h1,
h2 {
  margin: 0;
  font-family: "Bitter", Georgia, "Times New Roman", serif;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 610px;
  color: #fff;
  font-size: 46px;
  line-height: 1.2;
}

.hero-split .hero-copy > p:not(.hero-kicker) {
  display: none;
}

.hero-kicker {
  margin: 22px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 60px;
  padding: 0 26px;
  border-radius: 8px;
  border: 0;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.button-light {
  background: #fff;
  color: #000;
  border: 2px solid #fff;
}

.button-outline {
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
}

.button-blue {
  background: var(--cta-blue);
  color: #fff;
}

.button-dark {
  background: #000;
  color: #fff;
}

.button-outline-dark {
  border: 2px solid #111;
  background: #fff;
  color: #111;
}

.button:hover,
.button:focus-visible,
.header-cta:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible,
.header-cta:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
}

.hero-form {
  width: 430px;
  border-radius: 8px;
  background: rgba(9, 143, 242, 0.82);
  margin-left: 22px;
}

.offer-form {
  width: 100%;
  padding: 26px 30px 24px;
  color: #fff;
}

.offer-form h2 {
  color: #fff;
  font-size: 25px;
  line-height: 1.2;
  text-align: center;
}

.offer-form > p {
  margin: 8px 0 18px;
  font-size: 16px;
  line-height: 1.35;
  text-align: center;
}

.form-grid {
  display: grid;
  gap: 8px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 5px;
  background: var(--blue);
  color: #fff;
  font: 500 14px/1 "Barlow", Arial, sans-serif;
  padding: 0 14px;
  outline: none;
}

.form-grid textarea {
  resize: vertical;
  padding-top: 12px;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #fff;
  opacity: 1;
}

.sms-consent {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: start;
  margin: 8px 0 6px;
  font-size: 9px;
  line-height: 1.15;
}

.sms-consent input {
  width: 14px;
  height: 14px;
  margin: 1px 0 0;
  accent-color: #000;
}

.sms-consent a {
  color: #fff;
  font-weight: 700;
}

.privacy-note {
  margin: 8px 0 18px !important;
  font-size: 11px !important;
  line-height: 1.25 !important;
  text-align: left !important;
}

.offer-form .button {
  width: 100%;
  height: 45px;
  background: #000;
  color: #fff;
  font-size: 14px;
}

.form-status {
  min-height: 18px;
  margin: 8px 0 0 !important;
  font-size: 13px !important;
}

.benefit-strip {
  position: relative;
  z-index: 3;
  height: 212px;
  margin-top: -62px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  padding: 0 12%;
  background: #fff;
}

.benefit-strip div {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.benefit-strip img {
  width: 124px;
  height: 124px;
  object-fit: contain;
}

.benefit-strip strong {
  max-width: 210px;
  font-size: 25px;
  line-height: 1.15;
  text-align: center;
}

.section {
  width: 1120px;
  max-width: calc(100% - 80px);
  margin: 0 auto;
  padding: 88px 0 96px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #303030;
  font-size: 18px;
  font-weight: 500;
}

.section-label.left {
  justify-content: flex-start;
}

.section-label span {
  width: 42px;
  height: 2px;
  background: var(--blue);
}

.section h2,
h2 {
  color: var(--blue);
  font-size: 44px;
  line-height: 1.14;
  text-align: center;
}

.section-label.left + h2,
.split-section h2,
.article-body h2 {
  color: #000;
  text-align: left;
}

.section-intro,
.updated {
  max-width: 760px;
  margin: 20px auto 0;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.28;
  text-align: center;
}

.split-section {
  display: grid;
  grid-template-columns: 588px 1fr;
  gap: 64px;
  align-items: center;
}

.who-section {
  padding-top: 80px;
  padding-bottom: 110px;
}

.image-stack img {
  display: block;
  width: 588px;
  max-width: 100%;
  height: auto;
  border-radius: 24px;
}

.split-section p,
.article-body p {
  margin: 20px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.42;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button-row.centered {
  justify-content: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 52px;
}

.process-grid article {
  text-align: center;
}

.process-grid img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 22px;
}

.process-grid h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}

.process-grid p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.2;
}

.video-section {
  min-height: 1280px;
  padding: 34px 20px 96px;
  background: #fff;
  text-align: center;
}

.video-section > p:first-child {
  margin: 0 0 330px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 800;
}

.video-section img {
  display: block;
  width: 817px;
  max-width: calc(100% - 40px);
  height: auto;
  margin: 0 auto 30px;
}

.wide-button {
  width: 400px;
  max-width: calc(100% - 40px);
  height: 50px;
}

.video-section h2 {
  margin-top: 28px;
  color: #000;
  font-size: 33px;
}

.seller-tabs {
  padding: 82px 20px 84px;
  background: linear-gradient(110deg, #001923 0%, #005a9d 55%, #0995ff 100%);
  color: #fff;
  text-align: center;
}

.seller-tabs .section-label {
  color: #fff;
}

.seller-tabs .section-label span {
  background: #fff;
}

.seller-tabs h2 {
  margin-top: 18px;
  color: #fff;
  font-size: 42px;
  line-height: 1.15;
}

.tab-row {
  width: 982px;
  max-width: calc(100% - 40px);
  margin: 60px auto 13px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.tab-row a {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.tab-row a.active {
  background: transparent;
  color: #fff;
}

.tab-panel {
  width: 982px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  padding: 26px 42px;
  display: grid;
  grid-template-columns: 356px 1fr;
  gap: 48px;
  align-items: center;
  border-radius: 28px;
  background: #fff;
  color: #000;
  text-align: left;
}

.tab-panel img {
  display: block;
  width: 356px;
  height: 360px;
  border-radius: 10px;
  object-fit: cover;
}

.tab-panel h3 {
  margin: 0;
  font-family: "Bitter", Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.15;
}

.tab-panel p {
  margin: 20px 0 0;
  font-size: 19px;
  line-height: 1.32;
}

.request-button {
  margin-top: 80px;
  width: 220px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
  gap: 22px;
  margin-top: 46px;
}

.service-card,
.team-grid article,
.quote-panel {
  display: block;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card h3,
.team-grid h3,
.quote-panel h3,
.article-body h3 {
  margin: 0;
  font-family: "Bitter", Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.15;
}

.service-card p,
.team-grid p,
.quote-panel p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.38;
}

.service-card span,
.text-link {
  display: inline-block;
  margin-top: 18px;
  color: #000;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.muted-section {
  width: 100%;
  max-width: none;
  padding-left: max(40px, calc((100vw - 1120px) / 2));
  padding-right: max(40px, calc((100vw - 1120px) / 2));
  background: #f6f6f6;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 54px max(40px, calc((100vw - 1120px) / 2));
  background: var(--blue);
  color: #fff;
}

.cta-band h2 {
  color: #fff;
  font-size: 36px;
  text-align: left;
}

.cta-band p {
  max-width: 780px;
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.35;
}

.article-layout,
.contact-section {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 64px;
  align-items: start;
}

.article-body,
.contact-copy {
  min-width: 0;
}

.article-body .lead {
  font-size: 21px;
}

.article-body h3 {
  margin-top: 34px;
}

.side-form,
.contact-section .offer-form {
  border-radius: 8px;
  background: rgba(9, 143, 242, 0.92);
}

.side-form .offer-form h2,
.contact-section .offer-form h2 {
  color: #fff;
  font-size: 25px;
}

.download-row,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-methods a {
  display: inline-flex;
  height: 50px;
  align-items: center;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
}

.legal-section {
  width: min(950px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 86px;
  text-align: center;
}

.legal-section h2 {
  text-align: center;
}

.policy-body {
  position: relative;
  max-width: 830px;
  margin: 34px auto 0;
  padding: 34px 38px 34px 48px;
  border-left: 10px solid var(--blue);
  border-radius: 8px;
  background: var(--surface);
  text-align: left;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.policy-body p {
  margin: 0 0 18px;
  color: #252525;
  font-weight: 600;
  line-height: 1.55;
}

.policy-body h3 {
  margin: 0 0 16px;
  color: var(--blue);
  font-family: "Bitter", Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

.policy-body p + h3 {
  margin-top: 30px;
}

.policy-body a {
  color: #036db7;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.policy-link {
  display: grid;
  gap: 10px;
  padding: 30px;
  border-radius: 8px;
  background: var(--surface);
  border-top: 8px solid var(--blue);
  color: var(--ink);
  text-align: left;
  text-decoration: none;
}

.policy-link strong {
  color: #000;
  font-size: 1.25rem;
}

.policy-link span {
  color: var(--muted);
  line-height: 1.5;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 34px;
}

.site-footer {
  padding: 54px 20px 112px;
  background: #000;
  color: #fff;
  text-align: center;
}

.persistent-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 2147483000;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: min(520px, calc(100% - 32px));
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
}

.persistent-cta .button {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 18px;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.persistent-cta .button-light {
  border-color: #111;
}

.persistent-cta .button-blue {
  border: 2px solid var(--cta-blue);
}

.footer-inner {
  width: 980px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
  text-align: left;
}

.site-footer img {
  width: 118px;
  height: auto;
  object-fit: contain;
}

.site-footer p {
  margin: 14px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.copyright {
  margin: 32px auto 0 !important;
  text-align: center;
}

@media (max-width: 1100px) {
  .site-header {
    max-width: calc(100% - 32px);
    grid-template-columns: 120px 1fr auto;
  }

  .brand,
  .brand img {
    width: 120px;
    height: auto;
  }

  .main-nav {
    gap: 20px;
    font-size: 14px;
  }

  .hero-inner,
  .split-section,
  .article-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-split {
    height: auto;
    min-height: 750px;
    padding: 80px 0 120px;
  }

  .hero-form {
    width: min(430px, 100%);
  }

  .benefit-strip {
    padding: 0 5%;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .utility-bar {
    height: 44px;
  }

  .utility-inner {
    height: 44px;
    justify-content: center;
  }

  .utility-nav,
  .utility-inner::after {
    display: none;
  }

  .phone-link {
    min-width: 0;
  }

  .site-header,
  .site-header::before {
    top: 44px;
    height: 94px;
  }

  .site-header {
    max-width: calc(100% - 24px);
    grid-template-columns: 84px 1fr;
    gap: 10px;
  }

  .brand,
  .brand img {
    width: 84px;
    height: auto;
  }

  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    justify-self: end;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 8px;
    background: var(--blue);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
  }

  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 138px;
    display: none;
    max-height: calc(100vh - 138px);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  }

  .nav-open .main-nav {
    display: flex;
  }

  .nav-group {
    display: block;
    min-height: auto;
  }

  .main-nav > a,
  .nav-group > a {
    display: block;
    padding: 12px 0;
  }

  .nav-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border: 0;
    box-shadow: none;
    padding: 0 0 8px 14px;
  }

  .header-cta {
    display: none;
  }

  .hero-inner,
  .compact-hero .hero-copy,
  .legal-hero .hero-copy,
  .section,
  .tab-row,
  .tab-panel {
    width: calc(100% - 28px);
    max-width: none;
  }

  .hero-split {
    padding: 48px 0 100px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-actions,
  .button-row,
  .download-row,
  .contact-methods {
    flex-direction: column;
  }

  .button,
  .wide-button {
    width: 100%;
  }

  .persistent-cta {
    left: 12px;
    right: 12px;
    bottom: 10px;
    width: auto;
    padding: 0;
    gap: 8px;
    transform: none;
  }

  .persistent-cta .button {
    height: 46px;
    padding: 0 10px;
    font-size: 14px;
  }

  .benefit-strip {
    height: auto;
    margin-top: -48px;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 12px;
    padding: 0 18px 48px;
  }

  .benefit-strip img {
    width: 96px;
    height: 96px;
  }

  .benefit-strip strong {
    font-size: 20px;
  }

  .section h2,
  h2,
  .seller-tabs h2 {
    font-size: 32px;
  }

  .split-section {
    gap: 34px;
  }

  .process-grid,
  .card-grid,
  .team-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .video-section {
    min-height: 760px;
  }

  .video-section > p:first-child {
    margin-bottom: 120px;
  }

  .tab-row {
    grid-template-columns: 1fr;
  }

  .tab-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .tab-panel img {
    width: 100%;
    height: auto;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 42px 22px;
  }

  .cta-band h2 {
    text-align: left;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }
}
