@font-face {
  font-family: "OpoBus Montserrat";
  src: url("assets/fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --navy: #112e54;
  --navy-deep: #071c36;
  --cyan: #1196b8;
  --turquoise: #28b8b2;
  --yellow: #ffb511;
  --cream: #fff9e9;
  --paper: #fffdf7;
  --white: #ffffff;
  --ink: #17345a;
  --muted: #5f6f83;
  --line: rgba(17, 46, 84, 0.14);
  --soft-cyan: #e8f8fa;
  --shadow: 0 28px 70px rgba(7, 28, 54, 0.14);
  --display: "OpoBus Montserrat", "Arial Black", sans-serif;
  --body: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(17, 46, 84, 0.06) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  content: "";
  opacity: 0.22;
  pointer-events: none;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.campaign-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(17, 46, 84, 0.08);
  background: rgba(255, 253, 247, 0.9);
  backdrop-filter: blur(18px);
}

.campaign-brand img {
  width: 176px;
  height: auto;
}

.campaign-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.campaign-header nav a {
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.campaign-header nav a:hover {
  background: rgba(17, 150, 184, 0.08);
}

.campaign-header nav .header-login {
  border: 1px solid var(--line);
}

.campaign-header nav .header-cta {
  background: var(--navy);
  color: var(--white);
  padding-inline: 18px;
}

.campaign-header nav .header-cta:hover {
  background: var(--cyan);
  transform: translateY(-1px);
}

.campaign-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(32px, 6vw, 92px);
  min-height: calc(100svh - 76px);
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 104px) clamp(22px, 6vw, 88px) clamp(64px, 8vw, 112px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.campaign-kicker,
.section-kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.campaign-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.campaign-kicker span {
  width: 28px;
  height: 5px;
  border-radius: 999px;
  background: var(--yellow);
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.2vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

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

.hero-lead {
  max-width: 700px;
  margin: 30px 0 0;
  color: #405774;
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.65;
}

.hero-lead strong {
  color: var(--navy);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-facts strong {
  color: var(--navy);
  font-family: var(--display);
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 58px;
  padding: 14px 24px;
  border-radius: 18px;
  background: var(--navy);
  box-shadow: 0 15px 34px rgba(17, 46, 84, 0.2);
  color: var(--white);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
  background: var(--cyan);
}

.primary-cta span {
  color: var(--yellow);
  font-size: 1.4rem;
}

.hero-small {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-stage {
  position: relative;
  min-height: 650px;
  isolation: isolate;
}

.collage-panel {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 9%;
  overflow: hidden;
  border: 1px solid rgba(17, 46, 84, 0.1);
  border-radius: 42px 42px 140px 42px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.08), rgba(255, 249, 233, 0.2)),
    url("assets/oposigue-collage.webp") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.collage-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 253, 247, 0.52), transparent 30%);
  content: "";
}

.promo-ticket {
  position: absolute;
  z-index: 3;
  top: 17%;
  left: 0;
  display: flex;
  width: min(350px, 72%);
  min-height: 190px;
  flex-direction: column;
  justify-content: center;
  padding: 28px 32px;
  border: 1px solid rgba(17, 46, 84, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 54px rgba(7, 28, 54, 0.19);
  backdrop-filter: blur(10px);
}

.promo-ticket::before,
.promo-ticket::after {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 44px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--cream);
  content: "";
}

.promo-ticket::before {
  left: -13px;
}

.promo-ticket::after {
  right: -13px;
}

.ticket-label,
.ticket-validity {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-ticket strong {
  margin: 13px 0 14px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: 0.02em;
}

.ticket-validity {
  color: var(--cyan);
  letter-spacing: 0.03em;
  text-transform: none;
}

.exam-badge {
  position: absolute;
  z-index: 3;
  right: -16px;
  bottom: 12%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 23px;
  border-radius: 22px;
  background: var(--yellow);
  box-shadow: 0 18px 36px rgba(119, 83, 0, 0.2);
  color: var(--navy);
}

.exam-badge span {
  font-size: 0.75rem;
  font-weight: 800;
}

.exam-badge strong {
  font-family: var(--display);
  font-size: 1.3rem;
}

.route-line {
  position: absolute;
  z-index: 2;
  right: 9%;
  top: 8%;
  width: 38%;
  height: 80%;
  border-right: 9px solid rgba(17, 46, 84, 0.82);
  border-radius: 0 100% 100% 0;
  transform: rotate(10deg);
  pointer-events: none;
}

.route-stop {
  position: absolute;
  right: -17px;
  width: 25px;
  height: 25px;
  border: 7px solid var(--navy);
  border-radius: 50%;
  background: var(--paper);
}

.route-stop-one { top: 18%; }
.route-stop-two { top: 49%; }
.route-stop-three { top: 78%; }

.method-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: -20px auto 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(7, 28, 54, 0.15);
}

.method-strip span {
  display: grid;
  min-height: 82px;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(0.8rem, 1.5vw, 1.05rem);
  letter-spacing: 0.08em;
}

.method-strip span:nth-child(2) {
  background: var(--cyan);
}

.method-strip span:nth-child(3) {
  background: var(--yellow);
  color: var(--navy);
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(88px, 10vw, 150px) clamp(22px, 5vw, 54px);
}

.section-heading {
  max-width: 820px;
}

.section-heading.compact {
  max-width: 600px;
}

.section-heading h2,
.redemption-copy h2,
.reservation-heading h2,
.final-banner h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.redemption-copy > p {
  max-width: 730px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.renewal-note {
  margin-top: 34px;
  padding: 20px 22px;
  border: 1px solid rgba(17, 46, 84, 0.12);
  border-left: 6px solid var(--yellow);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.renewal-note strong {
  color: var(--navy);
}

.renewal-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.value-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(17, 46, 84, 0.07);
}

.value-card.featured {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-18px);
}

.value-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  background: var(--soft-cyan);
  color: var(--cyan);
  font-family: var(--display);
}

.value-card.featured .value-icon {
  background: var(--yellow);
  color: var(--navy);
}

.value-card h3 {
  margin: 56px 0 14px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.3rem;
}

.value-card.featured h3 {
  color: var(--white);
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.value-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.redemption-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
  max-width: 1320px;
}

.redemption-steps {
  display: grid;
  gap: 22px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.redemption-steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.redemption-steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--white);
  font-family: var(--display);
}

.redemption-steps li:nth-child(2) > span {
  background: var(--yellow);
  color: var(--navy);
}

.redemption-steps strong {
  display: block;
  margin-top: 1px;
  color: var(--navy);
  font-size: 1rem;
}

.redemption-steps p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.reservation-card {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(17, 46, 84, 0.1);
  border-radius: 38px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.reservation-card::before {
  position: absolute;
  z-index: -1;
  right: -14px;
  bottom: -16px;
  width: 100%;
  height: 100%;
  border-radius: 38px;
  background: var(--navy);
  content: "";
}

.reservation-heading > span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.07em;
}

.reservation-heading h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

.reservation-heading p {
  margin: 14px 0 0;
  color: var(--muted);
}

.reservation-heading p strong {
  color: var(--cyan);
}

.offer-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.offer-summary > div {
  display: flex;
  min-height: 78px;
  flex-direction: column;
  justify-content: center;
  padding: 14px 16px;
  background: #fafdfe;
}

.offer-summary strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.12rem;
}

.offer-summary span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.73rem;
}

.account-mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 22px;
  padding: 4px;
  border-radius: 15px;
  background: #eef4f7;
}

.account-mode-switch button {
  min-height: 42px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 900;
}

.account-mode-switch button.is-active {
  background: var(--white);
  box-shadow: 0 5px 15px rgba(17, 46, 84, 0.09);
  color: var(--navy);
}

.account-panel {
  margin-top: 20px;
}

.activation-form {
  display: grid;
  gap: 17px;
}

.activation-form > label:not(.privacy-check) {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.activation-form input[type="text"],
.activation-form input[type="email"],
.activation-form input[type="password"] {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(17, 46, 84, 0.18);
  border-radius: 15px;
  background: #fbfcfd;
  color: var(--navy);
  padding: 12px 15px;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.activation-form input[type="text"]:focus,
.activation-form input[type="email"]:focus,
.activation-form input[type="password"]:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(17, 150, 184, 0.12);
  outline: none;
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.45;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--cyan);
}

.privacy-check a {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.activation-submit {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  border: 0;
  border-radius: 17px;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  padding: 14px 20px;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.activation-submit:hover:not(:disabled) {
  background: var(--cyan);
  transform: translateY(-1px);
}

.activation-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.activation-submit span:last-child {
  color: var(--yellow);
  font-size: 1.35rem;
}

.google-button {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(17, 46, 84, 0.16);
  border-radius: 15px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-weight: 850;
}

.google-button:hover {
  border-color: var(--cyan);
  background: var(--soft-cyan);
}

.google-mark {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.form-separator {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.form-separator span {
  height: 1px;
  background: var(--line);
}

.authenticated-panel {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(17, 150, 184, 0.2);
  border-radius: 18px;
  background: var(--soft-cyan);
  text-align: center;
}

.authenticated-panel > span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.authenticated-panel > strong {
  overflow-wrap: anywhere;
  color: var(--navy);
}

.text-button {
  border: 0;
  background: none;
  color: var(--cyan);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hidden {
  display: none !important;
}

.form-note,
.form-message {
  margin: 0;
  text-align: center;
  font-size: 0.74rem;
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
}

.form-message {
  display: none;
  padding: 12px;
  border-radius: 13px;
  background: var(--soft-cyan);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.45;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-error {
  background: #fff0ed;
  color: #8c2c1b;
}

.form-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 96px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 44px 24px 0;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 4px;
  top: 20px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-cyan);
  color: var(--cyan);
  content: "+";
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: -7px 0 24px;
  padding-right: 40px;
  color: var(--muted);
  line-height: 1.65;
}

.final-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1240px;
  margin: 0 auto clamp(60px, 7vw, 100px);
  padding: clamp(36px, 5vw, 62px);
  border-radius: 34px;
  background: var(--navy);
  color: var(--white);
}

.final-banner > div > span {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.final-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.7vw, 3.3rem);
}

.final-banner > a {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 20px;
  min-height: 56px;
  padding: 13px 20px;
  border-radius: 17px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
}

.campaign-footer {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 34px clamp(22px, 6vw, 88px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.campaign-footer img {
  width: 170px;
}

.campaign-footer p {
  margin: 4px 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.campaign-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.campaign-footer button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font-weight: inherit;
}

@media (max-width: 1040px) {
  .campaign-header nav a:not(.header-cta):not(.header-login) {
    display: none;
  }

  .campaign-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 34px;
  }

  .hero-stage {
    min-height: 560px;
  }

  .promo-ticket {
    left: -10px;
  }

  .redemption-section {
    grid-template-columns: 1fr 0.9fr;
  }
}

@media (max-width: 820px) {
  .campaign-header {
    min-height: 68px;
  }

  .campaign-brand img {
    width: 148px;
  }

  .campaign-header nav .header-login {
    display: none;
  }

  .campaign-header nav .header-cta {
    padding: 9px 14px;
    font-size: 0.78rem;
  }

  .campaign-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 54px;
  }

  .hero-copy {
    text-align: center;
  }

  .campaign-kicker,
  .hero-facts {
    justify-content: center;
  }

  .hero-copy h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-stage {
    min-height: 550px;
    width: min(580px, 100%);
    margin-inline: auto;
  }

  .method-strip {
    width: calc(100% - 44px);
  }

  .value-grid,
  .redemption-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .value-card.featured {
    transform: none;
  }

  .redemption-copy {
    max-width: 720px;
  }

  .reservation-card {
    max-width: 620px;
  }

  .final-banner {
    margin-inline: 22px;
  }

  .campaign-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .campaign-footer img {
    margin-inline: auto;
  }

  .campaign-footer nav {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 76px;
  }

  .campaign-header {
    padding-inline: 16px;
  }

  .campaign-header nav .header-cta {
    padding-inline: 12px;
  }

  .campaign-hero {
    padding: 46px 18px 76px;
  }

  .campaign-kicker {
    font-size: 0.68rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4.25rem);
  }

  .hero-lead {
    margin-top: 23px;
    font-size: 1rem;
  }

  .hero-facts span {
    min-height: 38px;
    padding: 7px 11px;
    font-size: 0.76rem;
  }

  .primary-cta {
    width: 100%;
  }

  .hero-stage {
    min-height: 470px;
  }

  .collage-panel {
    left: 0;
    border-radius: 30px 30px 88px 30px;
  }

  .promo-ticket {
    top: 14%;
    left: 8px;
    width: 78%;
    min-height: 155px;
    padding: 22px;
  }

  .promo-ticket strong {
    font-size: 2rem;
  }

  .exam-badge {
    right: -4px;
    bottom: 8%;
  }

  .route-line {
    right: 11%;
    border-right-width: 7px;
  }

  .route-stop {
    right: -14px;
    width: 21px;
    height: 21px;
    border-width: 6px;
  }

  .method-strip {
    width: calc(100% - 36px);
    border-radius: 20px;
  }

  .method-strip span {
    min-height: 62px;
    font-size: 0.68rem;
  }

  .section {
    padding-inline: 20px;
  }

  .value-grid {
    margin-top: 38px;
  }

  .value-card {
    min-height: 260px;
    padding: 28px;
  }

  .value-card h3 {
    margin-top: 38px;
  }

  .reservation-card {
    border-radius: 28px;
  }

  .reservation-card::before {
    right: -8px;
    bottom: -10px;
    border-radius: 28px;
  }

  .final-banner {
    flex-direction: column;
    align-items: flex-start;
    margin-inline: 16px;
    border-radius: 26px;
  }

  .final-banner > a {
    width: 100%;
    justify-content: space-between;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
