@font-face {
  font-family: 'CircularXX-Web';
  src: url("/fonts/66ba0780bf98e604403abbdf_CircularXX-Light.otf") format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'CircularXX-Web';
  src: url("/fonts/66ba0780eca7497b7d257132_CircularXX-Book.otf") format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'CircularXX-Web';
  src: url("/fonts/66ba078013f514e188adb1f6_CircularXX-Medium.otf") format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'CircularXX-Web';
  src: url("/fonts/66ba0780f9939310fc9f102b_CircularXX-Bold.otf") format('opentype');
  font-weight: 700;
  font-style: normal;
}

:root {
  /* Colors */
  --color-primary: #2D85FF; /* Primary Blue */
  --color-primary-dark: #143C55; /* Dark Blue */
  --color-secondary: #F5F5F4; /* Light Gray */
  --color-secondary-dark: #EBEBE9; /* Light Gray */
  --color-text-dark: #143C55; /* Dark Blue Text */
  --color-text-light: #6c757d; /* Lighter Gray Text */
  --color-border: #dee2e6; /* Gray Border */
  --color-black: #000000;
  --color-orange: #FF7E28;
  --color-light-blue: #EBF7FF;
  --color-white: #ffffff;
  --color-danger: #ab281f;
  --color-dark-gray: #666666; /* Dark Gray */
  --color-input-border: #ccc;

  /* Fonts */
  --font-family-base: 'CircularXX-Web', sans-serif;

  /* Spacing */
  --spacing-xs: 0.25rem; /* 4px */
  --spacing-sm: 0.5rem;  /* 8px */
  --spacing-md: 1rem;  /* 16px */
  --spacing-lg: 1.5rem;  /* 24px */
  --spacing-xl: 2rem;  /* 32px */
  --spacing-xxl: 3rem;   /* 48px */
  --spacing-3xl: 4rem;   /* 64px */
  --spacing-4xl: 5rem;   /* 80px */
  --spacing-5xl: 6rem;   /* 96px */
  --spacing-6xl: 7rem;   /* 112px */
  --spacing-7xl: 8rem;   /* 128px */
  --spacing-8xl: 9rem;   /* 144px */

  /* Borders */
  --border-radius-sm: 0.25rem; /* 4px */
  --border-radius-md: 0.5rem; /* 8px */
  --border-radius-lg: 1rem; /* 16px */
  --border-radius-xl: 1.5rem; /* 24px */
  --border-radius-xxl: 2rem; /* 32px */

  /* Shadows */
  --shadow-sm:
  0 1px 3px rgba(0, 0, 0, 0.05),    /* Original bottom part */
  0 -1px 2px -1px rgba(0, 0, 0, 0.03); /* Subtle top part */
  --shadow-md:
  0 4px 6px rgba(0, 0, 0, 0.1),     /* Original bottom part */
  0 -2px 4px -1px rgba(0, 0, 0, 0.06); /* Subtle top part */
  --shadow-lg:
  0 10px 15px -3px rgba(0, 0, 0, 0.15), /* Larger bottom part */
  0 -4px 8px -2px rgba(0, 0, 0, 0.08);   /* Larger subtle top part */
}

*, *::after, *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 1rem;
  height: 100%
}

body {
  background-color: var(--color-secondary);
  color: var(--color-black);
  display: flex;
  font-family: var(--font-family-base);
  flex-direction: column;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

hr {
  color: #d9d9d9;
  margin-bottom: 20px;
  margin-top: 20px;
}

textarea {
  font-family: var(--font-family-base);
  font-size: 1.2rem;
  border: 2px solid #d9d9d9;
  border-radius: var(--border-radius-md);
  flex: 0 0 100%;
  margin-top: var(--spacing-sm);
  padding: var(--spacing-md);
  width: 100%;
}

textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}


main {
  flex: 1;
  padding: var(--spacing-md) var(--spacing-md) var(--spacing-xxl);
}

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

a {
  color: var(--color-primary);
  text-decoration: underline;
}

h1, h2, h3 {
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 2.7rem;
  font-weight: 500;
}

h2 {
  font-size: 1.5rem;
  line-height: 1.9rem;
}

h3 {
  font-size: 1.3rem;
}

ul {
  list-style: none;
}

.form-group {
  margin: var(--spacing-md) 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--color-input-border);
  border-radius: var(--border-radius-md) !important;
  font-size: 1.2rem !important;
  font-family: var(--font-family-base);
  height: 70px;
  padding: var(--spacing-lg) !important;
}

input:not([type=submit]):disabled,
select:disabled,
textarea:disabled {
  background-color: light-dark(rgba(239, 239, 239, 0.3), rgba(59, 59, 59, 0.3)) !important;
  border: 1px solid light-dark(rgb(204, 204, 204), rgb(51, 51, 51)) !important;
  color: light-dark(rgb(84, 84, 84), rgb(170, 170, 170)) !important;
  cursor: not-allowed;
  text-shadow: none !important;
}
:where(input,select,textarea,fieldset,.grid)[aria-invalid=true]+small,
.input-error {
  color: var(--color-danger);
  font-size: 14px;
  margin-top: 4px;
  min-height: 18px;
}

.input-error:empty {
  display: none;
}

input:focus, select:focus, .StripeElement--focus {
  outline: .5px solid var(--color-primary);
  border-color: var(--color-primary) !important;
}

input:not(:focus):not(:placeholder-shown):invalid {
  border-color: var(--color-danger);
}

input:not(:placeholder-shown):invalid {
  border-color: var(--color-danger);
}

fieldset {
  border: none;
}

/* Shared */
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}

.button {
  align-items: center;
  border-radius: var(--border-radius-xl);
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-weight: 500;
  font-size: 1.3rem;
  height: 55px;
  justify-content: center;
  line-height: inherit;
  min-width: max-content;
  padding: var(--spacing-sm) var(--spacing-lg);
  text-align: center;
  text-decoration: none;
  width: 100%;
}

.button--primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.button--secondary {
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
  height: 40px;
  text-decoration: none;
  width: fit-content;
}


.button--primary:hover {
  color: var(--color-white);
  text-decoration: none;
}

.button:disabled, .button[disabled] {
  opacity: .3;
  border: none;
}

.button a:hover {
  text-decoration: none;
}

.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--spacing-xl) 0;
  width: 100%;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

.header {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-md) 0;
  position: relative;
}

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

.header__logo {
  display: block;
  height: 30px;
}

.header__menu-icon {
  height: 24px;
  width: auto;
}

.header__menu-link {
  align-items: center;
  color: var(--color-orange);
  display: flex;
  font-size: 1.1rem;
  font-weight: 400;
  gap: var(--spacing-sm);
  text-decoration: none;
}

.footer-large__links-wrapper {
  padding: var(--spacing-xxl) 0;
  background-color: #0A2537;
  text-align: center;
}

.footer-large__links {
  align-items: center;
  color: var(--color-text-light);
  display: flex;
  font-size: 0.9rem;
  justify-content: space-between;
}

.footer-large__links-logo {
  height: 25px;
}

.footer-large__links-link {
  color: var(--color-white);
  font-size: .8rem;
  margin-left: var(--spacing-md);
  text-decoration: none;
}

.footer-large__links-divider {
  border: .25px solid #768C9C;
  height: 0px;
  margin: var(--spacing-xl) 0 var(--spacing-sm);
}

.footer-large__links-copyright {
  color: var(--color-text-light);
  font-size: .7rem;
  font-weight: 300;
}

.footer-small {
  background-color: var(--color-secondary);
  align-items: center;
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  padding: var(--spacing-xxl) 0;
}

.modal {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  display: none;
  justify-content: center;
  left: 0;
  padding: var(--spacing-xl);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1050;
}

.modal__container {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 2 * var(--spacing-md));
  max-width: 960px;
  overflow-y: auto;
  position: relative;
  width: 100%;
}

.modal__container--wide {
  max-width: 860px;
}

.modal__header {
  padding: var(--spacing-md);
  position; relative;
  text-align: center;
  margin-bottom: 0;
}

.modal__close-btn {
  background: none;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  line-height: 1;
  position: absolute;
  right: var(--spacing-md);
  top: var(--spacing-md);
}

.modal__close-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.modal__body {
  color: var(--color-text-dark);
  font-size: 1rem;
  line-height: 1.5;
  padding: var(--spacing-xxl);
  text-align: center;
}

.contact-modal {
  width: 650px;
}

.contact-modal__actions {
  align-items: center;
  display: flex;
  justify-content: center;
}

.contact-modal__action {
  align-items: center;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-md);
  max-width: 300px;
}

.contact-modal__link {
  color: var(--color-black);
  font-weight: 300;
  width: 70%;
}

.contact-modal__icon {
  align-self: flex-start;
  height: auto;
  margin: auto;
  max-height: none;
  max-width: none;
  width: auto;
}

@media (max-width: 992px) {
  .container {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
  }
}

@media (max-width: 640px) {
  input, select {
    font-size: 16px;
    padding: 12px;
  }

  .divider {
    margin: var(--spacing-lg) 0;
  }

  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none !important;
  }

  .footer-large__links {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .footer-small {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .modal__title {
    font-size: 1.5rem;
  }

  .contact-modal__text {
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
  }

  .contact-modal__actions {
    display: flex;
    flex-direction: column;
    font-size: 1.1rem;
    gap: var(--spacing-xxl);
  }


  .contact-modal__button {
    width: 100%;
  }
}

.wizard__input-other {
  display: none;
}

.wizard-box__form-field--other:has(.wizard__input--radio:checked) .wizard__textarea {
  display: block;
}

.wizard__text-clear-wrapper {
  position: relative;
}

.wizard__input {
  box-sizing: border-box;
  width: 100%;
}

.wizard__input:not(:placeholder-shown) + .wizard__text-clear-btn {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.wizard__text-clear-btn {
  color: var(--color-white);
  background: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  font-size: 1.3em;
  height: 1.2em;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2em;
}

.wizard__input--radio {
  align-self: center;
  flex-shrink: 0;
  height: 25px;
  width: 25px;
}

.wizard__input--checkbox {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.wizard__checkbox-custom {
  border: 1px solid var(--color-black);
  border-radius: 50%;
  box-sizing: border-box;
  flex-shrink: 0;
  height: 25px;
  position: relative;
  transition: background-color 0.2s, border-color 0.2s;
  width: 25px;
}

.wizard__input--checkbox:checked + .wizard__checkbox-custom {
  background-color: #007aff;
  border-color: #007aff;
}

.wizard__input--checkbox:checked + .wizard__checkbox-custom::after {
  border: solid white;
  border-width: 0 2px 2px 0;
  content: "";
  height: 13px;
  left: 7px;
  position: absolute;
  top: 4px;
  transform: rotate(32deg);
  width: 8px;
}

.wizard__input--radio {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.wizard__radio-custom {
  border: 1px solid var(--color-black);
  border-radius: 50%;
  box-sizing: border-box;
  flex-shrink: 0;
  height: 25px;
  position: relative;
  transition: background-color 0.2s, border-color 0.2s;
  width: 25px;
}

.wizard__input--radio:checked + .wizard__radio-custom {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.wizard__input--radio:checked + .wizard__radio-custom::after {
  background-color: var(--color-white);
  border-radius: 50%;
  content: "";
  height: 11px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
}

.wizard-location {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-md);
  justify-content: center;
  margin-top: var(--spacing-xl);
}

.wizard-location__zipcode {
  font-weight: 500;
  text-decoration: underline;
}

.wizard-location__wrapper {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-md);
}

.wizard-header {
  margin-bottom: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  text-align: center;
}

.wizard-header__headline {
  margin-bottom: var(--spacing-lg);
}

.wizard-box {
  background-color: color-mix(in srgb, var(--color-white) 40%, transparent);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
  margin-top: var(--spacing-xl);
  padding: var(--spacing-xxl) var(--spacing-8xl);
}

.wizard-box__inputs{
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.wizard-box__form-field {
  display: flex ;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.wizard__label {
  font-size: 1.2rem;
}

.wizard__label--selection {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  cursor: pointer;
  display: flex ;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg);
  position: relative;
  user-select: none;
}

.wizard__radio-wrapper,
.wizard__checkbox-wrapper {
  align-items: center;
  display: inline-flex ;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--spacing-md);
}

.wizard__label--selection:has(input:checked) {
  background-color: var(--color-light-blue);
  outline: 2px solid var(--color-primary);
}

.wizard-box__form-field--other:has(
.wizard__input--radio:checked,
.wizard__input--checkbox:checked
) .wizard__input-other {
  display: block;
}

/* CTA */
.wizard-cta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.wizard-cta__small-text {
  color: var(--color-dark-gray);
  font-size: .8rem;
  line-height: 1.1rem;
  text-align: center;
}

.wizard-cta__skip {
  font-size: 1.3rem;
  text-align: center;
}

/* Advocate */
.wizard-advocate {
  align-items: center;
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: row;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
  padding: var(--spacing-lg) var(--spacing-xl);
}

.wizard-advocate__photo {
  height: 75px;
  width: 75px;
}

.wizard-advocate__intro {
  font-size: 1.2rem;
  font-weight: 500;
}

.wizard-advocate__timing {
  font-size: 1.2rem;
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }

  h2 {
    font-size: 1.1rem;
    line-height: 1.3rem;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select {
    font-size: 1.1rem !important;
    height: 35px;
  }

  .button {
    font-size: 1.1rem;
    height: 45px;
  }

  .wizard-box {
    border-radius: 0;
    gap: var(--spacing-xxl);
    padding: var(--spacing-lg) var(--spacing-lg);
  }

  .wizard__label {
    font-size: 1.1rem;
  }

  .wizard-location__wrapper {
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
  }

  .wizard__label--selection {
    padding: var(--spacing-md);
  }

  .wizard-advocate {
    flex-direction: column;
    margin-right: var(--spacing-xl);
    margin-left: var(--spacing-xl);
    text-align: center;
  }

  .wizard-advocate__intro {
    font-size: 1rem;
    line-height: 1.3rem;
  }

  .wizard-advocate__timing {
    font-size: .9rem;
    line-height: 1.3rem;
  }

  .wizard-cta__skip {
    font-size: 1.1rem;
  }
}

.ha-protected {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-3xl) var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.ha-protected__header {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  text-align: center;
}

.ha-protected__title {
  font-size: 1.6rem;
}

.ha-protected__sub-title {
  font-size: 1.2rem;
}

.ha-protected__badge {
  margin: auto;
  width: 90px;
}

.ha-protected__list {
  align-items: flex-start;
  column-gap: var(--spacing-3xl);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: var(--spacing-xxl);
  text-align: left;
}

.ha-protected__item {
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-template-rows: auto auto;
  column-gap: var(--spacing-sm);
  row-gap: var(--spacing-xs);
}

.ha-protected__checkmark {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: 20px;
  height: 20px;
}

.ha-protected__item-title {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  font-weight: 500;
}

.ha-protected__item-desc {
  grid-column: 2;
  grid-row: 2;
  font-size: var(--text-sm);
}

.wizard-summary__hero {
  margin: var(--spacing-xxl) auto;
}

.wizard-summary__hero-card {
  background-color: var(--color-light-blue);
  border-radius: var(--border-radius-md);
  color: var(--color-text-dark);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-xxl);
  text-align: center;
}

.wizard-summary__hero-icon {
  align-self: center;
}

.wizard-summary__hero-title {
  font-size: 1.6rem;
  line-height: 1.7rem;
  margin-bottom: 0;
}

.wizard-summary__hero-text {
  font-size: 1.3rem;
  line-height: 1.4rem;
}

.wizard-summary__hero-callout {
  align-items: center;
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  display: inline-flex;
  gap: var(--spacing-sm);
  margin: 0 auto;
  padding: var(--spacing-sm) var(--spacing-md);
}

.wizard-summary__hero-callout-icon {
  height: 16px;
  width: 16px;
}

.wizard-summary__hero-callout-copy {
  font-size: .9rem;
  margin: 0;
  color: var(--color-primary);
}

.wizard-summary__card {
  padding: var(--spacing-xxl);
}

.wizard-summary__section-title {
  border-bottom: 2px solid var(--color-border);
  font-size: 1.6rem;
  line-height: 1.7rem;
  margin-bottom: var(--spacing-sm);
  padding-bottom: var(--spacing-md);
}

.wizard-summary__section-subtitle {
  font-size: 1.2rem;
  line-height: 1.4rem;
  margin-bottom: var(--spacing-lg);
}

.wizard-summary__details {
  column-gap: var(--spacing-3xl);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: var(--spacing-xxl);
}

.wizard-summary__detail {
  align-items: baseline;
  border-bottom: 1px solid var(--color-secondary-dark);
  display: flex;
  flex-direction: row;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg) var(--spacing-md);
}

.wizard-summary__detail-icon {
  align-self: baseline;
  flex: 0 0 auto;
  height: auto;
  margin-top: 0;
  width: auto;
}

.wizard-summary__detail-title {
  font-size: 1.3rem;
}

.wizard-summary__detail-value {
  color: var(--color-text-light);
  font-size: 1rem;
}

.wizard-summary__advocate {
  background-color: var(--color-secondary-dark);
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-xxl);
}

.wizard-summary__advocate-meet {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: var(--spacing-xxl);
  width: 100%;
}

.wizard-summary__advocate-desc {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.wizard-summary__advocate-photo {
  border-radius: var(--border-radius-md);
}

.wizard-summary__advocate-name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.1rem;
}

.wizard-summary__advocate-label {
  font-size: 1.6rem;
  line-height: 1.8rem;
}

.wizard-summary__advocate-cta {
  margin-top: var(--spacing-sm);
  max-width: 260px;
  width: 100%;
}

.wizard-summary__advocate-confirmation {
  background-color: var(--color-light-blue);
  border-radius: var(--border-radius-md);
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  text-align: center;
}

.wizard-summary__advocate-divider {
  border: none;
  border-top: 2px solid var(--color-border);
  height: 0;
  margin: var(--spacing-xl) 0;
}

.wizard-summary__advocate-examples-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.wizard-summary__advocate-examples-title {
  font-size: 1.2rem;
  line-height: 1.3rem;
  margin-bottom: var(--spacing-md);
}

.wizard-summary__advocate-example {
  color: var(--color-primary);
  background-color: var(--color-light-blue);
  border-radius: var(--border-radius-sm);
  font-size: 1.1rem;
  line-height: 1.2rem;
  padding: var(--spacing-sm) var(--spacing-md);
}

.wizard-summary__contact {
  margin: var(--spacing-xxl) auto 0;
}

.wizard-summary__contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-4xl);
  margin-top: var(--spacing-lg);
}

.wizard-summary__contact-intro {
  flex: 1 1 320px;
  max-width: 420px;
}

.wizard-summary__contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.wizard-summary__contact-method {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-sm);
  min-width: 220px;
}

.wizard-summary__contact-icon {
  flex: 0 0 auto;
}

.wizard-summary__contact-body {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxs);
}

.wizard-summary__contact-link,
.wizard-summary__contact-link:hover {
  color: var(--color-black);
}

@media (max-width: 960px) {
  .wizard-summary__advocate {
    align-items: stretch;
    text-align: left;
    width: 100%;
  }

  .wizard-summary__advocate-header {
    align-items: flex-start;
    flex-direction: row;
  }

  .wizard-summary__advocate-meet {
    flex-direction: column;
  }

  .wizard-summary__advocate-cta {
    max-width: none;
    width: 100%;
  }

  .wizard-summary__details {
    width: 100%;
  }

  .wizard-summary__contact-card {
    display: block;
  }

  .wizard-summary__contact-methods {
    justify-content: flex-start;
  }

  .wizard-summary__contact-method {
    width: 100%;
  }

  .wizard-summary__advocate-meet {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .wizard-summary__hero-card {
    padding: var(--spacing-xl);
    gap: var(--spacing-md);
  }

  .wizard-summary__hero-title {
    font-size: 2rem;
  }

  .wizard-summary__card {
    padding: var(--spacing-xl);
  }

  .wizard-summary__hero-callout {
    width: 100%;
    justify-content: center;
  }

  .wizard-summary__details {
    grid-template-columns: 1fr;
  }

  .wizard-summary__details-content {
    background: none;
    box-shadow: none;
    padding: 0;
  }

  .wizard-summary__details-row {
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
  }

  .wizard-summary__details-icon {
    box-shadow: none;
    height: 10px;
    margin-top: 0.4rem;
    width: 10px;
  }

  .ha-protected__list {
    gap: var(--spacing-xl);
    grid-template-columns: repeat(1, 1fr);
  }

  .wizard-summary__hero-text {
    font-size: 1rem;
    line-height: 1.3rem;
  }

  .wizard-summary__hero-callout-icon {
    display: none;
  }

  .wizard-summary__hero-callout-copy {
    font-size: .8rem;
  }
}

input[type="file"] {
  font-size: 20px; padding-right: 10px;
}

input[type="file"]::file-selector-button {
  margin-right: 20px;
}
