@import url('https://fonts.googleapis.com/css2?family=Lora:wght@600;700&display=swap');

:root {
  --pvt-navy: #071642;
  --pvt-ink: #0d1c3f;
  --pvt-blue: #0a3b99;
  --pvt-blue2: #155bd8;
  --pvt-gold: #d78a00;
  --pvt-gold2: #ffbd28;
  --pvt-text: #162b4e;
  --pvt-muted: #617491;
  --pvt-line: #d9e7f8;
  --pvt-soft: #eef7ff;
  --pvt-card: #ffffff;
  --pvt-shadow: 0 18px 44px rgba(7, 28, 74, .08);
  --pvt-font: var(--mm-font, "Manrope", "Segoe UI", Arial, sans-serif);
  --pvt-heading: "Lora", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--pvt-text);
  background: #f7fbff;
}

.pvt-page {
  font-family: var(--pvt-font);
  background: linear-gradient(180deg, #f1f8ff 0, #ffffff 38%, #f8fcff 100%);
  overflow-x: hidden;
}

.pvt-page a {
  color: inherit;
  text-decoration: none;
}

.pvt-container {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
}

.pvt-breadcrumb {
  border-top: 1px solid #e6eef8;
  border-bottom: 1px solid #e6eef8;
  background: #fff;
}

.pvt-breadcrumb .pvt-container {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 13px;
  font-weight: 850;
}

.pvt-breadcrumb a {
  color: #0b43a4;
}

.pvt-breadcrumb span,
.pvt-breadcrumb strong {
  color: #687894;
}

.pvt-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 38px;
  background:
    radial-gradient(circle at 13% 22%, rgba(202, 226, 255, .78), transparent 29%),
    radial-gradient(circle at 64% 90%, rgba(197, 223, 255, .54), transparent 33%),
    linear-gradient(105deg, #f2f8ff 0%, #ffffff 52%, #edf6ff 100%);
}

.pvt-hero::before {
  content: "";
  position: absolute;
  left: -44px;
  top: 45px;
  width: 178px;
  height: 178px;
  opacity: .36;
  background: #b9d8ff;
  clip-path: polygon(50% 0, 90% 19%, 90% 54%, 78% 77%, 50% 100%, 22% 77%, 10% 54%, 10% 19%);
}

.pvt-hero::after {
  content: "";
  position: absolute;
  right: 34px;
  top: 20px;
  width: 154px;
  height: 154px;
  opacity: .58;
  background-image: radial-gradient(#bcd6f6 1.2px, transparent 1.2px);
  background-size: 12px 12px;
}

.pvt-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px 330px;
  gap: 18px;
  align-items: center;
  min-height: 360px;
}

.pvt-hero__copy {
  min-width: 0;
}

.pvt-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  color: #0b43a4;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.pvt-kicker::after {
  content: "";
  width: 48px;
  height: 2px;
  border-radius: 99px;
  background: var(--pvt-gold);
}

.pvt-hero h1,
.pvt-sectionHead h2,
.pvt-panel h2,
.pvt-priceCard h2,
.pvt-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-family: var(--pvt-heading);
}

.pvt-hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--pvt-navy);
  font-size: clamp(38px, 3.15vw, 42px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.pvt-hero h1 span {
  display: block;
}

.pvt-hero h1 em {
  color: var(--pvt-gold);
  font-style: normal;
}

.pvt-subtitle {
  max-width: 580px;
  margin: 16px 0 8px;
  color: var(--pvt-navy);
  font-size: 17px;
  font-weight: 1000;
  line-height: 1.35;
}

.pvt-lead {
  max-width: 600px;
  margin: 0;
  color: #394f72;
  font-size: 15px;
  line-height: 1.72;
}

.pvt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.pvt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 1000;
  transition: transform .18s ease, box-shadow .18s ease;
}

.pvt-btn:hover {
  transform: translateY(-2px);
}

.pvt-btn--primary {
  color: #fff !important;
  background: linear-gradient(135deg, #0d55c8, #071f69);
  box-shadow: 0 16px 32px rgba(8, 45, 132, .16);
}

.pvt-btn--primary .material-symbols-rounded {
  color: #fff;
}

.pvt-btn--soft {
  color: var(--pvt-navy);
  background: #fff;
  border-color: #cbdbf0;
  box-shadow: 0 12px 26px rgba(7, 24, 63, .06);
}

.pvt-btn--gold {
  color: #071642;
  background: linear-gradient(135deg, #ffc642, #f3a400);
}

.pvt-btn--dark {
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
}

.pvt-btn--full {
  width: 100%;
}

.pvt-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 650px;
  margin-top: 24px;
}

.pvt-proof article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2px 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--pvt-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 28px rgba(7, 24, 63, .06);
}

.pvt-proof span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #0b43a4;
  background: #eef5ff;
}

.pvt-proof b {
  color: var(--pvt-navy);
  font-size: 13px;
}

.pvt-proof small {
  color: var(--pvt-muted);
  font-size: 12px;
}

.pvt-hero__art {
  position: relative;
  min-height: 252px;
  align-self: end;
  pointer-events: none;
}

.pvt-hero__art::before {
  content: "";
  position: absolute;
  left: 6px;
  right: 10px;
  bottom: 12px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(156, 201, 246, .38), rgba(255, 255, 255, 0) 68%);
}

.pvt-building {
  position: absolute;
  left: 14px;
  bottom: 22px;
  width: 168px;
  height: 166px;
  border-radius: 20px 20px 8px 8px;
  background: linear-gradient(180deg, #deefff, #9bcaf4);
  box-shadow: 0 22px 46px rgba(11, 67, 164, .16);
}

.pvt-building::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -48px;
  width: 82px;
  height: 48px;
  transform: translateX(-50%);
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, #eff8ff, #b9daf8);
}

.pvt-building span {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 5px 8px;
  border-radius: 7px;
  color: #0b43a4;
  background: #fff;
  font-size: 9px;
  font-weight: 1000;
}

.pvt-building i {
  position: absolute;
  left: 22px;
  width: 24px;
  height: 19px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 39px 0 0 #fff, 78px 0 0 #fff;
}

.pvt-building i:nth-child(2) {
  top: 52px;
}

.pvt-building i:nth-child(3) {
  top: 88px;
}

.pvt-building i:nth-child(4) {
  top: 124px;
}

.pvt-doc {
  position: absolute;
  right: -18px;
  bottom: 20px;
  width: 118px;
  height: 148px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  border: 1px solid #d9e4f4;
  border-radius: 12px;
  background: #fffaf1;
  box-shadow: 0 20px 42px rgba(7, 24, 63, .14);
  text-align: center;
}

.pvt-doc b,
.pvt-doc small {
  color: #8c5b18;
}

.pvt-doc b {
  font-family: var(--pvt-heading);
}

.pvt-doc em {
  width: 64px;
  height: 24px;
  border-bottom: 3px solid #c89232;
  transform: rotate(-8deg);
}

.pvt-badge {
  position: absolute;
  right: 15px;
  bottom: 5px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 6px solid #ffd36a;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 35% 28%, #ffe9a6, #f2a715 64%, #c27700);
}

.pvt-formCard {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid #d7e4f6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(7, 24, 63, .15);
}

.pvt-formCard__head {
  padding: 17px 22px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #073c98, #061f69);
}

.pvt-formCard__head span {
  display: block;
  color: #b9d7ff;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pvt-formCard__head h2 {
  margin: 5px 0 0;
  color: #fff;
  font-family: var(--pvt-heading);
  font-size: 22px;
}

.pvt-form {
  display: grid;
  gap: 11px;
  padding: 18px 20px 16px;
}

.pvt-form label {
  display: grid;
  gap: 6px;
  color: #253a62;
  font-size: 12px;
  font-weight: 900;
}

.pvt-form input,
.pvt-form select {
  width: 100%;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid #ccddef;
  border-radius: 8px;
  outline: none;
  color: #0d2145;
  background: #fff;
  font: inherit;
  font-size: 13px;
}

.pvt-form input:focus,
.pvt-form select:focus {
  border-color: #0b58d0;
  box-shadow: 0 0 0 3px rgba(11, 88, 208, .12);
}

.pvt-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pvt-hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
}

.pvt-safe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  color: #6b7890;
  font-size: 12px;
  font-weight: 900;
}

.pvt-safe span {
  color: #f59e0b;
  font-size: 18px;
}

.pvt-alert {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.pvt-alert p {
  margin: 0;
}

.pvt-alert--success {
  color: #05612f;
  background: #eafff0;
  border: 1px solid #bdeecb;
}

.pvt-alert--error {
  color: #9f1239;
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.pvt-strip,
.pvt-ideal {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid var(--pvt-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--pvt-shadow);
}

.pvt-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: -18px;
}

.pvt-strip article,
.pvt-ideal article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 12px;
  align-items: center;
  min-height: 72px;
  padding: 12px 18px;
  border-right: 1px solid rgba(7, 24, 63, .09);
}

.pvt-strip article:last-child,
.pvt-ideal article:last-child {
  border-right: 0;
}

.pvt-strip span,
.pvt-ideal span,
.pvt-panel__head span,
.pvt-grid article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #0b43a4;
  background: #eef5ff;
}

.pvt-strip span {
  grid-row: span 2;
}

.pvt-strip b,
.pvt-ideal b {
  color: var(--pvt-navy);
}

.pvt-strip small {
  color: var(--pvt-muted);
}

.pvt-ideal {
  display: grid;
  grid-template-columns: .86fr repeat(6, 1fr);
  margin-top: 10px;
}

.pvt-ideal strong {
  display: flex;
  align-items: center;
  padding: 0 22px;
  color: var(--pvt-navy);
  font-family: var(--pvt-heading);
  font-size: 20px;
}

.pvt-ideal article {
  min-height: 68px;
}

.pvt-ideal b {
  font-size: 12px;
  line-height: 1.25;
}

.pvt-section {
  padding: 34px 0 0;
}

.pvt-section--tight {
  padding-top: 20px;
}

.pvt-section--last {
  padding-bottom: 36px;
}

.pvt-bottomCta {
  display: none;
}

.pvt-sectionHead {
  margin-bottom: 18px;
  text-align: center;
}

.pvt-sectionHead span {
  display: block;
  color: #0b43a4;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.pvt-sectionHead h2 {
  max-width: 720px;
  margin: 6px auto 0;
  color: var(--pvt-navy);
  font-size: 30px;
  line-height: 1.2;
}

.pvt-sectionHead::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: var(--pvt-gold);
}

.pvt-grid {
  display: grid;
  gap: 16px;
}

.pvt-grid--benefits {
  grid-template-columns: repeat(6, 1fr);
}

.pvt-grid article,
.pvt-panel {
  border: 1px solid var(--pvt-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(7, 24, 63, .06);
}

.pvt-grid article {
  min-height: 160px;
  padding: 21px 15px;
  text-align: center;
}

.pvt-grid article > span {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 18px;
  font-size: 34px;
}

.pvt-grid h3 {
  margin: 0 0 8px;
  color: #0b43a4;
  font-size: 15px;
  line-height: 1.25;
}

.pvt-grid p {
  margin: 0;
  color: var(--pvt-muted);
  font-size: 13px;
  line-height: 1.55;
}

.pvt-split,
.pvt-packageGrid,
.pvt-choiceReview,
.pvt-faqCta {
  display: grid;
  gap: 18px;
}

.pvt-split {
  grid-template-columns: 1fr 1fr;
}

.pvt-panel {
  padding: 20px;
}

.pvt-panel__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.pvt-panel h2 {
  margin: 0;
  color: var(--pvt-navy);
  font-size: 23px;
}

.pvt-docList,
.pvt-applyList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.pvt-docList span,
.pvt-applyList div {
  padding: 12px 13px;
  border: 1px solid #e3edf9;
  border-radius: 10px;
  background: #fbfdff;
}

.pvt-docList span {
  color: #233a5f;
  font-size: 13px;
  font-weight: 800;
}

.pvt-applyList b {
  display: block;
  color: #0b43a4;
}

.pvt-applyList small {
  color: var(--pvt-muted);
}

.pvt-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  padding: 12px;
  border-radius: 10px;
  color: #7a4d00;
  background: #fff7e5;
  font-size: 13px;
  font-weight: 900;
}

.pvt-processCard {
  padding: 24px;
  border: 1px solid var(--pvt-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--pvt-shadow);
}

.pvt-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pvt-process article {
  position: relative;
  padding: 20px 14px;
  border: 1px solid #e3edf9;
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfdff, #fff);
  text-align: center;
}

.pvt-process i {
  position: absolute;
  top: -12px;
  left: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 50%;
  color: #fff;
  background: #0b43a4;
  font-style: normal;
  font-weight: 1000;
}

.pvt-process article:first-child i {
  color: #06154a;
  background: #f6ad19;
}

.pvt-process span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 17px;
  color: #0b43a4;
  background: #eef5ff;
  font-size: 32px;
}

.pvt-process b {
  display: block;
  color: #0b43a4;
}

.pvt-process small {
  display: block;
  margin-top: 5px;
  color: var(--pvt-muted);
  font-size: 12px;
  line-height: 1.4;
}

.pvt-packageGrid {
  grid-template-columns: 1fr .9fr 1fr;
}

.pvt-included ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pvt-included li {
  position: relative;
  padding-left: 24px;
  color: #233a5f;
  font-size: 14px;
}

.pvt-included li::before {
  content: "check_circle";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-family: "Material Symbols Rounded";
}

.pvt-priceCard {
  position: relative;
  overflow: hidden;
  padding: 34px 24px 24px;
  border-radius: 14px;
  color: #fff;
  text-align: center;
  background: radial-gradient(circle at 100% 0, rgba(255, 255, 255, .17), transparent 34%), linear-gradient(135deg, #073c98, #041a60);
  box-shadow: 0 20px 48px rgba(5, 28, 101, .22);
}

.pvt-priceCard > span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 28px;
  border-radius: 0 0 8px 8px;
  color: #06154a;
  background: #f6ad19;
  font-size: 12px;
  font-weight: 1000;
}

.pvt-priceCard h2 {
  margin: 12px 0;
  color: #fff;
  font-size: 21px;
}

.pvt-priceCard small {
  color: #cfe2fb;
  font-weight: 800;
}

.pvt-priceCard strong {
  display: block;
  margin: 6px 0;
  color: #fff;
  font-size: 42px;
}

.pvt-priceCard p {
  margin: 0 0 18px;
  color: #e5f0ff;
}

.pvt-priceCard a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 8px;
  color: #06154a;
  background: #f6ad19;
  font-weight: 1000;
}

.pvt-about p {
  margin: 0 0 14px;
  color: #536684;
  line-height: 1.65;
}

.pvt-about div {
  display: inline-grid;
  margin-right: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f2f7ff;
}

.pvt-about b {
  color: #0b43a4;
}

.pvt-about small {
  color: var(--pvt-muted);
}

.pvt-choiceReview {
  grid-template-columns: .9fr 1.35fr;
  align-items: stretch;
}

.pvt-miniGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.pvt-miniGrid article {
  padding: 14px 10px;
  border: 1px solid #e3edf9;
  border-radius: 12px;
  background: #fbfdff;
  text-align: center;
}

.pvt-miniGrid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 auto 9px;
  border-radius: 13px;
  color: #0b43a4;
  background: #eef5ff;
}

.pvt-miniGrid b {
  display: block;
  color: var(--pvt-navy);
  font-size: 12px;
  line-height: 1.25;
}

.pvt-miniGrid small {
  display: block;
  margin-top: 5px;
  color: var(--pvt-muted);
  font-size: 11px;
  line-height: 1.35;
}

.pvt-reviewTrack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pvt-reviewTrack article {
  padding: 15px;
  border: 1px solid #e3edf9;
  border-radius: 12px;
  background: #fbfdff;
}

.pvt-reviewTrack b {
  display: block;
  color: var(--pvt-navy);
}

.pvt-reviewTrack small {
  color: var(--pvt-muted);
}

.pvt-reviewTrack em {
  display: block;
  margin: 8px 0;
  color: #f59e0b;
  font-style: normal;
  letter-spacing: 2px;
}

.pvt-reviewTrack p {
  margin: 0;
  color: #465b7a;
  font-size: 13px;
  line-height: 1.55;
}

.pvt-faqCta {
  grid-template-columns: .78fr 1.22fr;
  align-items: start;
}

.pvt-faq details {
  border: 1px solid #e3edf9;
  border-radius: 10px;
  background: #fbfdff;
}

.pvt-faq details + details {
  margin-top: 8px;
}

.pvt-faq summary {
  cursor: pointer;
  padding: 12px 14px;
  color: var(--pvt-navy);
  font-weight: 1000;
}

.pvt-faq p {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--pvt-muted);
  font-size: 14px;
  line-height: 1.6;
}

.pvt-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px 32px;
  border-radius: 18px;
  color: #fff;
  background: radial-gradient(circle at 100% 100%, rgba(255, 255, 255, .18), transparent 34%), linear-gradient(135deg, #073c98, #041a60);
  box-shadow: 0 22px 52px rgba(5, 28, 101, .22);
}

.pvt-cta--inline {
  grid-template-columns: 1fr;
  min-height: 0;
  align-content: start;
  gap: 18px;
}

.pvt-cta span {
  color: #ffd36a;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pvt-cta h2 {
  margin: 7px 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.15;
}

.pvt-cta p {
  margin: 0;
  color: #dbeafe;
}

.pvt-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1120px) {
  .pvt-hero__grid {
    grid-template-columns: minmax(0, 1fr) 330px;
  }

  .pvt-hero__art {
    display: none;
  }

  .pvt-grid--benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .pvt-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .pvt-ideal {
    grid-template-columns: repeat(3, 1fr);
  }

  .pvt-ideal strong {
    grid-column: 1 / -1;
    min-height: 54px;
  }

  .pvt-packageGrid,
  .pvt-choiceReview,
  .pvt-faqCta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pvt-container {
    width: 100%;
    padding-inline: 14px;
  }

  .pvt-breadcrumb .pvt-container {
    overflow: auto;
    white-space: nowrap;
  }

  .pvt-hero {
    padding: 22px 0 28px;
  }

  .pvt-hero::before {
    left: -58px;
    top: 80px;
    width: 120px;
    height: 120px;
  }

  .pvt-hero::after {
    right: -50px;
    width: 112px;
    height: 112px;
  }

  .pvt-hero__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  .pvt-hero__art {
    display: block;
    width: min(290px, 100%);
    min-height: 230px;
    margin: 0 auto -4px;
    order: 2;
  }

  .pvt-formCard {
    order: 3;
  }

  .pvt-building {
    left: 20px;
    width: 170px;
    height: 165px;
  }

  .pvt-doc {
    right: 7px;
    width: 116px;
    height: 142px;
  }

  .pvt-hero h1 {
    width: 330px;
    max-width: 330px;
    font-size: 29px;
    line-height: 1.06;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .pvt-hero__copy,
  .pvt-kicker,
  .pvt-subtitle,
  .pvt-lead,
  .pvt-actions,
  .pvt-proof {
    max-width: 330px;
  }

  .pvt-hero h1 span {
    display: inline;
  }

  .pvt-subtitle {
    font-size: 15px;
  }

  .pvt-lead {
    font-size: 14px;
    line-height: 1.66;
  }

  .pvt-actions {
    flex-direction: column;
  }

  .pvt-btn {
    width: 100%;
    min-height: 46px;
  }

  .pvt-proof {
    grid-template-columns: 1fr;
  }

  .pvt-formCard__head h2 {
    font-size: 20px;
  }

  .pvt-form {
    padding: 15px;
  }

  .pvt-form__row,
  .pvt-strip,
  .pvt-ideal,
  .pvt-grid--benefits,
  .pvt-split,
  .pvt-process,
  .pvt-packageGrid,
  .pvt-choiceReview,
  .pvt-miniGrid,
  .pvt-reviewTrack,
  .pvt-faqCta {
    grid-template-columns: 1fr;
  }

  .pvt-strip,
  .pvt-ideal {
    width: calc(100% - 28px);
    margin-left: auto;
    margin-right: auto;
  }

  .pvt-strip article,
  .pvt-ideal article {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 24, 63, .09);
  }

  .pvt-strip article:last-child,
  .pvt-ideal article:last-child {
    border-bottom: 0;
  }

  .pvt-ideal strong {
    padding: 16px 18px 4px;
  }

  .pvt-section {
    padding-top: 28px;
  }

  .pvt-sectionHead h2 {
    font-size: 24px;
  }

  .pvt-grid article {
    min-height: auto;
  }

  .pvt-docList,
  .pvt-applyList {
    grid-template-columns: 1fr;
  }

  .pvt-processCard,
  .pvt-panel {
    padding: 17px;
  }

  .pvt-process article {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 12px;
    text-align: left;
  }

  .pvt-process article i {
    left: 42px;
  }

  .pvt-process article span {
    grid-row: span 2;
    margin: 0;
  }

  .pvt-priceCard strong {
    font-size: 36px;
  }

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

  .pvt-cta h2 {
    font-size: 24px;
  }

  .pvt-cta__actions {
    flex-direction: column;
  }
}
