:root {
  --navy: #002e4f;
  --blue: #007396;
  --sky: #2ea3f2;
  --ink: #183244;
  --muted: #647682;
  --line: #d8e2e8;
  --surface: #ffffff;
  --wash: #f2f6f8;
  --focus: #ffbf2f;
  --danger: #b42318;
  --success: #159467;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-header {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 10px 20px;
  background: #000;
}

.brand-logo {
  display: block;
  width: 130px;
  height: auto;
}

.video-section {
  padding: 38px 20px 44px;
  background: #000;
}

.video-frame {
  width: min(100%, 960px);
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-section {
  padding: 72px 20px 96px;
  background: var(--surface);
}

.form-shell {
  width: min(100%, 840px);
  margin: 0 auto;
}

.form-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0;
}

.wow-rate {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: center;
  margin: 0 auto;
  padding: 28px;
  background: #f7fafb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.wow-rate .step-actions,
.benefits-section .step-actions {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.wow-rate__copy h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.12;
}

.wow-rate__copy h3 span {
  color: var(--success);
}

.wow-rate__copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.rate-comparison {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  min-width: 0;
}

.rate-bar {
  display: grid;
  gap: 8px;
  color: var(--muted);
  text-align: center;
}

.rate-bar span {
  display: block;
  width: 100%;
  border-radius: 3px 3px 0 0;
}

.rate-bar--rack span {
  height: 132px;
  background: #d8dcdd;
}

.rate-bar--hotel span {
  height: 92px;
  background: #a9cde0;
}

.rate-bar--wow span {
  height: 52px;
  background: #13a853;
}

.rate-bar strong {
  color: inherit;
  font-size: 0.84rem;
  line-height: 1.15;
}

.rate-bar small {
  display: block;
  color: inherit;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.25;
}

.rate-bar--hotel {
  color: #005b8f;
}

.rate-bar--wow {
  color: #13a853;
}

.progress {
  margin-bottom: 50px;
}

.progress-meta {
  display: flex;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.progress-track {
  height: 4px;
  overflow: hidden;
  background: var(--line);
  border-radius: 2px;
}

.progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--blue);
  transition: width 280ms ease;
}

.form-step {
  animation: step-in 260ms ease both;
}

.form-step[hidden],
.success-state[hidden] {
  display: none;
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.step-help {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.93rem;
}

.rating-list {
  display: grid;
  gap: 12px;
}

.rating-card {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-width: 0;
  margin: 0;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.rating-card legend {
  display: contents;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
}

.rating-card__control {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.rating-card__status {
  width: 118px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: right;
}

.rating-options {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 5px;
}

.rating-option {
  position: relative;
}

.rating-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.rating-option span {
  display: grid;
  min-width: 42px;
  height: 42px;
  padding: 0 9px;
  place-items: center;
  color: #71838e;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.rating-option:hover span {
  color: var(--blue);
  border-color: var(--blue);
}

.rating-option input:checked + span {
  color: var(--navy);
  background: #fff5d9;
  border-color: var(--focus);
  box-shadow: 0 0 0 1px var(--focus);
}

.rating-option input:focus-visible + span {
  outline: 3px solid rgba(255, 191, 47, 0.62);
  outline-offset: 2px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.choice {
  position: relative;
  display: block;
  min-width: 0;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice span {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 600;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.choice span::before {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-right: 11px;
  border: 2px solid #9fb0ba;
  border-radius: 50%;
  content: "";
}

.choice-grid--multi .choice span::before {
  border-radius: 4px;
}

.choice input:checked + span {
  color: var(--navy);
  background: #edf8fb;
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.choice input:checked + span::before {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: inset 0 0 0 4px #edf8fb;
}

.choice-grid--multi .choice input:checked + span::before {
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.2' d='m3.2 8.2 2.8 2.7 6.8-6.2'/%3E%3C/svg%3E") center / 14px no-repeat;
  box-shadow: none;
}

.choice:hover span {
  border-color: var(--blue);
}

.choice input:focus-visible + span,
input:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 191, 47, 0.62);
  outline-offset: 3px;
}

.fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field > span {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
}

.field input {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 115, 150, 0.11);
}

.field input.is-invalid {
  border-color: var(--danger);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.83rem;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.field-error {
  min-height: 20px;
  margin: 9px 0 0;
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 600;
}

.field .field-error {
  min-height: 0;
  margin: 0;
}

.submit-error {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--danger);
  font-size: 0.8rem;
  font-weight: 600;
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.step-actions--end {
  justify-content: flex-end;
}

.button {
  min-height: 50px;
  padding: 12px 22px;
  border: 0;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #fff;
  background: var(--blue);
}

.button--primary:hover {
  background: var(--navy);
}

.button--back {
  color: var(--blue);
  background: transparent;
}

.button--back:hover {
  color: var(--navy);
  background: #edf3f6;
}

.success-state {
  padding: 28px 0 10px;
  text-align: center;
}

.success-mark {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  place-items: center;
  color: #fff;
  background: var(--success);
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: 700;
}

.success-state h3 {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.success-state > p:last-child {
  color: var(--muted);
}

.benefits-section {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.benefits-heading {
  max-width: 760px;
  margin-bottom: 18px;
}

.benefits-heading h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 3.3vw, 2.3rem);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.benefit-card {
  min-height: 126px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.benefit-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.18;
}

.benefit-card h4 {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 0.86rem;
  line-height: 1.18;
}

.benefit-card p {
  margin: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.benefit-card--orange h4 {
  color: #f26532;
}

.benefit-card--blue h4 {
  color: var(--sky);
}

.benefit-card--green h4 {
  color: #13a853;
}

.benefit-card--navy h4 {
  color: var(--navy);
}

.benefit-card--orange strong {
  color: #f26532;
}

.benefit-card--blue strong {
  color: var(--sky);
}

.benefit-card--green strong {
  color: #13a853;
}

.benefit-card--navy strong {
  color: var(--navy);
}

.site-footer {
  padding: 42px 20px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-inner {
  display: grid;
  width: min(100%, 1060px);
  margin: 0 auto;
  grid-template-columns: 170px 1fr 1fr;
  align-items: start;
  gap: 44px;
}

.footer-logo {
  display: block;
  width: 145px;
  height: auto;
}

.site-footer p {
  margin-bottom: 7px;
  font-size: 0.78rem;
  line-height: 1.65;
}

.site-footer strong {
  color: #fff;
  font-weight: 700;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 5px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration-color: rgba(255, 255, 255, 0.38);
  text-underline-offset: 3px;
}

.footer-about a {
  display: inline;
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 8px 16px;
  }

  .brand-logo {
    width: 112px;
  }

  .video-section {
    padding: 0;
  }

  .video-frame {
    width: 100%;
    border-width: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .form-section {
    padding: 48px 18px 72px;
  }

  .form-intro {
    margin-bottom: 34px;
  }

  .wow-rate {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 22px 16px;
  }

  .rate-comparison {
    gap: 8px;
  }

  .rate-bar--rack span {
    height: 106px;
  }

  .rate-bar--hotel span {
    height: 76px;
  }

  .rate-bar--wow span {
    height: 46px;
  }

  .rate-bar strong {
    font-size: 0.72rem;
  }

  .rate-bar small {
    font-size: 0.62rem;
  }

  .progress {
    margin-bottom: 38px;
  }

  .choice-grid,
  .choice-grid--three,
  .fields-grid {
    grid-template-columns: 1fr;
  }

  .rating-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px;
  }

  .rating-card__control {
    align-items: flex-end;
    flex-direction: column-reverse;
    gap: 8px;
  }

  .rating-card__status {
    width: auto;
    min-height: 18px;
    text-align: left;
    align-self: flex-start;
  }

  .rating-options {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .rating-option span {
    width: 100%;
    min-width: 0;
    padding: 0 5px;
    font-size: 0.68rem;
  }

  .field--full {
    grid-column: auto;
  }

  .choice span {
    min-height: 54px;
  }

  .step-actions {
    align-items: stretch;
  }

  .button--primary {
    flex: 1;
  }

  .benefits-section {
    margin-top: 0;
    padding-top: 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 0;
    padding: 16px;
  }

  .benefit-card strong {
    margin-bottom: 7px;
  }

  .site-footer {
    padding: 36px 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-logo {
    width: 126px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
