.hero-grid {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}

.hero-copy {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy .hero-sub {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy .hero-bullets {
  width: min(100%, 560px);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.hero-copy .trust-row {
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.hero-inline-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 28px 0 32px;
}

.hero-modal-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  box-shadow: 0 12px 30px rgba(19, 52, 79, 0.18);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-modal-trigger:hover {
  background: #1a4268;
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(19, 52, 79, 0.24);
}

.hero-inline-note {
  margin: 0;
  font-size: 13px;
  color: var(--steel);
  font-weight: 300;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.form-modal.is-open {
  display: flex;
}

.form-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(11, 22, 34, 0.56);
  cursor: pointer;
}

.form-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(100vh - 48px, 900px);
  overflow: auto;
}

.form-modal__dialog .form-card {
  max-width: none !important;
  margin: 0;
  box-shadow: 0 22px 60px rgba(19, 52, 79, 0.2);
}

.form-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(19, 52, 79, 0.16);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-copy .hero-bullets {
    width: 100%;
  }

  .hero-copy .trust-row {
    align-items: center !important;
  }

  .form-modal {
    align-items: flex-end;
    padding: 0;
  }

  .form-modal__dialog {
    width: 100%;
    max-height: min(92vh, 900px);
  }

  .form-modal__dialog .form-card {
    border-radius: 24px 24px 0 0;
  }

  .form-modal__close {
    top: 12px;
    right: 12px;
  }
}
