:root {
  --bg: #ffffff;
  --bg-soft: #f1f1f1;
  --text: #202020;
  --text-white: #ffffff;
  --text-muted: #7c7c7c;
  --blue: #4f70fa;
  --green: #2dce60;
  --yellow: #fccc3e;
  --danger: #c93f3f;
  --success: #1d9f4d;
  --card: #ececec;
  --card-strong: #ececec;
  --line: rgba(32, 32, 32, 0.1);
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  --radius-pill: .5rem;
  --radius-full: 999px;
  --shadow-soft: 0 18px 45px rgba(32, 32, 32, 0.08);
  --shadow-lift: 0 22px 50px rgba(32, 32, 32, 0.12);
  --container: min(100% - 2rem, 87rem);
  --font-display: "Special Gothic Condensed One", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --speed-fast: 180ms;
  --speed-base: 260ms;
  --text-display-xl: clamp(4.25rem, 8vw, 6rem);
  --text-display-lg: 2.75rem;
  --text-title-md: 1.25rem;
  --text-body-lg: 1.25rem;
  --text-body-md: 1rem;
  --text-body-sm: 0.875rem;
  --text-label: 0.875rem;
  --text-badge: 0.625rem;
  --text-button: 1rem;
  --leading-display-xl: 1;
  --leading-display-lg: 1.167;
  --leading-body-lg: 1.4;
  --leading-body-md: 1.5;
  --leading-body-sm: 1.45;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a,
input,
textarea {
  font: inherit;
}

p{
  line-height: 1.5rem;
}

h2 {
  font-size: 1.75rem;
  line-height: var(--leading-display-lg);
}

h3{
  font-size: 2rem;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.wrap__copy{
  max-width: 22rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: var(--text);
  color: var(--bg);
  transition: top var(--speed-fast) ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container-max{
  max-width: 1156px;
}

.section {
  padding: 8rem 0;
}

.section.padding-top-0{
  padding-top: 0
}

.section--tight {
  padding-top: 8rem;
  padding-bottom: 7.5rem;
}

.section--green {
  background: var(--green);
}

.section--soft {
  background: var(--bg-soft);
}

.section--blue {
  background: var(--blue);
  color: var(--bg);
}

.hero {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.hero__inner {
  display: grid;
  justify-items: center;
  gap: 4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__mark {
  width: 2.625rem;
  height: 2.625rem;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.hero__copy {
  width: min(100%, 72.25rem);
  text-align: center;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.125rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: var(--text-label);
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.footer h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text);
}

.hero h1 {
  font-size: 2.25rem;
  line-height: 2.75rem;
}

.hero__lead {
  width: min(100%, 31rem);
  margin: 1rem auto;
  font-size: var(--text-body-md);
  line-height: var(--leading-body-md);
}

.hero__note {
  display: inline-block;
  position: relative;
  place-items: center;
  margin-top: 0.125rem;
}

.hero__note span {
  position: relative;
  z-index: 1;
}

.hero__note svg {
  position: absolute;
  top: -4px;
  pointer-events: none;
  left: -4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: var(--text-button);
  font-weight: 500;
  line-height: 1.4;
  transition:
    transform var(--speed-fast) ease,
    box-shadow var(--speed-fast) ease,
    background-color var(--speed-fast) ease,
    color var(--speed-fast) ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.button:active {
  transform: translateY(0);
}

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

.button--secondary {
  background: var(--blue);
  color: var(--bg);
}

.section-heading {
  max-width: 42.75rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading--wide,
.section-heading--light {
  max-width: none;
}

.section-heading--narrow {
  max-width: 42.75rem;
}

.section-heading h2 {
  font-size: 1.75rem;
  line-height: var(--leading-display-lg);
}

.section-heading p,
.section-note,
.about-card__copy p,
.compare__copy p,
.step-card__copy p {
  font-size: var(--text-body-md);
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--bg);
}

.section-heading--light p {
  margin-top: 1.5rem;
  font-weight: 500;
}

#section-difference .section-heading {
  margin-bottom: 0;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.state-card {
  display: flex;
  flex-direction: column;
  background: #ececec;
  border-radius: 2rem;
  padding: 3rem 2rem 2rem;
}

.state-card p{
  margin: 0;
}

.state-card h3,
.feature-card h3,
.compare-card h3,
.step-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

.section-note {
  margin-top: 2rem;
  text-align: center;
  font-size: var(--text-body-lg);
  font-weight: 500;
}

.compare-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
  padding: 0.875rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.compare-card {
  min-height: 24.125rem;
  padding: 1rem;
  border-radius: 0.875rem;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(32, 32, 32, 0.08), inset 0 0 0 1px var(--line);
}

.compare-card img{
  margin: 2rem 0;
}

.compare-card--muted {
  color: #5d667a;
}

.compare-card--featured {
  border: 1.5px solid rgba(45, 206, 96, 0.85);
}

.compare-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.badge {
  min-height: 1.5rem;
  padding: 0.25rem 0.5rem;
  background: var(--green);
  color: var(--bg);
  font-size: var(--text-label);
}

.checklist {
  display: grid;
  gap: .4rem;
  padding: 0 0 0;
  margin: 0;
  list-style: none;
  margin-bottom: 1rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
}

.checklist--featured li::before {
  background-color: rgba(45, 206, 96, 0.12);
  background-image:
    radial-gradient(circle at center, currentColor 0.08rem, transparent 0.09rem),
    linear-gradient(currentColor 0 0);
  color: #14a54c;
}

.compare-card__placeholder,
.compare-card__result {
  display: grid;
  place-items: center;
  min-height: 5.75rem;
  margin-top: 2rem;
  border-radius: 0.75rem;
}

.compare-card__placeholder {
  border: 1px dashed rgba(138, 147, 168, 0.4);
  color: #a4aec0;
  background: #fafafa;
}

.compare-card__result {
  color: #09a55a;
  background: rgba(45, 206, 96, 0.14);
}

.doc-icon,
.result-icon {
  width: 4.5rem;
  height: auto;
}

.process-grid {
  --step-1: 2fr;
  --step-2: 1fr;
  --step-3: 1fr;
  display: grid;
  grid-template-columns:
    minmax(0, var(--step-1))
    minmax(0, var(--step-2))
    minmax(0, var(--step-3));
  gap: 1.5rem;
  align-items: stretch;
  padding-top: 2rem;
  transition: grid-template-columns 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-grid:has(.step-card:nth-child(2).is-active) {
  --step-1: 1fr;
  --step-2: 2fr;
  --step-3: 1fr;
}

.process-grid:has(.step-card:nth-child(3).is-active) {
  --step-1: 1fr;
  --step-2: 1fr;
  --step-3: 2fr;
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  background: var(--bg);
  color: var(--text);
  overflow: visible;
  cursor: pointer;
  transition:
    background-color 420ms ease,
    color 420ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease;
}

.step-card.is-active {
  background: var(--green);
  color: var(--bg);
}

.step-card.is-active .step-card__number{
  background: var(--green);
  position: absolute;
  top: -2rem;
  left: 2.5rem;
}

.step-card.is-active .description-text{
  height: fit-content;
}

.step-card__number {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 4rem;
  border-radius: var(--radius-full);
  background: var(--green);
  font-size: 1.5rem;
  font-weight: 500;
}

.step-card__copy {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  padding: 2.5rem;
}

.step-card__title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step-card__title svg,
.step-card__title svg * {
  fill: currentColor;
}

.description-text {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.5rem);
  transition:
    max-height 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.step-card.is-active .description-text {
  max-height: 16rem;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 120ms, 120ms, 120ms;
}

.step-card__next {
  justify-self: start;
  border: 1px solid #fff;
  color: inherit;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  gap: 8px;
}

.step-card__next svg{
  margin-top: 3px;
}

.step-card__media {
  margin-top: 2rem;
  border-top-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 18.8125rem;
  margin-left: 2.5rem;
  transition:
    margin-left 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
}

.step-card:not(.is-active) .step-card__media {
  filter: saturate(0.86) contrast(0.96);
}

.step-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card__media--crop-center img {
  object-position: 46% center;
}

.step-card__media--crop-right img {
  object-position: 64% center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-evenly;
  gap: 2rem;
  padding-top: 4rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  min-height: auto;
  padding: 0;
  background: transparent;
  color: var(--bg);
}

.feature-card__media{
  width: 100%;
  border-radius: var(--radius-lg);
}

.feature-card__copy {
  display: grid;
  gap: 1rem;
  width: 70%;
  margin-left: 2rem;
}

.feature-card__copy h3 {
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
}

.feature-card__copy p {
  margin: 0;
  color: var(--bg);
  font-size: var(--text-body-md);
  line-height: normal;
}

.about-card {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  max-width: 28rem;
  margin-inline: auto;
  padding-top: 2rem;
  text-align: center;
}

.about-card__photo {
  width: 8rem;
  height: 7.375rem;
  border-radius: 50%;
  object-fit: cover;
}

.about-card__copy {
  display: grid;
  gap: 1rem;
}

.footer {
  min-height: 100vh;
}

.wrap-content-form{
  background: var(--yellow);
  padding: 4rem 1rem 1rem;
  border-radius: 2rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  padding-block: 8rem 2rem;
  flex-flow: column;
  min-height: 100vh;
}

.two-coluns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.footer__lead {
  margin: 2rem 0 0;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.016em;
  font-weight: 500;
}

.footer-form {
  display: grid;
  gap: 2rem;
  width: 100%;
  padding: 2rem;
  border-radius: 2rem;
  background: var(--bg);
  max-width: 28rem;
  margin-left: auto;
}

.footer-form__fields {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field__label {
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: -0.016em;
  font-weight: 600;
  color: #000;
}

.form-field__control {
  width: 100%;
  min-height: 3.4375rem;
  padding: 0.875rem 1rem;
  border: 2px solid #f1f1f1;
  border-radius: 0.25rem;
  background: #fff;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
  transition:
    border-color var(--speed-fast) ease,
    box-shadow var(--speed-fast) ease,
    background-color var(--speed-fast) ease,
    color var(--speed-fast) ease;
}

.form-field__control::placeholder {
  color: #8d8d8d;
  opacity: 1;
}

.form-field__control:hover:enabled {
  border-color: rgba(32, 32, 32, 0.18);
}

.form-field__control:focus,
.form-field__control:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(79, 112, 250, 0.16);
  outline: 0;
}

.form-field__control:active:enabled {
  border-color: rgba(79, 112, 250, 0.9);
}

.form-field__control:disabled {
  cursor: not-allowed;
  color: #8d8d8d;
  background: #f7f7f7;
  border-color: #e7e7e7;
}

.form-field__control--textarea {
  resize: vertical;
  overflow: hidden;
}

.footer-form__status,
.form-field__message {
  margin: 0;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.45;
  display: none;
}

.form-field.is-filled .form-field__control {
  border-color: rgba(32, 32, 32, 0.14);
}

.form-field.is-valid .form-field__control {
  border-color: rgba(29, 159, 77, 0.55);
}

.form-field.is-invalid .form-field__control {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(201, 63, 63, 0.12);
}

.form-field.is-invalid .form-field__message {
  color: var(--danger);
  display: block;
}

.footer-form__actions {
  display: flex;
  align-items: center;
}

.footer-form__submit {
  gap: 0.625rem;
  min-height: 3.25rem;
  padding: 0.75rem 1.5rem;
  box-shadow: none;
}

.footer-form__submit:hover {
  box-shadow: none;
}

.footer-form__submit:disabled {
  cursor: progress;
  transform: none;
  box-shadow: none;
  opacity: 0.7;
}

.footer-form__submit-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
}

.footer-form__submit-label {
  display: inline-flex;
  align-items: center;
}

.footer-form__status.is-error {
  color: var(--danger);
  display: block;
}

.footer-form__status.is-success {
  color: var(--success);
}

.footer__bottom {
  margin-top: 2rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 1rem;
}

.footer__bottom p{
  margin-top: 1rem;
}

.footer__bottom .footer__bottom {
  flex-direction: column;
}

.footer__policy-link,
.footer__copyright {
  margin: 0;
  font-size: .75rem;
  line-height: 1.25;
}

.footer__policy-link {
  justify-self: start;
  color: var(--blue);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer__social-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--blue);
  color: #f1f1f1;
  transition:
    transform var(--speed-fast) ease,
    box-shadow var(--speed-fast) ease,
    background-color var(--speed-fast) ease;
}

.footer__social-link svg {
  width: 1.5rem;
  height: 1.5rem;
}

.footer__social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.thank-you-page {
  min-height: 100vh;
}

.thank-you-hero {
  padding-top: 1rem;
  padding-bottom: 0;
}

.thank-you-hero__inner {
  display: grid;
  gap: 4rem;
  padding-bottom: 2rem;
}

.thank-you-hero__topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.625rem;
}

.thank-you-hero__social {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: 10.75rem;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.thank-you-hero__social-icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
}

.thank-you-summary {
  display: grid;
  justify-items: center;
  gap: 2rem;
  width: min(100%, 57.5rem);
  margin-inline: auto;
  padding-top: 0;
  text-align: center;
}

.thank-you-summary__copy {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.thank-you-summary__copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.5;
}

.thank-you-summary__copy p {
  margin: 0;
  width: min(100%, 42.75rem);
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.5;
}

.thank-you-flow {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.thank-you-flow .section-heading {
  margin-bottom: 0;
}

.thank-you-steps {
  display: grid;
  gap: 1.5rem;
}

.thank-you-steps--static {
  --step-1: 1fr;
  --step-2: 1fr;
  --step-3: 1fr;
  padding-top: 0;
}

.thank-you-steps--static .step-card {
  cursor: default;
}

.thank-you-steps--static .step-card__number {
  color: var(--text);
}

.thank-you-steps--static .step-card__copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.016em;
}

.thank-you-steps--static .step-card__title svg [fill="none"] {
  fill: none;
}

.thank-you-step-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 14.25rem;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--blue);
  color: var(--bg);
}

.thank-you-step-card__number {
  position: absolute;
  top: -2rem;
  left: 2rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 4rem;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: var(--text-white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

.thank-you-step-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.016em;
  color: rgba(255, 255, 255, 0.88);
}

.thank-you-step-card__eyebrow svg {
  color: currentColor;
}

.thank-you-step-card h3,
.thank-you-benefit h3,
.thank-you-reassurance__item h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.thank-you-step-card p,
.thank-you-benefit p,
.thank-you-reassurance__item p {
  margin: 0;
}

.thank-you-step-card > p:last-child {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.016em;
}

.thank-you-banner {
  display: grid;
  gap: 0.75rem;
  margin-top: 4rem;
  min-height: 4.875rem;
  padding: 1rem;
  border: 1px solid rgba(45, 206, 96, 0.7);
  border-radius: var(--radius-md);
}

.thank-you-banner strong {
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.thank-you-banner p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1875rem;
}

.thank-you-process {
  padding-top: 8rem;
  padding-bottom: 1rem;
}

.thank-you-process .section-heading {
  display: grid;
  gap: 0.75rem;
  width: 27.9375rem;
  margin-bottom: 0;
}

.thank-you-process .eyebrow {
  justify-self: center;
  min-height: 2.125rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}

.thank-you-benefits {
  display: grid;
  gap: 4rem 1.5rem;
  width: min(100%, 42.75rem);
  margin: 2rem auto;
  padding-block: 4rem;
}

.thank-you-benefit {
  display: grid;
  align-content: start;
  gap: 1rem;
  width: 20.625rem;
}

.thank-you-benefit p {
  font-size: 1rem;
  line-height: 1.5;
}

.thank-you-reassurance {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  margin-top: 0;
  padding: 2rem;
  border: 1px solid rgba(32, 32, 32, 0.5);
  border-radius: var(--radius-md);
}

.thank-you-reassurance__item {
  display: grid;
  gap: 0.5rem;
}

.thank-you-reassurance__item h3 {
  font-size: 1rem;
  line-height: 1.5;
}

.thank-you-reassurance__item p {
  font-size: 1rem;
  line-height: 1.5;
}

@media (min-width: 62rem) {
  h2{
    font-size: var(--text-display-lg);
  }
  .thank-you-banner {
    grid-template-columns: 34.3125rem minmax(0, 1fr);
    align-items: center;
    gap: 1.5625rem;
  }

  .thank-you-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1 span{
    display: block;
  }
  .two-coluns{
    display: flex;
    justify-content: space-between;
  }

  .wrap-content-form{
    padding: 4rem;
  }

  .policy-card-grid,
  .policy-rights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1{
    font-size: 3.5rem;
    line-height: 4rem;
  }

  .section-heading h2{
    font-size: var(--text-display-lg);
  }
}

@media (min-width: 78rem) {
  .thank-you-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .thank-you-reassurance {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


.policy-page {
  color: #314158;
}

.policy-page .brand {
  color: var(--text);
}

.policy-hero {
  background-color: var(--yellow);
}

.policy-hero__inner {
  display: grid;
  gap: 4rem;
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.policy-hero__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.policy-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.policy-hero__content {
  display: grid;
  gap: 1rem;
  width: min(100%, 42.5rem);
  margin-inline: auto;
  text-align: center;
}

.policy-hero__content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 4rem);
  font-weight: 100;
  line-height: 1.1;
  color: var(--text);
}

.policy-hero__content p {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.policy-hero__date {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.policy-main {
  padding-bottom: 5rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.policy-content {
  min-width: 0;
  margin-top: 4rem;
}

.policy-section {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.policy-section__title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.2;
  color: #0f172b;
}

.policy-section__heading-icon {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.policy-section__heading-icon svg {
  width: 2rem;
  height: 2rem;
  color: #155dfc;
}

.policy-section__heading-icon--light svg,
.policy-section--dark .policy-section__title {
  color: var(--bg);
}

.policy-section p,
.policy-list li,
.policy-right,
.policy-aside__nav a {
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: -0.02em;
}

.policy-section p {
  margin: 0;
}

.policy-note {
  padding: 1rem 1rem 1rem 1.25rem;
  border-left: 4px solid #2b7fff;
  border-radius: 0 0.625rem 0.625rem 0;
}

.policy-note--info {
  background: #eff6ff;
}

.policy-note--soft {
  background: #f1f5f9;
  border-left-color: #90a1b9;
}

.policy-note--warning {
  background: #fffbeb;
  border-left-color: #fe9a00;
}

.policy-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.policy-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.625rem;
  background: #f8fafc;
}

.policy-card__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.policy-card__header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #155dfc;
}

.policy-card__header h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1d293d;
}

.policy-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-list--bullet {
  display: grid;
  gap: 0.75rem;
}

.policy-list--bullet li {
  position: relative;
  padding-left: 1.125rem;
}

.policy-list--bullet li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #155dfc;
}

.policy-section--accent {
  padding: 2rem;
  border-radius: 0.875rem;
  background: linear-gradient(148deg, #eff6ff 0%, #eef2ff 100%);
}

.policy-rights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.policy-right {
  padding: 1rem;
  border-radius: 0.625rem;
  background: var(--bg);
  color: #314158;
}

.policy-right::before {
  content: "✓";
  margin-right: 0.5rem;
  color: #155dfc;
  font-weight: 700;
}

.policy-section--dark {
  padding: 2rem;
  border-radius: 0.875rem;
  background: #0f172b;
  color: #cad5e2;
}

.policy-contact-card {
  display: grid;
  gap: 0.5rem;
  padding: 1.5rem;
  border-radius: 0.625rem;
  background: #1d293d;
}

.policy-contact-card strong {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--bg);
}

.policy-contact-card a {
  color: #51a2ff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.policy-backtotop {
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.policy-backtotop a {
  color: #155dfc;
  font-weight: 500;
}

.policy-aside {
  display: none;
  position: sticky;
  top: 2rem;
}

.policy-aside__nav {
  display: grid;
  gap: 1rem;
  padding: 4rem 1rem;
}

.policy-aside__nav a {
  color: #45556c;
}

.footer__social-link:active {
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .state-card,
  .compare-card {
    transition:
      transform var(--speed-base) ease,
      box-shadow var(--speed-base) ease;
  }

  .state-card:hover{
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
    border: 1px solid var(--bg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 78rem) {
  .state-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare,
  .process-grid {
    --step-1: 1fr;
    --step-2: 1fr;
    --step-3: 1fr;
    grid-template-columns: 1fr;
  }

  .compare-panel {
    width: 100%;
  }

  .feature-card {
    gap: 1.5rem;
  }

  .step-card.is-active {
    grid-column: auto;
  }

  .feature-grid {
    justify-items: center;
    gap: 8rem 2rem;
  }

  .footer__main {
    gap: 3rem;
  }

  .thank-you-reassurance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 78rem) {
  .policy-layout {
    grid-template-columns: minmax(0, 50rem) 20.625rem;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .policy-aside {
    display: block;
  }

  .state-card{
    gap: 1rem;
  }
}

@media (max-width: 62rem) {
  :root {
    --container: min(100% - 1.5rem, 87rem);
    --text-display-xl: clamp(3.5rem, 10vw, 4.5rem);
    --text-display-lg: 2.5rem;
    --text-title-md: 1.125rem;
    --text-body-lg: 1.125rem;
    --text-body-md: 1rem;
    --text-body-sm: 0.875rem;
    --text-label: 0.8125rem;
    --text-button: 1.125rem;
    --leading-display-xl: 0.98;
    --leading-display-lg: 1.08;
    --leading-body-lg: 1.45;
  }

  .section,
  .section--tight,
  .hero {
    padding-block: 5rem;
  }

  .hero {
    padding-bottom: 2rem;
  }

  .brand__name {
    font-size: 1.75rem;
  }

  .compare-panel,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .state-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    gap: 2rem;
  }

  .step-card {
    min-height: auto;
  }

  .step-card__copy {
    grid-template-rows: auto;
  }

  .feature-card {
    width: min(100%, 22.875rem);
    min-height: auto;
    padding: 0;
  }

  .policy-hero__inner {
    gap: 3rem;
  }

  .policy-hero__content h1 {
    font-size: clamp(2.75rem, 12vw, 3.5rem);
  }

  .policy-section {
    margin-bottom: 3rem;
  }

  .policy-section__title {
    font-size: 1.625rem;
  }

  .footer__inner {
    gap: 3rem;
    padding-block: 5rem;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__intro {
    max-width: 36rem;
    padding-top: 0;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1rem;
  }

  .thank-you-summary {
    gap: 1.5rem;
  }

  .thank-you-banner strong {
    font-size: 1.25rem;
  }

  .footer__policy-link,
  .footer__copyright,
  .footer__social-link {
    justify-self: start;
  }

  .footer__social-link {
    order: 1;
  }

  .footer__policy-link {
    order: 2;
  }

  .footer__copyright {
    order: 3;
    text-align: left;
  }
}

@media (max-width: 40rem) {
  :root {
    --text-display-xl: clamp(2.75rem, 13vw, 3.5rem);
    --text-display-lg: 2.52rem;
    --text-title-md: 1rem;
    --text-body-lg: 1rem;
    --text-body-md: 0.9375rem;
    --text-body-sm: 0.8125rem;
    --text-label: 0.75rem;
    --text-badge: 0.5625rem;
    --text-button: 1rem;
    --leading-display-xl: 1.02;
    --leading-display-lg: 1.1;
    --leading-body-md: 1.55;
  }

  .hero__lead {
    width: min(100%, 19.5rem);
  }

  .hero__note {
    margin-top: 0.25rem;
  }

  .hero__note img {
    width: 8.5rem;
    bottom: -0.65rem;
  }

  .button {
    max-width: 22rem;
  }

  .policy-hero__topbar {
    align-items: flex-start;
  }

  .policy-close {
    min-height: auto;
    padding: 0.25rem 0 0;
  }

  .policy-hero__content {
    width: 100%;
  }

  .policy-section--accent,
  .policy-section--dark,
  .policy-card,
  .policy-contact-card {
    padding: 1.5rem;
  }

  .state-card {
    min-height: 9.5rem;
    border-radius: 2rem;
    padding: 2rem 1rem 1rem;
  }

  .compare-card {
    min-height: auto;
  }

  .feature-card {
    padding: 0;
  }

  h3{
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .step-card__number {
    left: 1.25rem;
  }

  .step-card__media {
    min-height: 14rem;
  }

  .footer__inner {
    gap: 2rem;
    padding-block: 4.5rem 3rem;
  }

  .footer__lead {
    margin-top: 1.5rem;
    font-size: var(--text-body-md);
    line-height: var(--leading-body-md);
  }

  .footer-form {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .form-field__label {
    font-size: 1rem;
  }

  .form-field__control {
    min-height: 3.25rem;
    padding-inline: 0.875rem;
  }

  .footer-form__actions,
  .footer-form__submit {
    width: 100%;
  }

  .footer__bottom {
    gap: 0.875rem;
  }

  .thank-you-hero__topbar {
    align-items: flex-start;
  }

  .thank-you-summary__copy h1 {
    font-size: clamp(2.75rem, 12vw, 3.5rem);
    line-height: 1.1;
  }

  .thank-you-step-card {
    min-height: auto;
    padding: 2rem 1.25rem 1.5rem;
  }

  .thank-you-step-card h3,
  .thank-you-benefit h3,
  .thank-you-reassurance__item h3 {
    font-size: 1.25rem;
  }

  .thank-you-step-card__number {
    left: 1.25rem;
    height: 2rem;
    border-radius: 0.625rem;
    font-size: 1.25rem;
  }

  .thank-you-step-card__eyebrow {
    gap: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .thank-you-step-card > p:last-child,
  .thank-you-benefit p,
  .thank-you-reassurance__item p {
    font-size: 0.9375rem;
    line-height: 1.55;
  }

  .thank-you-process {
    padding-top: 5rem;
  }

  .thank-you-process .section-heading,
  .thank-you-benefits,
  .thank-you-benefit {
    width: 100%;
  }

  .thank-you-benefits {
    margin-top: 3rem;
    padding-block: 2.5rem;
  }

  .thank-you-benefits,
  .thank-you-reassurance {
    grid-template-columns: 1fr;
  }
}

.confetti{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: -1;
}

.notice-whatsapp{
  margin-top: 4rem;
  max-width: 28rem;
  margin-bottom: 1rem;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 8px;
}