:root {
  --color-white: #fff;
  --color-blue: #0057ff;
  --color-yellow: #ffc400;
  --color-orange: #ff911a;
  --color-orange-deep: #f15b2a;
  --color-text: #101828;
  --page-background: var(--color-white);
  --page-shell-background: #F8FAFC;
  --header-cta-background: #248fe9;
  --header-cta-color: #fff;
  --site-footer-background: #204327;
  --container: 1488px;
  --header-height: 56px;
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/barlow/barlow-v13-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/barlow/barlow-v13-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/barlow/barlow-v13-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/barlow/barlow-v13-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/barlow/barlow-v13-latin-800.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/barlow/barlow-v13-latin-900.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/barlow/barlow-v13-latin-italic.woff2") format("woff2");
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: "Barlow", Arial, sans-serif;
  color: #fff;
  background: var(--page-background, var(--color-white, #fff));
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: 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;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn:not(:disabled):hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.btn-orange {
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange-deep) 100%);
  color: #fff;
}

.btn-blue {
  background: linear-gradient(90deg, #1b76ff 0%, #1593f7 100%);
  color: #fff;
}

.section-title {
  width: 100%;
  text-align: center;
  font-weight: 700;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
}

.landing-page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: visible;
  overflow-x: clip;
}

.container {
  width: min(100% - 32px, 100%);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    width: min(100% - 80px, 1180px);
  }
}
@media (min-width: 1440px) {
  .container {
    width: min(100% - 48px, var(--container));
  }
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
  height: var(--header-current-height, var(--header-height));
  background-color: rgba(255, 255, 255, 0);
  transition: height 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease, transform 0.25s ease;
}
.site-header.is-scrolled {
  --header-current-height: 48px;
  --header-cta-current-background: var(--header-cta-scrolled-background, var(--header-cta-background, #248fe9));
  --header-cta-current-color: var(--header-cta-scrolled-color, var(--header-cta-color, #fff));
  background-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
@media (min-width: 1200px) {
  .site-header.is-scrolled {
    --header-current-height: 64px;
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  position: relative;
  display: block;
  width: 64px;
  height: 24px;
  transform-origin: left center;
  transition: transform 0.25s ease;
}
@media (min-width: 768px) {
  .site-logo {
    width: 94px;
    height: 34px;
  }
}
@media (min-width: 1200px) {
  .site-logo {
    width: 111px;
    height: 40px;
  }
}
.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-logo--swap .site-logo-img {
  position: absolute;
  inset: 0;
  transition: opacity 0.22s ease;
}
.site-logo--swap .site-logo-img--default {
  opacity: 1;
}
.site-logo--swap .site-logo-img--scrolled {
  opacity: 0;
}

.site-header.is-scrolled .site-logo--swap .site-logo-img--default {
  opacity: 0;
}
.site-header.is-scrolled .site-logo--swap .site-logo-img--scrolled {
  opacity: 1;
}

.site-header.is-scrolled .site-logo {
  transform: scale(0.88);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 32px;
  padding: 8px 13px;
  border-radius: 8px;
  background: var(--header-cta-current-background, var(--header-cta-background, #248fe9));
  color: var(--header-cta-current-color, var(--header-cta-color, #fff));
  font-size: 12px;
  font-weight: 700;
  transform-origin: right center;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, min-height 0.25s ease, padding 0.25s ease, box-shadow 0.2s ease;
}
@media (min-width: 768px) {
  .header-cta {
    min-width: 104px;
    min-height: 44px;
    padding: 12px 18px;
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .header-cta {
    min-width: 112px;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 16px;
  }
}

.site-header.is-scrolled .header-cta {
  transform: scale(0.92);
}

@media (min-width: 768px) {
  :root {
    --header-height: 56px;
  }
}
@media (min-width: 1200px) {
  :root {
    --header-height: 80px;
  }
}

@media (min-width: 1200px) {
  .footer-copy-full {
    display: inline;
  }
}

@media (min-width: 1200px) {
  .footer-links-full {
    display: inline;
  }
}

@media (min-width: 1200px) {
  .footer-copy-compact {
    display: none;
  }
}

@media (min-width: 1200px) {
  .footer-links-compact {
    display: none;
  }
}

.site-footer {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  background: var(--site-footer-background, #204327);
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer {
    min-height: 64px;
  }
}
@media (min-width: 1200px) {
  .site-footer {
    height: 33px;
    min-height: 33px;
    padding: 2px 0;
    text-align: left;
  }
}
.site-footer .site-footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.site-footer p, .site-footer-links {
  width: 100%;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}
.site-footer a:hover {
  text-decoration: underline;
  color: #ffd24a;
}

.footer-copy-compact,
.footer-links-compact {
  display: inline;
}

@media (min-width: 1200px) {
  .site-footer .site-footer-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}

@media (min-width: 1200px) {
  .site-footer p {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    white-space: nowrap;
  }
}

@media (min-width: 1200px) {
  .site-footer-links {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    white-space: nowrap;
    text-align: right;
  }
}

.govt-phone-support-page {
  background-color: var(--page-shell-background, var(--color-white, #fff));
}

.btn {
  min-height: 48px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .btn {
    min-height: 58px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .btn {
    min-height: 64px;
    border-radius: 16px;
    font-size: 24px;
  }
}

.hero {
  --hero-text: #020203;
  --hero-body: #464749;
  --hero-primary: #1d72ba;
  --hero-placeholder: #9d9fa4;
  --hero-field-border: #c4c5c8;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--hero-text);
}
.hero > .container {
  position: relative;
  z-index: 2;
  height: 100%;
}
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-background picture,
.hero-background img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-background img {
  object-fit: cover;
  object-position: center top;
}
.hero-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 0 24px;
}
@media (min-width: 768px) {
  .hero-box {
    gap: 30px;
    width: calc(100% - 16px);
    max-width: none;
    padding: 24px 0 32px;
  }
}
@media (min-width: 1200px) {
  .hero-box {
    gap: 0;
    width: min(100% - 32px, 1256px);
    padding: 2px 0 32px;
  }
}
.hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-main {
    gap: 24px;
  }
}
@media (min-width: 1200px) {
  .hero-main {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    width: 1131px;
    max-width: 100%;
    height: 518px;
  }
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  color: var(--hero-text);
  text-align: center;
}
@media (min-width: 1200px) {
  .hero-content {
    flex: 0 0 491px;
    align-items: flex-start;
    text-align: left;
  }
}
.hero-eyebrow {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .hero-eyebrow {
    display: flex;
    justify-content: center;
    font-size: 20px;
    white-space: nowrap;
  }
}
@media (min-width: 1200px) {
  .hero-eyebrow {
    display: block;
    font-size: 32px;
    line-height: 1.15;
    white-space: normal;
  }
}
.hero-eyebrow-extra {
  display: block;
}
@media (min-width: 768px) {
  .hero-eyebrow-extra {
    display: inline;
    margin-left: 0.25em;
  }
}
@media (min-width: 1200px) {
  .hero-eyebrow-extra {
    display: block;
    margin-left: 0;
  }
}
.hero-title {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--hero-primary);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .hero-title {
    flex-direction: row;
    justify-content: center;
    gap: 0.25em;
    font-size: 48px;
    font-weight: 900;
  }
}
@media (min-width: 1200px) {
  .hero-title {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    width: 606px;
    max-width: none;
    font-size: 72px;
  }
}
.hero-subtitle {
  width: 100%;
  margin-top: 4px;
  color: var(--hero-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .hero-subtitle {
    font-size: 20px;
  }
}
.hero-product {
  width: min(100%, 312px);
  overflow: hidden;
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero-product {
    width: min(100%, 437px);
  }
}
@media (min-width: 1200px) {
  .hero-product {
    flex: 0 0 628px;
    width: 628px;
  }
}
.hero-product img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
.hero-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 24px rgba(0, 147, 255, 0.1);
}
@media (min-width: 768px) {
  .hero-form {
    gap: 10px;
    padding: 24px;
    box-shadow: 0 24px 32px rgba(0, 147, 255, 0.1);
  }
}
@media (min-width: 1200px) {
  .hero-form {
    gap: 20px;
    padding: 16px 18px;
    box-shadow: 0 24px 32px rgba(0, 147, 255, 0.1);
  }
}
.hero-form-title {
  width: 100%;
  color: var(--hero-text);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .hero-form-title {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .hero-form-title {
    font-size: 32px;
  }
}
.hero-form-body {
  width: 100%;
}
.hero-form-body .eligibility-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-form-body .eligibility-form {
    flex-flow: row wrap;
    column-gap: 16px;
    row-gap: 16px;
  }
}
@media (min-width: 1200px) {
  .hero-form-body .eligibility-form {
    flex-flow: row nowrap;
    align-items: flex-start;
    gap: 20px;
  }
}
.hero-form-body .field {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
}
@media (min-width: 768px) {
  .hero-form-body .field {
    flex: 1 1 calc(50% - 8px);
  }
}
@media (min-width: 1200px) {
  .hero-form-body .field {
    flex: 1;
  }
}
.hero-form-body .field input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--hero-field-border);
  border-radius: 8px;
  outline: none;
  background: #fff;
  color: #292a2b;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 768px) {
  .hero-form-body .field input {
    height: 56px;
    padding: 0 18px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .hero-form-body .field input {
    height: 64px;
    padding: 0 20px;
    border-radius: 16px;
    font-size: 20px;
  }
}
.hero-form-body .field input::placeholder {
  color: var(--hero-placeholder);
  opacity: 1;
}
.hero-form-body .field input:focus {
  border-color: #248fe9;
  box-shadow: 0 0 0 4px rgba(36, 143, 233, 0.16);
}
.hero-form-body .email-errors {
  margin-top: 4px;
  color: #d92d20;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}
.hero-form-body .email-errors:empty {
  display: none;
}
.hero-form-body .form-submit {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(239, 149, 55, 0.1), 0 2px 2px rgba(239, 149, 55, 0.12), 0 3px 1px -2px rgba(239, 149, 55, 0.2);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .hero-form-body .form-submit {
    flex: 0 0 100%;
    height: 56px;
    padding: 0 24px;
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .hero-form-body .form-submit {
    flex: 1;
    width: auto;
    height: 64px;
    padding: 0 32px;
    border-radius: 16px;
    font-size: 24px;
  }
}
.hero-form-body .form-submit:not(:disabled):hover {
  box-shadow: 0 12px 28px rgba(241, 91, 42, 0.3);
}
.hero-microcopy {
  width: 100%;
  color: #808186;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-microcopy {
    font-size: 10px;
  }
}
@media (min-width: 1200px) {
  .hero-microcopy {
    font-size: 18px;
  }
}
.hero-microcopy a {
  color: inherit;
  text-decoration: underline;
}

.benefits {
  background-color: #DFF0FF;
  padding: 24px 0;
  position: relative;
}
@media (min-width: 768px) {
  .benefits {
    padding: 32px 0;
  }
}
@media (min-width: 1200px) {
  .benefits {
    padding: 64px 0;
  }
}

.benefits-rainbow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 1920px);
}
.benefits-rainbow img {
  width: 100%;
}

.benefits-title {
  text-align: center;
  color: #0E395D;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .benefits-title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
@media (min-width: 1200px) {
  .benefits-title {
    font-size: 64px;
    margin-bottom: 64px;
  }
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .benefits-grid {
    flex-direction: row;
    gap: 4px;
  }
}

.benefits-col {
  flex: 1;
}
.benefits-col:last-child .benefits-card {
  border-radius: 0 0 12px 12px;
}
@media (min-width: 768px) {
  .benefits-col:last-child .benefits-card {
    border-radius: 40px 24px 24px 40px;
  }
}
@media (min-width: 1200px) {
  .benefits-col:last-child .benefits-card {
    border-radius: 64px 24px 24px 64px;
  }
}

.benefits-card {
  border-radius: 12px 12px 0 0;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
@media (min-width: 768px) {
  .benefits-card {
    border-radius: 24px 40px 40px 24px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 4px 40px 0 rgba(0, 64, 118, 0.15);
  }
}
@media (min-width: 1200px) {
  .benefits-card {
    border-radius: 24px 64px 64px 24px;
    padding: 40px;
  }
}

.benefits-card-header .p1 {
  font-size: 24px;
  color: #EC7F23;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .benefits-card-header .p1 {
    font-size: 40px;
  }
}
.benefits-card-header .p2 {
  font-size: 18px;
  color: #020203;
  font-weight: 700;
}
@media (min-width: 768px) {
  .benefits-card-header .p2 {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .benefits-card-header .p2 {
    font-size: 40px;
  }
}
.benefits-card-header .p3 {
  color: #464749;
  font-size: 13px;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .benefits-card-header .p3 {
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  .benefits-card-header .p3 {
    font-size: 20px;
  }
}

.benefits-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1200px) {
  .benefits-card-body {
    gap: 24px;
  }
}

.benefits-card-photo {
  width: min(100%, 350px);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .benefits-card-photo {
    width: min(100%, 380px);
  }
}
@media (min-width: 1200px) {
  .benefits-card-photo {
    width: min(100%, 450px);
  }
}
.benefits-card-photo img {
  width: 100%;
}

.benefits-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  list-style: none;
}
@media (min-width: 1200px) {
  .benefits-card-list {
    flex-direction: row;
    gap: 20px;
  }
}
.benefits-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1200px) {
  .benefits-card-list li {
    gap: 20px;
    flex-direction: column;
    flex: 1;
  }
}
.benefits-card-list li .p1 {
  font-size: 14px;
  font-weight: 700;
  color: #0E395D;
}
@media (min-width: 768px) {
  .benefits-card-list li .p1 {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .benefits-card-list li .p1 {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .benefits-card-list li .p1 .span1,
  .benefits-card-list li .p1 .span2 {
    display: block;
  }
}
.benefits-card-list li .p2 {
  font-size: 12px;
  color: #464749;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .benefits-card-list li .p2 {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .benefits-card-list li .p2 {
    font-size: 16px;
  }
}
.benefits-card-list .benefits-card-list-icon {
  background: linear-gradient(180deg, #248FE9 50%, #1D72BA 131.5%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .benefits-card-list .benefits-card-list-icon {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1200px) {
  .benefits-card-list .benefits-card-list-icon {
    width: 64px;
    height: 64px;
  }
}
.benefits-card-list .benefits-card-list-icon img {
  width: 24px;
  height: 24px;
}
@media (min-width: 1200px) {
  .benefits-card-list .benefits-card-list-icon img {
    width: 32px;
    height: 32px;
  }
}
.benefits-card-list .benefits-card-list-cont {
  flex: 1;
  text-align: left;
}
@media (min-width: 1200px) {
  .benefits-card-list .benefits-card-list-cont {
    text-align: center;
  }
}

.benefits-btn {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .benefits-btn {
    margin-top: 32px;
  }
}
@media (min-width: 1200px) {
  .benefits-btn {
    margin-top: 40px;
  }
}
.benefits-btn .btn {
  width: min(100%, 360px);
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) {
  .benefits-btn .btn {
    width: min(100%, 440px);
  }
}

.trust-banner {
  background-color: #1D72BA;
  padding: 24px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .trust-banner {
    padding: 32px 0;
  }
}
@media (min-width: 1200px) {
  .trust-banner {
    padding: 64px 0;
  }
}
.trust-banner .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .trust-banner .container {
    gap: 20px;
  }
}
.trust-banner h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .trust-banner h2 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .trust-banner h2 {
    font-size: 40px;
  }
}
.trust-banner p {
  color: #fff;
  font-size: 14px;
}
@media (min-width: 768px) {
  .trust-banner p {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .trust-banner p {
    font-size: 20px;
    width: min(100%, 1200px);
    margin: 0 auto;
  }
}
.trust-banner .trust-banner-btn .btn {
  width: min(100%, 360px);
  background: #FEF5E8;
  color: #C67A17;
}
@media (min-width: 1200px) {
  .trust-banner .trust-banner-btn .btn {
    width: min(100%, 440px);
  }
}

.qualifying-programs {
  background-color: #DFF0FF;
  padding: 32px 0;
}
@media (min-width: 768px) {
  .qualifying-programs {
    padding: 40px 0;
  }
}
@media (min-width: 1200px) {
  .qualifying-programs {
    padding: 64px 0;
  }
}
.qualifying-programs-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .qualifying-programs-container {
    width: min(100% - 48px, 720px);
  }
}
@media (min-width: 768px) {
  .qualifying-programs-container {
    gap: 32px;
  }
}
@media (min-width: 1200px) {
  .qualifying-programs-container {
    display: grid;
    grid-template-columns: 54.59% 45.41%;
    gap: 0;
  }
}
.qualifying-programs-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #464749;
  text-align: center;
}
@media (min-width: 768px) {
  .qualifying-programs-header {
    gap: 8px;
  }
}
@media (min-width: 1200px) {
  .qualifying-programs-header {
    height: 512px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    padding-top: 96px;
    padding-right: 32px;
    text-align: left;
  }
}
.qualifying-programs-header h2 {
  width: 100%;
  color: #103E65;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
}
@media (min-width: 768px) {
  .qualifying-programs-header h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 1200px) {
  .qualifying-programs-header h2 {
    font-size: 64px;
    line-height: 77px;
  }
}
@media (min-width: 1200px) {
  .qualifying-programs-header h2 span {
    display: block;
  }
}
.qualifying-programs-header h3 {
  width: 100%;
  color: #464749;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}
@media (min-width: 768px) {
  .qualifying-programs-header h3 {
    font-size: 24px;
    line-height: 29px;
  }
}
@media (min-width: 1200px) {
  .qualifying-programs-header h3 {
    font-size: 40px;
    line-height: 48px;
  }
}
.qualifying-programs-header p {
  width: 100%;
  color: #464749;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}
@media (min-width: 768px) {
  .qualifying-programs-header p {
    font-size: 16px;
    line-height: 19px;
  }
}
@media (min-width: 1200px) {
  .qualifying-programs-header p {
    max-width: 678px;
    font-size: 20px;
    line-height: 24px;
  }
}
.qualifying-programs-grid {
  display: grid;
  grid-template-columns: repeat(358, minmax(0, 1fr));
  grid-template-rows: repeat(3, clamp(74px, 25.7vw - 8.22px, 92px));
  row-gap: clamp(6px, 2.23vw - 0.71px, 8px);
  width: min(100%, 358px);
  margin: 0 auto;
  list-style: none;
}
@media (min-width: 768px) {
  .qualifying-programs-grid {
    grid-template-columns: repeat(720, minmax(0, 1fr));
    grid-template-rows: repeat(2, 160px);
    row-gap: 16px;
    width: 100%;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .qualifying-programs-grid {
    grid-template-columns: repeat(564, minmax(0, 1fr));
    grid-template-rows: repeat(3, 160px);
    row-gap: 16px;
    height: 512px;
  }
}
.qualifying-programs-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .qualifying-programs-btn {
    margin-top: 32px;
  }
}
@media (min-width: 1200px) {
  .qualifying-programs-btn {
    margin-top: 64px;
  }
}

.qualifying-program-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 2.23vw - 0.71px, 8px);
  min-width: 0;
  padding: clamp(9.5px, 3.35vw - 1.07px, 12px);
  border-radius: clamp(7px, 2.51vw - 0.8px, 9px);
  background-color: #FFF;
  color: #0C1F4D;
  text-align: center;
}
@media (min-width: 768px) {
  .qualifying-program-card {
    gap: 12px;
    padding: 14px 18px;
    border-radius: 16px;
  }
}
.qualifying-program-card strong {
  overflow: hidden;
  max-width: 100%;
  font-size: clamp(9.5px, 3.35vw - 1.07px, 12px);
  font-weight: 700;
  line-height: clamp(11px, 3.91vw - 1.25px, 14px);
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .qualifying-program-card strong {
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
  }
}
@media (min-width: 1200px) {
  .qualifying-program-card strong {
    font-size: 16px;
    line-height: 19px;
  }
}
.qualifying-program-card--snap {
  grid-column: 20/span 135;
  grid-row: 1;
}
@media (min-width: 768px) {
  .qualifying-program-card--snap {
    grid-column: 118/span 155;
  }
}
@media (min-width: 1200px) {
  .qualifying-program-card--snap {
    grid-column: 1/span 210;
  }
}
.qualifying-program-card--snap img {
  width: clamp(32px, 11.17vw - 3.57px, 40px);
}
@media (min-width: 768px) {
  .qualifying-program-card--snap img {
    width: 70px;
  }
}
.qualifying-program-card--wic {
  grid-column: 163/span 99;
  grid-row: 1;
}
@media (min-width: 768px) {
  .qualifying-program-card--wic {
    grid-column: 285/span 150;
  }
}
@media (min-width: 1200px) {
  .qualifying-program-card--wic {
    grid-column: 387/span 178;
  }
}
.qualifying-program-card--wic img {
  width: clamp(52px, 18.16vw - 5.81px, 65px);
}
@media (min-width: 768px) {
  .qualifying-program-card--wic img {
    width: 115px;
  }
}
.qualifying-program-card--ssi {
  grid-column: 270/span 70;
  grid-row: 1;
}
@media (min-width: 768px) {
  .qualifying-program-card--ssi {
    grid-column: 604/span 116;
    grid-row: 2;
  }
}
@media (min-width: 1200px) {
  .qualifying-program-card--ssi {
    grid-column: 227/span 144;
    grid-row: 1;
  }
}
.qualifying-program-card--ssi img {
  width: clamp(36px, 12.57vw - 4.02px, 45px);
}
@media (min-width: 768px) {
  .qualifying-program-card--ssi img {
    width: 80px;
  }
}
.qualifying-program-card--medicaid {
  grid-column: 53/span 129;
  grid-row: 2;
}
@media (min-width: 768px) {
  .qualifying-program-card--medicaid {
    grid-column: 293/span 149;
  }
}
@media (min-width: 1200px) {
  .qualifying-program-card--medicaid {
    grid-column: 161/span 202;
  }
}
.qualifying-program-card--medicaid img {
  width: clamp(36px, 12.57vw - 4.02px, 45px);
}
@media (min-width: 768px) {
  .qualifying-program-card--medicaid img {
    width: 80px;
  }
}
.qualifying-program-card--veterans {
  grid-column: 190/span 117;
  grid-row: 2;
}
@media (min-width: 768px) {
  .qualifying-program-card--veterans {
    grid-column: 456/span 136;
  }
}
@media (min-width: 1200px) {
  .qualifying-program-card--veterans {
    grid-column: 379/span 186;
  }
}
.qualifying-program-card--veterans img {
  width: clamp(36px, 12.57vw - 4.02px, 45px);
}
@media (min-width: 768px) {
  .qualifying-program-card--veterans img {
    width: 80px;
  }
}
.qualifying-program-card--tribal {
  grid-column: 29/span 156;
  grid-row: 3;
}
@media (min-width: 768px) {
  .qualifying-program-card--tribal {
    grid-column: 15/span 267;
    grid-row: 2;
  }
}
@media (min-width: 1200px) {
  .qualifying-program-card--tribal {
    grid-column: 270/span 295;
    grid-row: 3;
  }
}
.qualifying-program-card--tribal img {
  width: clamp(104px, 36.31vw - 11.62px, 130px);
}
@media (min-width: 768px) {
  .qualifying-program-card--tribal img {
    width: 230px;
  }
}
.qualifying-program-card--housing {
  grid-column: 194/span 136;
  grid-row: 3;
}
@media (min-width: 768px) {
  .qualifying-program-card--housing {
    grid-column: 447/span 156;
    grid-row: 1;
  }
}
@media (min-width: 1200px) {
  .qualifying-program-card--housing {
    grid-column: 42/span 212;
    grid-row: 3;
  }
}
.qualifying-program-card--housing img {
  width: clamp(36px, 12.57vw - 4.02px, 45px);
}
@media (min-width: 768px) {
  .qualifying-program-card--housing img {
    width: 80px;
  }
}

.apply {
  background: #F6FBFF;
  color: #020100;
  padding: 24px 0 40px;
}
@media (min-width: 768px) {
  .apply {
    padding: 32px 0 48px;
  }
}
@media (min-width: 1200px) {
  .apply {
    padding: 64px 0;
  }
}
.apply .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .apply .container {
    gap: 24px;
  }
}
@media (min-width: 1200px) {
  .apply .container {
    gap: 32px;
  }
}
.apply-heading {
  width: 100%;
  text-align: center;
  color: #0E395D;
}
.apply-heading h2 {
  font-size: 28px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .apply-heading h2 {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .apply-heading h2 {
    font-size: 64px;
  }
}
.apply-steps {
  --step-icon-half: 22px;
  --steps-gap: 24px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--steps-gap);
  width: fit-content;
  margin: 0 auto;
  color: #0c0c0d;
  list-style: none;
}
@media (min-width: 768px) {
  .apply-steps {
    --step-icon-half: 30px;
    --steps-gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .apply-steps {
    --step-icon-half: 56px;
    --steps-gap: 12px;
  }
}
.apply-steps li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
}
.apply-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: var(--step-icon-half);
  left: var(--step-icon-half);
  z-index: -1;
  width: 1px;
  height: calc(100% + var(--steps-gap));
  background-image: repeating-linear-gradient(to bottom, #D8D9DB 0 4px, transparent 4px 8px);
  pointer-events: none;
}
@media (min-width: 768px) {
  .apply-steps li {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 16px;
  }
  .apply-steps li:not(:last-child)::after {
    top: var(--step-icon-half);
    left: 50%;
    width: calc(100% + var(--steps-gap));
    height: 1px;
    background-image: repeating-linear-gradient(to right, #D8D9DB 0 10px, transparent 10px 20px);
  }
}
@media (min-width: 1200px) {
  .apply-steps li {
    gap: 14px;
    font-size: 24px;
  }
}
.apply-steps .apply-step-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
@media (min-width: 768px) {
  .apply-steps .apply-step-copy {
    align-items: center;
    gap: 4px;
  }
}
.apply-steps .apply-step-copy p {
  margin: 0;
  color: #020203;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .apply-steps .apply-step-copy p {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  .apply-steps .apply-step-copy p {
    font-size: 16px;
  }
}
.apply-steps .apply-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #D8D9DB;
  background-color: #F6FBFF;
}
@media (min-width: 768px) {
  .apply-steps .apply-step-icon {
    width: 56px;
    height: 56px;
  }
}
@media (min-width: 1200px) {
  .apply-steps .apply-step-icon {
    width: 112px;
    height: 112px;
  }
}
.apply-steps .apply-step-icon img {
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .apply-steps .apply-step-icon img {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 1200px) {
  .apply-steps .apply-step-icon img {
    width: 60px;
    height: 60px;
  }
}
.apply-cta {
  min-width: 100%;
  min-height: 40px;
  padding: 0px 16px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .apply-cta {
    min-height: 48px;
    border-radius: 12px;
    font-size: 18px;
    min-width: 330px;
  }
}
@media (min-width: 1200px) {
  .apply-cta {
    min-width: 385px;
    min-height: 64px;
    border-radius: 16px;
    font-size: 24px;
  }
}

.phone-claim {
  overflow: hidden;
  background: #1D72BA;
  color: #FFFFFF;
}
.phone-claim-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .phone-claim-container {
    gap: 24px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .phone-claim-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 0;
    min-height: 633px;
    padding-bottom: 0;
  }
}
.phone-claim-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: calc(100% + 32px);
  aspect-ratio: 3/2;
  margin-inline: -16px;
  overflow: hidden;
  background: #DCEAF5;
}
@media (min-width: 768px) {
  .phone-claim-image {
    width: calc(100% + 80px);
    height: 434px;
    margin-inline: -40px;
    aspect-ratio: auto;
  }
}
@media (min-width: 1200px) {
  .phone-claim-image {
    width: calc(100% + 40px);
    min-height: 633px;
    margin-left: -40px;
    margin-right: 0;
    border-top-right-radius: 160px;
    aspect-ratio: auto;
  }
}
@media (min-width: 1440px) {
  .phone-claim-image {
    width: calc(100% + max(24px, (100vw - 1488px) / 2));
    margin-left: calc(-1 * max(24px, (100vw - 1488px) / 2));
    margin-right: 0;
  }
}
.phone-claim-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.phone-claim-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  text-align: center;
}
@media (min-width: 1200px) {
  .phone-claim-content {
    justify-content: center;
    padding: 56px 0;
  }
}
.phone-claim-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
@media (min-width: 768px) {
  .phone-claim-heading {
    gap: 12px;
  }
}
@media (min-width: 1200px) {
  .phone-claim-heading {
    gap: 16px;
  }
}
.phone-claim-heading h2 {
  margin: 0;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.16;
}
@media (min-width: 768px) {
  .phone-claim-heading h2 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (min-width: 1200px) {
  .phone-claim-heading h2 {
    font-size: 48px;
    line-height: 1.15;
  }
}
.phone-claim-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 12px 24px rgba(0, 40, 74, 0.14);
}
@media (min-width: 768px) {
  .phone-claim-form {
    gap: 12px;
    max-width: 688px;
    margin-top: 16px;
    padding: 12px;
    border-radius: 16px;
  }
}
@media (min-width: 1200px) {
  .phone-claim-form {
    max-width: none;
    margin-top: 24px;
    padding: 24px;
    border-radius: 0 16px 16px 0;
    gap: 16px;
  }
}
@media (min-width: 1440px) {
  .phone-claim-form {
    padding: 24px 64px;
  }
}
.phone-claim-form-copy {
  margin: 0;
  color: #020203;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 768px) {
  .phone-claim-form-copy {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .phone-claim-form-copy {
    font-size: 18px;
  }
}
.phone-claim-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 768px) {
  .phone-claim-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
@media (min-width: 1200px) {
  .phone-claim-fields {
    gap: 16px;
  }
}
.phone-claim-fields label {
  display: block;
  min-width: 0;
}
.phone-claim-fields .email-errors {
  margin: 4px 0 0;
  color: #D92D20;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}
.phone-claim-fields .email-errors:empty {
  display: none;
}
.phone-claim-fields input {
  width: 100%;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #C4C5C8;
  border-radius: 8px;
  outline: none;
  background: #FFFFFF;
  color: #292A2B;
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .phone-claim-fields input {
    height: 40px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .phone-claim-fields input {
    height: 56px;
    padding: 0 18px;
    border-radius: 12px;
  }
}
.phone-claim-fields input::placeholder {
  color: #9D9FA4;
  opacity: 1;
}
.phone-claim-fields input:focus {
  border-color: #248FE9;
  box-shadow: 0 0 0 4px rgba(36, 143, 233, 0.16);
}
.phone-claim-cta {
  width: 100%;
  min-height: 40px;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .phone-claim-cta {
    min-height: 40px;
    border-radius: 10px;
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .phone-claim-cta {
    min-height: 56px;
    border-radius: 12px;
    font-size: 20px;
  }
}
.phone-claim-legal {
  width: 100%;
  max-width: 688px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .phone-claim-legal {
    margin-top: 12px;
    font-size: 11px;
  }
}
@media (min-width: 1200px) {
  .phone-claim-legal {
    max-width: none;
    padding-left: 24px;
    font-size: 12px;
  }
}
.phone-claim-legal a {
  color: inherit;
  text-decoration: underline;
}

.snap-claim-live {
  display: inline-flex;
  min-height: 30px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 3px;
  padding: 7px 12px 8px 10px;
  border-radius: 999px;
  background: #FEEAD2;
  color: #071525;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.snap-claim-live strong {
  font-weight: 800;
}
@media (min-width: 768px) {
  .snap-claim-live {
    min-height: 36px;
    gap: 8px;
    padding: 10px 16px 10px 12px;
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .snap-claim-live {
    min-height: 51px;
    gap: 12px;
    padding: 16px 20px 16px 18px;
    font-size: 16px;
  }
}

.snap-claim-live-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #F04438;
}
@media (min-width: 768px) {
  .snap-claim-live-dot {
    width: 10px;
    height: 10px;
  }
}
@media (min-width: 1200px) {
  .snap-claim-live-dot {
    width: 12px;
    height: 12px;
  }
}

.snap-live-bottom-toast {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 9999;
  display: flex;
  max-width: calc(100vw - 32px);
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: 1px solid #A7D2F6;
  border-radius: 999px;
  background: #FFFFFF;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}
@media (min-width: 768px) {
  .snap-live-bottom-toast {
    bottom: 24px;
    left: 24px;
    max-width: calc(100vw - 48px);
    padding: 16px;
  }
}

.snap-live-bottom-toast-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}
@media (min-width: 768px) {
  .snap-live-bottom-toast-img {
    width: 50px;
    height: 50px;
  }
}

.snap-live-bottom-toast-content {
  flex: 1;
  color: #071525;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
}
@media (min-width: 768px) {
  .snap-live-bottom-toast-content {
    font-size: 18px;
  }
}
.snap-live-bottom-toast-content strong {
  display: block;
}

.snap-faq {
  background: #F6FBFF;
  color: #101010;
  padding: 24px 0;
}
@media (min-width: 768px) {
  .snap-faq {
    padding: 32px 0;
  }
}
@media (min-width: 1200px) {
  .snap-faq {
    padding: 64px 0;
  }
}
.snap-faq-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 768px) {
  .snap-faq-inner {
    align-items: center;
    gap: 32px;
  }
}
@media (min-width: 1200px) {
  .snap-faq-inner {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
.snap-faq-heading-wrap {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .snap-faq-heading-wrap {
    flex: 0 0 592px;
    justify-content: flex-start;
  }
}
.snap-faq-title {
  width: 100%;
  color: #04263b;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .snap-faq-title {
    font-size: 32px;
    line-height: 42px;
  }
}
@media (min-width: 1200px) {
  .snap-faq-title {
    max-width: 592px;
    font-size: 64px;
    line-height: 76px;
    text-align: left;
  }
}
.snap-faq-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .snap-faq-list {
    flex: 1 1 0;
    min-width: 0;
  }
}
.snap-faq-item {
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}
.snap-faq-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  color: #101010;
  list-style: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.snap-faq-toggle::-webkit-details-marker {
  display: none;
}
@media (min-width: 768px) {
  .snap-faq-toggle {
    gap: 16px;
    padding: 14px 16px;
  }
}
@media (min-width: 1200px) {
  .snap-faq-toggle {
    gap: 24px;
    padding: 20px 24px;
  }
}
.snap-faq-item[open] .snap-faq-toggle {
  align-items: flex-start;
  background: #E5F3FF;
}
.snap-faq-question {
  min-width: 0;
  flex: 1 1 0;
  color: #101010;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  word-break: break-word;
}
@media (min-width: 768px) {
  .snap-faq-question {
    font-size: 16px;
    line-height: 1.25;
  }
}
@media (min-width: 1200px) {
  .snap-faq-question {
    font-size: 24px;
    line-height: 1.15;
  }
}
.snap-faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: #04263b;
}
.snap-faq-icon::before, .snap-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.snap-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media (min-width: 768px) {
  .snap-faq-icon {
    width: 20px;
    height: 20px;
    margin-top: 1px;
  }
  .snap-faq-icon::before, .snap-faq-icon::after {
    width: 12px;
  }
}
@media (min-width: 1200px) {
  .snap-faq-icon {
    width: 24px;
    height: 24px;
    margin-top: 2px;
  }
  .snap-faq-icon::before, .snap-faq-icon::after {
    width: 14px;
  }
}
.snap-faq-item[open] .snap-faq-icon::after {
  opacity: 0;
}
.snap-faq-panel {
  padding: 16px;
  background: #fff;
  cursor: default;
}
@media (min-width: 1200px) {
  .snap-faq-panel {
    padding: 24px;
  }
}
.snap-faq-panel p {
  color: #0c0c0d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
  word-break: break-word;
}
@media (min-width: 768px) {
  .snap-faq-panel p {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .snap-faq-panel p {
    font-size: 20px;
  }
}
.snap-faq-panel strong {
  font-weight: 700;
}

body.offer-dialog-open {
  overflow: hidden;
}

.offer-dialog[hidden] {
  display: none;
}
.offer-dialog {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.offer-dialog:not([hidden]) .offer-dialog-backdrop {
  animation: backdropFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.offer-dialog:not([hidden]) .offer-dialog-panel {
  animation: dialogSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 768px) {
  .offer-dialog:not([hidden]) .offer-dialog-panel {
    width: 484px;
    min-height: 584px;
    max-height: calc(100dvh - 48px);
    gap: 4px;
    padding: 16px;
  }
}
@media (min-width: 768px) {
  .offer-dialog {
    padding: 24px;
  }
}

.offer-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 1, 1, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.offer-dialog-panel {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: flex;
  width: min(100vw - 34px, 286px);
  min-height: 394px;
  max-height: calc(100dvh - 32px);
  flex-direction: column;
  align-items: center;
  gap: 16px;
  overflow-y: auto;
  padding: 16px;
  border: 1px solid #ebebed;
  border-radius: 8px;
  background-color: #fef5dc;
  background-image: linear-gradient(rgba(205, 167, 63, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(205, 167, 63, 0.2) 1px, transparent 1px);
  background-size: 32px 32px;
  color: #0c0c0d;
  box-shadow: 0 4px 3px rgba(1, 1, 1, 0.1), 0 1px 2px rgba(1, 1, 1, 0.1);
}

@keyframes backdropFadeIn {
  from {
    background-color: rgba(1, 1, 1, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
  to {
    background-color: rgba(1, 1, 1, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}
@keyframes dialogSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.offer-dialog-close {
  position: absolute;
  top: 3px;
  right: 3px;
  z-index: 8;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.offer-dialog-close span {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}
.offer-dialog-close span::before, .offer-dialog-close span::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 1px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: #464749;
}
.offer-dialog-close span::before {
  transform: rotate(45deg);
}
.offer-dialog-close span::after {
  transform: rotate(-45deg);
}

.offer-dialog-title {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0;
  color: #0153ff;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .offer-dialog-title {
    padding: 20px 28px 0;
    font-size: 32px;
    line-height: 42px;
  }
}

.offer-dialog-title-desktop {
  display: none;
}
@media (min-width: 768px) {
  .offer-dialog-title-desktop {
    display: block;
  }
}

.offer-dialog-title-mobile {
  display: block;
}
@media (min-width: 768px) {
  .offer-dialog-title-mobile {
    display: none;
  }
}

.offer-dialog-visual {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 263px;
  height: 111px;
  flex: 0 0 111px;
}
@media (min-width: 768px) {
  .offer-dialog-visual {
    width: 420px;
    max-width: 420px;
    height: 219px;
    flex-basis: 219px;
  }
}

.offer-dialog-deco {
  position: absolute;
  z-index: 1;
  display: block;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}
.offer-dialog-deco-ruler {
  top: -26px;
  left: 22px;
  width: 28px;
}
.offer-dialog-deco-search {
  top: 19px;
  left: 33px;
  width: 28px;
}
.offer-dialog-deco-paper {
  top: -29px;
  right: 21px;
  width: 26px;
}
.offer-dialog-deco-fold {
  right: 21px;
  bottom: -14px;
  width: 25px;
}
.offer-dialog-deco-pencil {
  bottom: -31px;
  left: 48px;
  width: 27px;
}

.offer-dialog-devices {
  position: absolute;
  z-index: 3;
  top: -6px;
  left: 50%;
  width: 263px;
  height: auto;
  max-width: none;
  object-fit: contain;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .offer-dialog-devices {
    top: 12px;
    width: 420px;
  }
}

.offer-dialog-form {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .offer-dialog-form {
    margin-top: 8px;
  }
}

.offer-dialog-field input {
  height: 48px;
  border-color: #cda73f;
  border-radius: 12px;
  padding: 0 16px;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .offer-dialog-field input {
    height: 56px;
    padding: 0 18px;
    font-size: 15px;
    line-height: 21px;
  }
}

.offer-dialog-submit {
  width: 100%;
  height: 48px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .offer-dialog-submit {
    height: 56px;
    padding: 16px 24px;
  }
}
@media (min-width: 1200px) {
  .offer-dialog-submit {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .offer-dialog-deco-ruler {
    top: -22px;
    left: 22px;
    width: 44px;
  }
}

@media (min-width: 768px) {
  .offer-dialog-deco-search {
    top: 46px;
    left: 62px;
    width: 45px;
  }
}

@media (min-width: 768px) {
  .offer-dialog-deco-paper {
    top: -22px;
    right: 27px;
    width: 39px;
  }
}

@media (min-width: 768px) {
  .offer-dialog-deco-fold {
    right: 23px;
    bottom: 8px;
    width: 37px;
  }
}

@media (min-width: 768px) {
  .offer-dialog-deco-pencil {
    bottom: -35px;
    left: 46px;
    width: 43px;
  }
}

.btn.loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: wait;
}

.toast-notification {
  position: fixed;
  top: 24px;
  right: 24px;
  background: #fff;
  border-left: 4px solid #ff3b30;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  border-radius: 4px;
  max-width: 400px;
  opacity: 0;
  transform: translateX(120%);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.toast-notification.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.toast-icon {
  color: #ff3b30;
  display: flex;
  flex-shrink: 0;
}

.toast-content {
  flex: 1;
}

.toast-message {
  margin: 0;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.toast-close:hover {
  color: #333;
}

body.error-dialog-open {
  overflow: hidden;
}

.error-dialog {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.error-dialog[hidden], .error-dialog.hidden {
  display: none !important;
}
.error-dialog:not([hidden]) .error-dialog-backdrop {
  animation: backdropFadeIn 0.3s ease forwards;
}
.error-dialog:not([hidden]) .error-dialog-panel {
  animation: dialogSlideUp 0.3s ease;
}

.error-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.error-dialog-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 580px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.error-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  padding: 0;
  transition: background 0.2s;
}
.error-dialog-close:hover {
  background: rgba(0, 0, 0, 0.05);
}
.error-dialog-close img {
  width: 24px;
  height: 24px;
}

.error-dialog .diablog-body {
  padding: 24px 16px;
  color: #0c0c0d;
}
.error-dialog .dialog-title {
  font-size: 24px;
  font-weight: 700;
  color: #0a1e3c;
  margin-bottom: 12px;
  text-align: center;
}
.error-dialog .dialog-text {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 24px;
  text-align: center;
}
.error-dialog .dialog-button {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.error-dialog .dialog-button .btn {
  min-width: 200px;
  height: 48px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
}
.error-dialog .image-service {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.error-dialog .image-service img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.error-dialog .join-header {
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebed;
  margin-bottom: 20px;
}
.error-dialog .join-img-left {
  position: absolute;
  left: -16px;
  top: -24px;
  width: 48px;
}
.error-dialog .join-img-right {
  position: absolute;
  right: -16px;
  top: -24px;
  width: 48px;
}
.error-dialog .join-header-content {
  padding-top: 16px;
}
.error-dialog .prepaid-offers-header {
  text-align: center;
  margin-bottom: 20px;
}
.error-dialog .prepaid-offers-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1b76ff;
  margin-bottom: 8px;
}
.error-dialog .prepaid-offers-header p {
  font-size: 14px;
  line-height: 1.5;
}
.error-dialog .airvoice-offers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.error-dialog .card-offer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid #ebebed;
  border-radius: 12px;
  background: #f8fbff;
}
.error-dialog .card-offer .img-offer {
  flex: 0 0 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.error-dialog .content-offer {
  flex: 1;
}
.error-dialog .content-offer h4 {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.error-dialog .offer-link a {
  display: inline-block;
  padding: 10px 16px;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange-deep) 100%);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.error-dialog .offer-link a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 149, 55, 0.3);
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.eligibility-form input[type=email].input-error {
  border-color: #dc3545 !important;
}

@media (min-width: 768px) {
  .error-dialog .diablog-body {
    padding: 40px;
  }
}

@media (min-width: 768px) {
  .error-dialog .join-img-left {
    left: -40px;
    top: -40px;
    width: 64px;
  }
}

@media (min-width: 768px) {
  .error-dialog .join-img-right {
    right: -40px;
    top: -40px;
    width: 64px;
  }
}

@media (min-width: 768px) {
  .error-dialog .dialog-title {
    font-size: 28px;
  }
}

@media (min-width: 576px) {
  .error-dialog .card-offer {
    padding: 20px;
  }
}

@media (min-width: 576px) {
  .error-dialog .content-offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
}

@media (min-width: 576px) {
  .error-dialog .content-offer h4 {
    margin-bottom: 0;
    min-width: 150px;
  }
}

@media (min-width: 576px) {
  .error-dialog .card-offer .img-offer {
    flex: 0 0 60px;
  }
}

.snap-faq-item {
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .snap-faq-item:hover {
    border-color: rgba(36, 143, 233, 0.4);
    box-shadow: 0 10px 24px rgba(14, 57, 93, 0.08);
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.motion-ready .site-logo {
    animation: pageFadeDown 0.5s 0.04s both cubic-bezier(0.16, 1, 0.3, 1);
  }
  html.motion-ready .header-cta {
    animation: pageFadeDown 0.5s 0.12s both cubic-bezier(0.16, 1, 0.3, 1);
  }
  html.motion-ready .hero-eyebrow {
    animation: pageFadeUp 0.55s 0.1s both cubic-bezier(0.16, 1, 0.3, 1);
  }
  html.motion-ready .hero-title span {
    animation: pageFadeUp 0.65s both cubic-bezier(0.16, 1, 0.3, 1);
  }
  html.motion-ready .hero-title span:first-child {
    animation-delay: 0.18s;
  }
  html.motion-ready .hero-title span:last-child {
    animation-delay: 0.27s;
  }
  html.motion-ready .hero-subtitle {
    animation: pageFadeUp 0.55s 0.35s both cubic-bezier(0.16, 1, 0.3, 1);
  }
  html.motion-ready .hero-product {
    animation: heroProductReveal 0.82s 0.2s both cubic-bezier(0.16, 1, 0.3, 1);
  }
  html.motion-ready .hero-form-title {
    animation: pageFadeUp 0.55s 0.43s both cubic-bezier(0.16, 1, 0.3, 1);
  }
  html.motion-ready .hero-form-body {
    animation: pageFadeUp 0.62s 0.51s both cubic-bezier(0.16, 1, 0.3, 1);
  }
  html.motion-ready .hero-microcopy {
    animation: pageFadeUp 0.5s 0.59s both cubic-bezier(0.16, 1, 0.3, 1);
  }
  html.motion-ready .motion-reveal {
    --motion-x: 0px;
    --motion-y: 24px;
    opacity: 0;
    transform: translate3d(var(--motion-x), var(--motion-y), 0);
    transition: opacity 0.62s var(--motion-delay, 0ms) cubic-bezier(0.16, 1, 0.3, 1), transform 0.62s var(--motion-delay, 0ms) cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  html.motion-ready .motion-reveal.motion-from-left {
    --motion-x: -32px;
    --motion-y: 0px;
  }
  html.motion-ready .motion-reveal.motion-from-right {
    --motion-x: 32px;
    --motion-y: 0px;
  }
  html.motion-ready .motion-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
  }
  html.motion-ready .eligibility-form.highlight-form {
    animation: formAttention 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 14px;
  }
  .snap-claim-live span.is-updating,
  .snap-live-bottom-toast-content span.is-updating,
  .snap-live-bottom-toast-img.is-updating {
    animation: notificationUpdate 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
}
@keyframes pageFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes pageFadeDown {
  from {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes heroBackgroundReveal {
  from {
    opacity: 0;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes heroProductReveal {
  from {
    opacity: 0;
    transform: translate3d(28px, 12px, 0) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes formAttention {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(36, 143, 233, 0);
  }
  45% {
    box-shadow: 0 0 0 8px rgba(36, 143, 233, 0.2);
  }
}
@keyframes notificationUpdate {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
  html.motion-ready .motion-reveal.motion-from-left,
  html.motion-ready .motion-reveal.motion-from-right {
    --motion-x: 0px;
    --motion-y: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .snap-faq-item {
    transition-duration: 0.01ms !important;
  }
  .error-dialog:not([hidden]) .error-dialog-backdrop,
  .error-dialog:not([hidden]) .error-dialog-panel {
    animation-duration: 0.01ms !important;
  }
}
.snap-faq {
  background: #fff;
}

.snap-faq-inner {
  flex-direction: column;
}

.snap-faq-heading-wrap {
  justify-content: center;
}

.snap-faq-title {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.snap-faq-heading-wrap,
.snap-faq-list {
  flex: 1;
}

.snap-faq-item {
  border: 1px solid #EBEBED;
}

.snap-faq-item[open] {
  border-color: rgba(36, 143, 233, 0.4);
}

.snap-faq-question {
  font-weight: 700;
  color: #020203;
}

@media (min-width: 1200px) {
  .snap-faq-list {
    max-width: 1000px;
    margin: 0 auto;
  }
}

.site-footer {
  background: #1D72BA;
}

/*# sourceMappingURL=styles.css.map */
