@font-face {
  font-family: "Rubik Local";
  src: url("/assets/rubik-latin-400-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Rubik Local";
  src: url("/assets/rubik-latin-500-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Rubik Local";
  src: url("/assets/rubik-latin-600-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Rubik Local";
  src: url("/assets/rubik-latin-700-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --navy: #212951;
  --navy-900: #2b3564;
  --navy-800: #364174;
  --ink: #1a2140;
  --slate: #5b6684;
  --orange: #ed6f3b;
  --orange-deep: #d95c27;
  --orange-pale: #fce8df;
  --sage: #6f9c7d;
  --sage-deep: #45694f;
  --sage-pale: #e6f2ea;
  --cream: #fbfaf6;
  --cream-deep: #f4f1e9;
  --white: #ffffff;
  --line: #d9dde8;
  --danger: #b62927;
  --container: 77rem;
  --gutter: clamp(1.1rem, 4vw, 3.4rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 1.5rem 4rem rgb(33 41 81 / 18%);
  --shadow-soft: 0 0.9rem 2.5rem rgb(33 41 81 / 10%);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  background:
    radial-gradient(circle at 6% 21%, rgb(111 156 125 / 9%), transparent 24rem),
    var(--cream);
  color: var(--ink);
  font-family: "Rubik Local", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
}

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

[hidden] {
  display: none !important;
}

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

h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.048em;
  line-height: 1.01;
}

svg path,
svg rect {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

:focus-visible {
  outline: 0.2rem solid var(--orange);
  outline-offset: 0.22rem;
}

::selection {
  background: var(--orange);
  color: var(--navy);
}

.layout {
  margin-inline: auto;
  max-width: var(--container);
  padding-inline: var(--gutter);
  width: 100%;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  background: var(--orange);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  left: 1rem;
  padding: 0.78rem 1rem;
  position: fixed;
  top: -5rem;
  transition: top 180ms ease;
  z-index: 1000;
}

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

.site-header {
  background: #fff;
  border-bottom: 1px solid rgb(33 41 81 / 10%);
  height: 5.5rem;
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin-inline: auto;
  max-width: var(--container);
  padding-inline: var(--gutter);
}

.co-brand {
  align-items: center;
  display: flex;
  gap: clamp(0.58rem, 1.4vw, 1rem);
  min-width: 0;
}

.co-brand__abu {
  height: 3.9rem;
  max-height: none;
  object-fit: contain;
  object-position: center;
  width: clamp(8.5rem, 16vw, 11.7rem);
}

.co-brand__divider {
  background: var(--line);
  height: 2.45rem;
  width: 1px;
}

.co-brand__consejo {
  height: 3.9rem;
  object-fit: contain;
  object-position: center;
  width: clamp(8.5rem, 16vw, 11.7rem);
  /* Compensate for the white margins in the supplied Council logo. */
  transform: scale(1.18);
}

.header-cta,
.button {
  align-items: center;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 0.82rem;
  justify-content: center;
  letter-spacing: 0.09em;
  min-height: 3.2rem;
  text-transform: uppercase;
  transition:
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease),
    background 180ms ease;
}

.header-cta {
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem clamp(0.8rem, 2.15vw, 1.45rem);
}

.header-cta svg,
.button svg,
.text-link svg {
  height: 1.1rem;
  flex: 0 0 auto;
  transition: transform 180ms var(--ease);
  width: 1.1rem;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--orange);
  color: var(--navy);
  transform: translateY(-0.1rem);
}

.header-cta:hover svg,
.button:hover svg,
.text-link:hover svg {
  transform: translateX(0.18rem);
}

.campaign-ribbon {
  align-items: center;
  background: var(--orange);
  color: var(--navy);
  display: flex;
  min-height: 2.75rem;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.campaign-ribbon__viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.campaign-ribbon__track {
  align-items: center;
  animation: campaign-marquee 29s linear infinite;
  display: flex;
  font-size: 0.68rem;
  font-weight: 700;
  gap: 1.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  width: max-content;
}

.campaign-ribbon__track i {
  background: currentColor;
  border-radius: 100%;
  display: block;
  height: 0.35rem;
  opacity: 0.7;
  width: 0.35rem;
}

.campaign-ribbon.is-paused .campaign-ribbon__track {
  animation-play-state: paused;
}

html.motion-paused .campaign-ribbon__track {
  animation-play-state: paused;
}

.campaign-ribbon__toggle {
  align-items: center;
  align-self: stretch;
  background: rgb(33 41 81 / 12%);
  border: 0;
  color: var(--navy);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.66rem;
  font-weight: 700;
  gap: 0.4rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 1rem;
}

.campaign-ribbon__toggle:hover {
  background: rgb(33 41 81 / 20%);
}

.campaign-ribbon__toggle-icon {
  font-size: 1rem;
  line-height: 1;
}

.hero {
  background:
    radial-gradient(circle at 21% 23%, rgb(111 156 125 / 34%), transparent 29rem),
    linear-gradient(127deg, #131a3a 0%, var(--navy) 55%, #2e4371 100%);
  color: var(--white);
  isolation: isolate;
  min-height: min(48rem, calc(100vh - 8.25rem));
  overflow: clip;
  position: relative;
}

.hero::after {
  background:
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(0deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 2.8rem 2.8rem;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
  opacity: 0.26;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero__field {
  inset: 0 0 0 45%;
  overflow: hidden;
  position: absolute;
  z-index: -3;
}

.hero__field::after {
  background:
    linear-gradient(90deg, var(--navy) 0%, rgb(33 41 81 / 84%) 18%, rgb(33 41 81 / 20%) 67%, rgb(12 17 40 / 32%) 100%),
    linear-gradient(0deg, rgb(13 21 48 / 49%), transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero__field img {
  height: 100%;
  object-fit: cover;
  object-position: 49% center;
  width: 100%;
}

.hero__wash {
  background: radial-gradient(ellipse at 76% 80%, rgb(237 111 59 / 22%), transparent 33%);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -2;
}

.hero__layout {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5.5vw, 6.4rem);
  grid-template-columns: minmax(0, 1.13fr) minmax(20.5rem, 0.78fr);
  min-height: inherit;
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
  padding-top: clamp(3.5rem, 7vw, 6.5rem);
}

.hero__copy {
  max-width: 43rem;
}

.eyebrow {
  align-items: center;
  color: var(--orange-deep);
  display: flex;
  font-size: 0.69rem;
  font-weight: 700;
  gap: 0.68rem;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  display: block;
  flex: 0 0 auto;
  height: 0.16rem;
  width: 1.7rem;
}

.eyebrow--light {
  color: #ffb08e;
}

.eyebrow__mark {
  border: 1px solid currentColor;
  border-radius: 50%;
  height: 0.54rem;
  position: relative;
  width: 0.54rem;
}

.eyebrow__mark::after {
  background: currentColor;
  border-radius: 50%;
  content: "";
  height: 0.2rem;
  inset: 0;
  margin: auto;
  position: absolute;
  width: 0.2rem;
}

.hero .eyebrow {
  color: #ffb08e;
  margin-bottom: 1.25rem;
}

.hero .eyebrow::before {
  display: none;
}

.hero h1 {
  font-size: clamp(3.15rem, 6vw, 5.75rem);
  max-width: 10.8ch;
}

.hero__lead {
  color: rgb(255 255 255 / 82%);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.62;
  margin-top: clamp(1.25rem, 2.8vw, 1.85rem);
  max-width: 38rem;
}

.hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem 1.4rem;
  margin-top: 2rem;
}

.button {
  border: 1px solid transparent;
  padding: 0.82rem 1.05rem 0.82rem 1.25rem;
}

.button--orange {
  background: var(--orange);
  color: var(--navy);
}

.button--orange:hover,
.button--orange:focus-visible {
  background: #ff9369;
  box-shadow: 0 0.8rem 1.8rem rgb(237 111 59 / 23%);
  transform: translateY(-0.13rem);
}

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

.button--navy:hover,
.button--navy:focus-visible {
  background: var(--orange);
  color: var(--navy);
  transform: translateY(-0.13rem);
}

.button--pulse {
  animation: cta-pulse 3.2s ease-in-out infinite;
}

.hero__note {
  align-items: center;
  color: rgb(255 255 255 / 73%);
  display: flex;
  font-size: 0.77rem;
  gap: 0.5rem;
  max-width: 16rem;
}

.hero__note svg {
  color: #b6dbc1;
  flex: 0 0 auto;
  height: 1.15rem;
  width: 1.15rem;
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: clamp(2rem, 5vw, 4.2rem);
}

.hero__signals span {
  border: 1px solid rgb(255 255 255 / 25%);
  color: rgb(255 255 255 / 83%);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.72rem;
}

.form-shell {
  background:
    radial-gradient(circle at 102% 0%, rgb(111 156 125 / 20%), transparent 13rem),
    var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
  outline: 1px solid rgb(255 255 255 / 29%);
  padding: clamp(1.45rem, 2.9vw, 2.35rem);
  position: relative;
}

.form-shell::before,
.form-shell::after {
  content: "";
  position: absolute;
}

.form-shell::before {
  background: var(--orange);
  height: 0.45rem;
  left: 0;
  top: 0;
  width: 7.2rem;
}

.form-shell::after {
  border: 1px solid var(--sage);
  bottom: -0.85rem;
  height: 2.75rem;
  right: -0.85rem;
  width: 2.75rem;
  z-index: -1;
}

.form-shell__topline {
  color: var(--sage-deep);
  display: flex;
  font-size: 0.65rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.11em;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.form-shell__topline span:last-child {
  color: var(--orange);
  font-size: 0.95rem;
  line-height: 0.8;
}

.form-shell h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.35rem);
}

.form-shell__intro {
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-top: 0.8rem;
}

.offer-form {
  margin-top: 1.45rem;
}

.offer-form__fields {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: 1fr 1fr;
}

.field {
  min-width: 0;
}

.field label {
  color: var(--navy);
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.36rem;
}

.field label span {
  color: var(--orange-deep);
}

.field input {
  background: #fbfcfd;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  min-height: 2.78rem;
  padding: 0.62rem 0.7rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  width: 100%;
}

.field input:hover {
  border-color: #9ca6bf;
}

.field input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 0.18rem rgb(111 156 125 / 17%);
  outline: 0;
}

.field input[aria-invalid="true"] {
  border-color: var(--danger);
}

.field.has-error input {
  border-color: var(--danger);
}

.field__error {
  color: var(--danger);
  font-size: 0.69rem;
  line-height: 1.35;
  margin-top: 0.35rem;
}

.offer-form__trap {
  height: 1px;
  left: -10000px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.consent {
  align-items: flex-start;
  color: var(--slate);
  cursor: pointer;
  display: flex;
  font-size: 0.75rem;
  gap: 0.56rem;
  line-height: 1.45;
  margin-top: 1rem;
}

.consent input {
  accent-color: var(--sage-deep);
  flex: 0 0 auto;
  height: 1rem;
  margin: 0.12rem 0 0;
  width: 1rem;
}

.consent a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.14rem;
}

.field__error--consent {
  margin-left: 1.57rem;
}

.field--full { margin-top: 0.85rem; }
.field__optional { font-weight: 400; color: var(--slate); }

.diploma-field__label {
  display: block;
  margin-bottom: 0.36rem;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
}
.diploma-picker {
  border: 1px solid var(--line);
  background: #fbfcfd;
  min-width: 0;
}
.diploma-picker summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 3rem;
  padding: 0.72rem;
  color: var(--navy);
  font-size: 0.85rem;
  line-height: 1.4;
  list-style: none;
}
.diploma-picker summary::-webkit-details-marker { display: none; }
.diploma-picker summary::after {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-right: 0.2rem;
}
.diploma-picker[open] summary { border-bottom: 1px solid var(--line); }
.diploma-picker[open] summary::after { transform: rotate(225deg); }
.diploma-picker summary:focus-visible { outline: 3px solid var(--sage); outline-offset: 2px; }
.diploma-options {
  border: 0;
  margin: 0;
  padding: 0.3rem;
  max-height: 18rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  min-width: 0;
}
.field .diploma-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  min-height: 2.8rem;
  padding: 0.65rem 0.5rem;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  cursor: pointer;
}
.field .diploma-option span { color: var(--navy); overflow-wrap: anywhere; }
.field .diploma-option input {
  width: 1.1rem;
  height: 1.1rem;
  min-height: 1.1rem;
  flex: 0 0 1.1rem;
  margin: 0.1rem 0 0;
  padding: 0;
  accent-color: var(--navy);
}
.diploma-option:hover, .diploma-option:focus-within { background: var(--sage-pale); }
.diploma-option:has(input:checked) { background: var(--sage-pale); }
.diploma-hint, .diploma-selected {
  color: var(--slate);
  font-size: 0.72rem;
  line-height: 1.5;
  margin: 0.45rem 0 0;
  overflow-wrap: anywhere;
}
.diploma-selected { color: var(--navy); font-weight: 500; }
.diploma-clear {
  min-height: 2.75rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 0.72rem;
  padding: 0.45rem 0;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}


.offer-form__submit {
  margin-top: 1.25rem;
  min-height: 3.38rem;
  width: 100%;
}

.offer-form__loader {
  animation: loader-spin 0.85s linear infinite;
  border: 2px solid rgb(255 255 255 / 42%);
  border-radius: 50%;
  border-top-color: currentColor;
  display: none;
  height: 1rem;
  width: 1rem;
}

.offer-form[aria-busy="true"] .offer-form__loader {
  display: inline-block;
}

.offer-form.is-submitting .offer-form__loader {
  display: inline-block;
}

.offer-form[aria-busy="true"] .offer-form__submit-label,
.offer-form[aria-busy="true"] .offer-form__submit svg {
  display: none;
}

.offer-form.is-submitting .offer-form__submit-label,
.offer-form.is-submitting .offer-form__submit svg {
  display: none;
}

.form-shell__privacy {
  align-items: center;
  color: var(--slate);
  display: flex;
  font-size: 0.68rem;
  gap: 0.4rem;
  justify-content: center;
  letter-spacing: 0.04em;
  margin-top: 0.9rem;
}

.form-shell__privacy svg {
  color: var(--sage-deep);
  height: 0.9rem;
  width: 0.9rem;
}

.form-status:not(:empty) {
  background: var(--orange-pale);
  border-left: 0.22rem solid var(--orange-deep);
  color: #873917;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.62rem 0.72rem;
}

.form-status.is-error {
  background: #ffefed;
  border-left-color: var(--danger);
  color: var(--danger);
}

.form-status--noscript {
  margin-top: 1rem;
}

.form-success {
  padding: 1.5rem 0 0.4rem;
}

.form-success__icon {
  align-items: center;
  background: var(--sage-pale);
  border-radius: 50%;
  color: var(--sage-deep);
  display: inline-flex;
  font-size: 1.5rem;
  font-weight: 700;
  height: 3rem;
  justify-content: center;
  margin-bottom: 1.35rem;
  width: 3rem;
}

.form-success .eyebrow {
  margin-bottom: 0.75rem;
}

.form-success h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.form-success > p:last-child {
  color: var(--slate);
  font-size: 0.93rem;
  line-height: 1.62;
  margin-top: 1rem;
}

.section {
  padding-block: clamp(4rem, 8vw, 7.6rem);
}

.section-heading {
  display: grid;
  gap: 1.2rem;
  margin-bottom: clamp(2.2rem, 5vw, 4.25rem);
  max-width: 50rem;
}

.section-heading h2,
.process__heading h2,
.faq__heading h2 {
  font-size: clamp(2.15rem, 4vw, 4.1rem);
  max-width: 14ch;
}

.section-heading > p:last-child,
.process__heading > p:last-of-type,
.faq__heading > p:last-child {
  color: var(--slate);
  font-size: clamp(0.98rem, 1.5vw, 1.13rem);
  line-height: 1.68;
  max-width: 43rem;
}

.offer-overview {
  background:
    linear-gradient(90deg, rgb(33 41 81 / 2%) 1px, transparent 1px),
    linear-gradient(0deg, rgb(33 41 81 / 2%) 1px, transparent 1px),
    var(--cream);
  background-size: 3rem 3rem;
}

.offer-overview__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.route-card {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 21.5rem;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms var(--ease), transform 220ms var(--ease);
}

.route-card::after {
  background: var(--orange);
  bottom: 0;
  content: "";
  height: 0.25rem;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
  width: 100%;
}

.route-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-soft);
  transform: translateY(-0.3rem);
}

.route-card:hover::after {
  transform: scaleX(1);
}

.route-card__number {
  color: var(--orange-deep);
  display: block;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.route-card__icon {
  align-items: center;
  background: var(--sage-pale);
  border-radius: 50%;
  color: var(--sage-deep);
  display: flex;
  height: 3.8rem;
  justify-content: center;
  margin-block: clamp(2rem, 4vw, 3.35rem) 1.25rem;
  width: 3.8rem;
}

.route-card__icon svg {
  height: 1.8rem;
  width: 1.8rem;
}

.route-card h3 {
  font-size: 1.48rem;
}

.route-card p {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.62;
  margin-top: 0.85rem;
}

.field-feature {
  background: var(--navy);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 35.5rem;
}

.field-feature__media {
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.field-feature__media::after {
  background: linear-gradient(90deg, rgb(33 41 81 / 0%), var(--navy));
  content: "";
  inset: 0;
  position: absolute;
}

.field-feature__media img {
  filter: saturate(0.86) contrast(1.04);
  height: 100%;
  min-height: 35.5rem;
  object-fit: cover;
  width: 100%;
}

.field-feature__content {
  align-self: center;
  max-width: 41rem;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter) clamp(4rem, 8vw, 8rem) clamp(2rem, 7vw, 7rem);
  position: relative;
}

.field-feature__line {
  background: var(--orange);
  height: 0.28rem;
  margin-bottom: 1.55rem;
  width: 3.5rem;
}

.field-feature h2 {
  font-size: clamp(2.3rem, 4.25vw, 4.35rem);
  max-width: 11.5ch;
}

.field-feature__content > p:last-of-type {
  color: rgb(255 255 255 / 76%);
  font-size: clamp(0.98rem, 1.45vw, 1.13rem);
  line-height: 1.7;
  margin-top: 1.4rem;
  max-width: 34rem;
}

.text-link {
  align-items: center;
  border-bottom: 1px solid rgb(255 255 255 / 46%);
  color: var(--white);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 0.85rem;
  letter-spacing: 0.09em;
  margin-top: 2rem;
  padding-bottom: 0.45rem;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

.process {
  background: var(--white);
}

.process__layout {
  display: grid;
  gap: clamp(2.8rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
}

.process__heading {
  align-self: start;
  display: grid;
  gap: 1.2rem;
  position: sticky;
  top: 2rem;
}

.process__heading .button {
  margin-top: 0.5rem;
  width: fit-content;
}

.process__steps {
  counter-reset: steps;
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-step {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.3rem);
  grid-template-columns: 2.7rem 1fr;
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
}

.process-step:last-child {
  border-bottom: 1px solid var(--line);
}

.process-step__number {
  align-items: center;
  background: var(--sage-pale);
  border-radius: 50%;
  color: var(--sage-deep);
  display: flex;
  font-size: 0.85rem;
  font-weight: 700;
  height: 2.7rem;
  justify-content: center;
  width: 2.7rem;
}

.process-step h3 {
  font-size: clamp(1.28rem, 2vw, 1.65rem);
}

.process-step p {
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-top: 0.65rem;
  max-width: 29rem;
}

.faq {
  background: var(--cream-deep);
}

.faq__layout {
  display: grid;
  gap: clamp(2.5rem, 8vw, 8.6rem);
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
}

.faq__heading {
  display: grid;
  gap: 1.15rem;
}

.faq__list {
  align-self: start;
  border-top: 1px solid rgb(33 41 81 / 22%);
}

.faq-item {
  border-bottom: 1px solid rgb(33 41 81 / 18%);
  padding: 0;
}

.faq-item summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 600;
  gap: 1rem;
  justify-content: space-between;
  list-style: none;
  padding: 1.25rem 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: var(--orange-deep);
  content: "+";
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 0.7;
  transition: transform 180ms var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 41rem;
  padding: 0 2.2rem 1.25rem 0;
}

.closing-cta {
  background:
    radial-gradient(circle at 84% 28%, rgb(111 156 125 / 48%), transparent 19rem),
    var(--navy);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.closing-cta__grain {
  background:
    repeating-linear-gradient(124deg, rgb(255 255 255 / 7%) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 11% 85%, rgb(237 111 59 / 34%), transparent 25rem);
  inset: 0;
  opacity: 0.46;
  pointer-events: none;
  position: absolute;
}

.closing-cta__layout {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  min-height: 19rem;
  padding-block: 3.4rem;
  position: relative;
}

.closing-cta h2 {
  font-size: clamp(2.15rem, 4.2vw, 4.2rem);
  margin-top: 1rem;
  max-width: 15ch;
}

.closing-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  background: #161c3b;
  color: var(--white);
}

.site-footer__inner {
  align-items: start;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-block: 3.2rem 2.5rem;
}

.site-footer__brand {
  max-width: 23rem;
}

.site-footer__brand img {
  height: 4.2rem;
  width: 12rem;
  object-fit: contain;
}

.site-footer__brand p {
  color: rgb(255 255 255 / 63%);
  font-size: 0.78rem;
  line-height: 1.57;
  margin-top: 1.15rem;
}

.site-footer__campaign {
  max-width: 23rem;
  text-align: right;
}

.site-footer__campaign > p {
  color: rgb(255 255 255 / 62%);
  font-size: 0.78rem;
  line-height: 1.57;
  margin-top: 1.15rem;
}

.site-footer__consejo-logo {
  background: var(--white);
  display: inline-flex;
  vertical-align: top;
  width: 12rem;
  height: 4.2rem;
  overflow: hidden;
  padding: 0;
}

.site-footer__consejo-logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
  transform: scale(1.18);
  transform-origin: 50% 20%;
}

.site-footer__bottom {
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 13%);
  color: rgb(255 255 255 / 56%);
  display: flex;
  font-size: 0.68rem;
  justify-content: space-between;
  padding-block: 1.15rem;
}

.site-footer__bottom a {
  color: var(--white);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.promo-panel {
  background:
    linear-gradient(133deg, rgb(255 255 255 / 8%), transparent 36%),
    var(--navy);
  bottom: 1.25rem;
  box-shadow: 0 1.3rem 4rem rgb(4 8 28 / 35%);
  color: var(--white);
  max-width: min(24.3rem, calc(100vw - 2.5rem));
  padding: 1.45rem 1.35rem 1.35rem;
  position: fixed;
  right: 1.25rem;
  z-index: 50;
}

.promo-panel::after {
  border: 1px solid rgb(182 219 193 / 51%);
  content: "";
  height: 2rem;
  position: absolute;
  right: -0.45rem;
  top: -0.45rem;
  width: 2rem;
}

.promo-panel:not([hidden]) {
  animation: promo-enter 420ms var(--ease) both;
}

.promo-panel__close {
  align-items: center;
  background: rgb(255 255 255 / 11%);
  border: 0;
  color: var(--white);
  display: flex;
  height: 2rem;
  justify-content: center;
  position: absolute;
  right: 0.7rem;
  top: 0.7rem;
  width: 2rem;
}

.promo-panel__close:hover {
  background: var(--orange);
  color: var(--navy);
}

.promo-panel__close svg {
  height: 1rem;
  width: 1rem;
}

.promo-panel__eyebrow {
  color: #b6dbc1;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  padding-right: 2rem;
  text-transform: uppercase;
}

.promo-panel h2 {
  font-size: 1.7rem;
  margin-top: 0.7rem;
}

.promo-panel > p:not(.promo-panel__eyebrow) {
  color: rgb(255 255 255 / 73%);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-top: 0.6rem;
}

.promo-panel .button {
  font-size: 0.66rem;
  margin-top: 1rem;
  min-height: 2.8rem;
  padding-inline: 0.85rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes campaign-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgb(237 111 59 / 0%); }
  48% { box-shadow: 0 0 0 0.55rem rgb(237 111 59 / 0%); }
  56% { box-shadow: 0 0 0 0.55rem rgb(237 111 59 / 18%); }
  68% { box-shadow: 0 0 0 0.95rem rgb(237 111 59 / 0%); }
}

@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

@keyframes promo-enter {
  from { opacity: 0; transform: translateY(1.4rem) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 65rem) {
  .hero {
    min-height: auto;
  }

  .hero__field {
    inset: 0;
  }

  .hero__field::after {
    background:
      linear-gradient(90deg, rgb(33 41 81 / 96%), rgb(33 41 81 / 68%) 58%, rgb(33 41 81 / 72%)),
      linear-gradient(0deg, rgb(13 21 48 / 50%), transparent 55%);
  }

  .hero__layout {
    gap: 3rem;
    grid-template-columns: minmax(0, 1fr) minmax(18.5rem, 0.77fr);
  }

  .hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.65rem);
  }

  .field-feature__content {
    padding-left: clamp(1.8rem, 5vw, 4rem);
  }

  .field-feature h2 {
    font-size: clamp(2.1rem, 3.9vw, 3.4rem);
  }
}

@media (max-width: 53rem) {
  .hero__layout,
  .field-feature,
  .process__layout,
  .faq__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__layout {
    padding-bottom: 3.8rem;
    padding-top: 4.2rem;
  }

  .hero__copy {
    max-width: 38rem;
  }

  .hero__field {
    inset: 0;
  }

  .hero__field::after {
    background: linear-gradient(90deg, rgb(33 41 81 / 95%), rgb(33 41 81 / 71%)), linear-gradient(0deg, rgb(13 21 48 / 53%), transparent 60%);
  }

  .form-shell {
    max-width: 35rem;
  }

  .offer-overview__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .route-card {
    min-height: 20rem;
    padding: 1.25rem;
  }

  .route-card__icon {
    margin-block: 2rem 1rem;
  }

  .field-feature__media img {
    min-height: min(76vw, 31rem);
  }

  .field-feature__media::after {
    background: linear-gradient(0deg, var(--navy), rgb(33 41 81 / 4%) 64%);
  }

  .field-feature__content {
    max-width: none;
    padding: 1rem var(--gutter) 4rem;
  }

  .process__heading {
    position: static;
  }

  .faq__heading h2 {
    max-width: 16ch;
  }
}

@media (max-width: 42rem) {
  html {
    scroll-padding-top: 8.8rem;
  }

  .site-header {
    height: auto;
  }

  .site-header__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    padding-block: 0.55rem;
  }

  .co-brand {
    gap: 0.7rem;
    width: 100%;
    justify-content: center;
  }

  .co-brand__abu {
    max-height: none;
    height: 3rem;
    width: 8.6rem;
  }

  .co-brand__divider {
    height: 1.85rem;
  }

  .co-brand__consejo {
    height: 3rem;
    width: 8.6rem;
  }

  .header-cta {
    width: 100%;
    font-size: 0.62rem;
    gap: 0.28rem;
    letter-spacing: 0.04em;
    min-height: 2.65rem;
    padding: 0.6rem;
  }

  .header-cta svg {
    height: 0.83rem;
    width: 0.83rem;
  }

  .campaign-ribbon {
    min-height: 2.35rem;
  }

  .campaign-ribbon__track {
    font-size: 0.58rem;
    gap: 0.85rem;
  }

  .campaign-ribbon__toggle {
    padding-inline: 0.65rem;
  }

  .campaign-ribbon__toggle-label {
    display: none;
  }

  .hero__layout {
    gap: 2rem;
    padding-bottom: 2.9rem;
    padding-top: 3.35rem;
  }

  .hero h1 {
    font-size: clamp(2.72rem, 12vw, 4.25rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button--orange.button--pulse {
    width: 100%;
  }

  .hero__note {
    max-width: none;
  }

  .hero__signals {
    margin-top: 2rem;
  }

  .form-shell {
    padding: 1.4rem 1.15rem;
  }

  .form-shell::after {
    display: none;
  }

  .offer-form__fields {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 3.8rem;
  }

  .section-heading h2,
  .process__heading h2,
  .faq__heading h2 {
    font-size: clamp(2rem, 9.6vw, 3.2rem);
  }

  .offer-overview__grid {
    grid-template-columns: 1fr;
  }

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

  .route-card__icon {
    margin-block: 1.55rem 0.9rem;
  }

  .field-feature__media img {
    min-height: 17rem;
  }

  .field-feature h2 {
    font-size: clamp(2.15rem, 10vw, 3.45rem);
  }

  .process__layout,
  .faq__layout {
    gap: 2.5rem;
  }

  .process__heading .button {
    width: 100%;
  }

  .closing-cta__layout {
    align-items: stretch;
    flex-direction: column;
    min-height: 0;
    padding-block: 4rem;
  }

  .closing-cta h2 {
    font-size: clamp(2.15rem, 9.7vw, 3.3rem);
  }

  .closing-cta .button {
    width: 100%;
  }

  .site-footer__inner {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .site-footer__campaign {
    text-align: left;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .promo-panel {
    bottom: 0.8rem;
    max-width: calc(100vw - 1.6rem);
    right: 0.8rem;
  }
}

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

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

  .campaign-ribbon__track {
    transform: translateX(0) !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
