:root {
  --ink: #102e3c;
  --ink-deep: #062330;
  --blue: #1975a5;
  --blue-dark: #10577d;
  --green: #9ccb3b;
  --green-dark: #547f16;
  --ivory: #f7f5ef;
  --paper: #fffefb;
  --white: #fff;
  --muted: #60747d;
  --line: #dce3df;
  --line-soft: #e9ede9;
  --danger: #a13333;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", Arial, sans-serif;
  --container: 1240px;
  --shadow: 0 28px 85px rgba(7, 37, 49, 0.12);
  --shadow-soft: 0 12px 40px rgba(7, 37, 49, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  min-width: 0;
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea {
  font-family: var(--font-sans);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

.survey-container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink-deep);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

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

.survey-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(12, 52, 69, 0.08);
  background: rgba(255, 254, 251, 0.98);
}

.header-inner {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.survey-brand {
  display: block;
  width: 202px;
  padding: 8px 0;
}

.survey-brand img {
  width: 100%;
  height: auto;
}

.survey-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 700;
}

.back-link,
.header-contact {
  transition: color 0.2s ease, transform 0.2s ease;
}

.back-link:hover,
.header-contact:hover {
  color: var(--blue);
}

.back-link span {
  display: inline-block;
  margin-right: 7px;
  transition: transform 0.2s ease;
}

.back-link:hover span {
  transform: translateX(-3px);
}

.header-contact {
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.survey-hero {
  position: relative;
  display: grid;
  min-height: 535px;
  overflow: hidden;
  align-items: end;
  background: var(--ink-deep);
  color: var(--white);
  isolation: isolate;
}

.survey-hero-media,
.survey-hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.survey-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
  animation: hero-enter 1.4s cubic-bezier(0.2, 0.7, 0, 1) both;
}

.survey-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 29, 41, 0.95) 0%, rgba(3, 29, 41, 0.75) 46%, rgba(3, 29, 41, 0.3) 78%, rgba(3, 29, 41, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 29, 41, 0.7), transparent 48%);
}

.survey-hero-inner {
  display: flex;
  padding-block: 86px 75px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.hero-copy {
  max-width: 820px;
  animation: copy-enter 0.75s 0.08s cubic-bezier(0.2, 0.7, 0, 1) both;
}

.survey-eyebrow {
  display: flex;
  margin: 0 0 22px;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.survey-eyebrow > span {
  width: 29px;
  height: 2px;
  background: var(--green);
}

.survey-eyebrow-light {
  color: #c9f08e;
}

.survey-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(62px, 7vw, 102px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-wrap: balance;
}

.hero-copy > p:not(.survey-eyebrow) {
  max-width: 690px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

.hero-details {
  display: flex;
  margin-top: 36px;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-details b {
  color: var(--white);
}

.hero-details i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green);
}

.hero-scroll {
  display: flex;
  min-width: 190px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.hero-scroll span {
  color: var(--green);
  font-size: 18px;
  transition: transform 0.2s ease;
}

.hero-scroll:hover {
  border-color: var(--green);
  color: #d5f6a6;
}

.hero-scroll:hover span {
  transform: translateY(3px);
}

.survey-section {
  position: relative;
  padding-block: 112px 130px;
  overflow: hidden;
}

.survey-section::before {
  position: absolute;
  z-index: -1;
  top: 120px;
  left: -170px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(25, 117, 165, 0.12);
  border-radius: 50%;
  content: "";
}

.survey-section::after {
  position: absolute;
  z-index: -1;
  top: 205px;
  left: -125px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(156, 203, 59, 0.2);
  border-radius: 50%;
  content: "";
}

.survey-layout {
  display: grid;
  align-items: start;
  gap: clamp(55px, 7vw, 105px);
  grid-template-columns: minmax(270px, 0.68fr) minmax(620px, 1.32fr);
}

.survey-intro {
  position: sticky;
  top: 42px;
}

.survey-intro h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(47px, 4.5vw, 66px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.intro-lead {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.survey-promise {
  display: grid;
  margin-top: 40px;
  padding: 24px 0;
  border-block: 1px solid var(--line);
  align-items: start;
  gap: 17px;
  grid-template-columns: 48px 1fr;
}

.promise-mark {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink-deep);
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  place-items: center;
}

.survey-promise strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
}

.survey-promise p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.survey-trust {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  gap: 12px;
}

.survey-trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #435d68;
  font-size: 13px;
  font-weight: 700;
}

.survey-trust span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.survey-card {
  min-width: 0;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid rgba(12, 52, 69, 0.08);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.survey-card-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
}

.survey-card-header p {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.survey-card-header h2 {
  max-width: 550px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.survey-progress-copy {
  flex: 0 0 auto;
  text-align: right;
}

.survey-progress-copy span {
  display: block;
  color: var(--ink-deep);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.survey-progress-copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.survey-progress {
  display: block;
  width: 100%;
  height: 5px;
  margin: 28px 0 45px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  appearance: none;
  background: #e8ece8;
}

.survey-progress::-webkit-progress-bar {
  border-radius: 999px;
  background: #e8ece8;
}

.survey-progress::-webkit-progress-value {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 0.35s ease;
}

.survey-progress::-moz-progress-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

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

.survey-questions {
  display: grid;
  gap: 18px;
}

.survey-question {
  min-width: 0;
  margin: 0;
  padding: 25px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: #fafaf7;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.survey-question:hover,
.survey-question:focus-within {
  border-color: #c9d8d5;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.survey-question legend {
  display: grid;
  width: 100%;
  padding: 0;
  align-items: start;
  gap: 15px;
  grid-template-columns: 34px 1fr;
}

.question-index {
  display: grid;
  width: 31px;
  height: 31px;
  border: 1px solid #cedbd7;
  border-radius: 50%;
  align-items: center;
  color: var(--blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  place-items: center;
}

.question-copy {
  color: var(--ink-deep);
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.27;
}

.rating-options {
  display: grid;
  margin-top: 20px;
  gap: 8px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.rating-options.option-count-3 {
  max-width: 620px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rating-options.option-count-2 {
  max-width: 420px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.custom-text-field {
  margin-top: 20px;
}

.rating-options label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

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

.rating-choice {
  display: flex;
  min-height: 82px;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.rating-number {
  display: grid;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eff2ef;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.rating-label {
  overflow-wrap: anywhere;
  color: #50656e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.28;
}

.rating-options label:hover .rating-choice {
  border-color: #aac3bd;
  transform: translateY(-2px);
}

.rating-options input:focus-visible + .rating-choice {
  outline: 3px solid var(--green-dark);
  outline-offset: 3px;
}

.rating-options input:checked + .rating-choice {
  border-color: var(--green-dark);
  background: #f2f9e7;
  box-shadow: inset 0 0 0 1px var(--green-dark), 0 8px 20px rgba(84, 127, 22, 0.1);
}

.rating-options input:checked + .rating-choice .rating-number {
  background: var(--green);
  color: var(--ink-deep);
}

.rating-options input:checked + .rating-choice .rating-label {
  color: var(--ink-deep);
}

.suggestion-field {
  margin-top: 24px;
  padding: 25px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: #fafaf7;
}

.suggestion-heading {
  display: flex;
  margin-bottom: 13px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.suggestion-heading label {
  color: var(--ink-deep);
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
}

.suggestion-heading label span {
  margin-left: 8px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.suggestion-heading > span {
  color: #809098;
  font-size: 11px;
  font-weight: 600;
}

.suggestion-heading b {
  font-weight: 800;
}

.suggestion-field textarea {
  display: block;
  width: 100%;
  min-height: 128px;
  padding: 15px 17px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: var(--white);
  color: var(--ink-deep);
  font-size: 13px;
  line-height: 1.65;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.suggestion-field textarea::placeholder {
  color: #96a3a8;
}

.suggestion-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(25, 117, 165, 0.1);
}

.form-footer {
  display: flex;
  margin-top: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.form-footer > p {
  max-width: 430px;
  margin: 0;
  color: #71838a;
  font-size: 12px;
  line-height: 1.65;
}

.form-footer a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.submit-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 54px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.submit-button {
  flex: 0 0 auto;
  min-width: 205px;
  padding: 8px 9px 8px 24px;
  border: 0;
  background: var(--ink-deep);
  box-shadow: 0 12px 26px rgba(6, 35, 48, 0.18);
  color: var(--white);
  cursor: pointer;
  gap: 18px;
}

.button-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink-deep);
  font-size: 17px;
  place-items: center;
  transition: transform 0.2s ease;
}

.submit-button:hover:not(:disabled) {
  background: #0b3a4d;
  box-shadow: 0 16px 32px rgba(6, 35, 48, 0.24);
  transform: translateY(-2px);
}

.submit-button:hover:not(:disabled) .button-arrow {
  transform: translateX(2px);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 22px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.form-status:empty {
  min-height: 0;
  margin: 0;
}

.form-status.is-error {
  color: var(--danger);
}

.noscript-note {
  padding: 12px;
  border-radius: 8px;
  background: #fff4cf;
  color: #59460e;
  font-size: 11px;
}

.survey-success {
  max-width: 660px;
  margin: 18px auto 0;
  padding-block: 45px 30px;
  text-align: center;
  animation: success-enter 0.55s cubic-bezier(0.2, 0.7, 0, 1) both;
}

.success-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: #edf7df;
  box-shadow: inset 0 0 0 1px #cfe4ad;
  color: var(--green-dark);
  font-size: 30px;
  font-weight: 700;
  place-items: center;
}

.survey-success .survey-eyebrow {
  justify-content: center;
}

.survey-success h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(43px, 5vw, 62px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.survey-success > p:not(.survey-eyebrow) {
  max-width: 560px;
  margin: 23px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.success-actions,
.not-found-actions {
  display: flex;
  margin-top: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.primary-button,
.secondary-button {
  min-width: 165px;
  padding: 0 23px;
}

.primary-button {
  background: var(--ink-deep);
  color: var(--white);
}

.secondary-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-deep);
}

.primary-button:hover,
.secondary-button:hover {
  border-color: var(--green-dark);
  box-shadow: 0 10px 24px rgba(7, 37, 49, 0.12);
  transform: translateY(-2px);
}

.survey-footer {
  padding-block: 64px 34px;
  background: var(--ink-deep);
  color: var(--white);
}

.footer-inner {
  display: grid;
  align-items: end;
  gap: 40px;
  grid-template-columns: 1.4fr 1fr auto;
}

.footer-inner > div:first-child img {
  width: 175px;
  height: auto;
  margin-bottom: 14px;
  border-radius: 4px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
}

.footer-contact,
.footer-legal {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 12px;
}

.footer-contact a:hover,
.footer-legal a:hover {
  color: var(--green);
}

.footer-legal {
  align-items: flex-end;
}

.footer-legal span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.35);
}

.survey-not-found {
  display: grid;
  min-height: 100vh;
  padding: 24px;
  background:
    linear-gradient(rgba(5, 35, 48, 0.82), rgba(5, 35, 48, 0.9)),
    url("../images/galeria-12.jpg") center / cover no-repeat;
  place-items: center;
}

.not-found-card {
  width: min(100%, 680px);
  padding: clamp(34px, 7vw, 72px);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.not-found-card > img {
  width: 210px;
  height: auto;
  margin: 0 auto 34px;
}

.not-found-card .survey-eyebrow {
  justify-content: center;
}

.not-found-card h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(44px, 8vw, 66px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.not-found-card > p:not(.survey-eyebrow) {
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 14px;
}

@keyframes hero-enter {
  from { opacity: 0.4; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes copy-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes success-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .survey-layout {
    gap: 50px;
    grid-template-columns: minmax(240px, 0.55fr) minmax(580px, 1.45fr);
  }

  .survey-card {
    padding: 34px;
  }

  .survey-question,
  .suggestion-field {
    padding: 21px;
  }

  .rating-choice {
    min-height: 86px;
    padding-inline: 5px;
  }
}

@media (max-width: 900px) {
  .survey-hero {
    min-height: 500px;
  }

  .survey-hero-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    gap: 25px;
  }

  .hero-scroll {
    min-width: 230px;
  }

  .survey-layout {
    grid-template-columns: 1fr;
  }

  .survey-intro {
    position: static;
    max-width: 700px;
  }

  .survey-promise {
    max-width: 600px;
  }

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

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

  .footer-legal {
    align-items: flex-start;
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .survey-container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 76px;
    gap: 18px;
  }

  .survey-brand {
    width: 154px;
  }

  .survey-header nav {
    gap: 0;
  }

  .header-contact {
    display: none;
  }

  .back-link {
    font-size: 10px;
  }

  .survey-hero {
    min-height: 520px;
  }

  .survey-hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 29, 41, 0.92), rgba(3, 29, 41, 0.55)),
      linear-gradient(0deg, rgba(3, 29, 41, 0.75), transparent 65%);
  }

  .survey-hero-inner {
    padding-block: 70px 54px;
  }

  .survey-hero h1 {
    font-size: clamp(50px, 16vw, 70px);
  }

  .hero-copy > p:not(.survey-eyebrow) {
    margin-top: 22px;
    font-size: 14px;
  }

  .hero-details {
    margin-top: 25px;
  }

  .hero-scroll {
    display: none;
  }

  .survey-section {
    padding-block: 76px 90px;
  }

  .survey-layout {
    gap: 43px;
  }

  .survey-intro h2 {
    font-size: clamp(43px, 13vw, 57px);
  }

  .survey-trust {
    grid-template-columns: 1fr;
  }

  .survey-card {
    margin-inline: -3px;
    padding: 25px 18px;
    border-radius: 23px;
  }

  .survey-card-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .survey-card-header h2 {
    font-size: 34px;
  }

  .survey-progress-copy {
    align-self: flex-end;
  }

  .survey-progress {
    margin-block: 18px 31px;
  }

  .survey-question,
  .suggestion-field {
    padding: 19px 16px;
    border-radius: 15px;
  }

  .survey-question legend {
    gap: 11px;
    grid-template-columns: 30px 1fr;
  }

  .question-index {
    width: 28px;
    height: 28px;
  }

  .question-copy {
    font-size: 19px;
  }

  .rating-options,
  .rating-options.option-count-4 {
    gap: 7px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rating-options.option-count-2 {
    max-width: none;
  }

  .rating-choice {
    min-height: 70px;
    padding: 9px 7px;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    gap: 9px;
    text-align: left;
  }

  .rating-number {
    flex: 0 0 auto;
  }

  .rating-label {
    font-size: 9px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
    justify-content: space-between;
  }

  .form-status {
    text-align: left;
  }

  .survey-footer {
    padding-block: 52px 32px;
  }

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

  .footer-legal {
    grid-column: 1;
  }
}

@media (max-width: 410px) {
  .survey-brand {
    width: 132px;
  }

  .back-link span {
    display: none;
  }

  .hero-details i,
  .hero-details span:last-child {
    display: none;
  }

  .rating-options,
  .rating-options.option-count-4,
  .rating-options.option-count-2 {
    grid-template-columns: 1fr;
  }

  .rating-choice {
    min-height: 58px;
  }

  .suggestion-heading label span {
    display: block;
    margin: 2px 0 0;
  }

  .success-actions,
  .not-found-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

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

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

@media print {
  .survey-header,
  .survey-hero,
  .survey-intro,
  .survey-footer,
  .form-footer,
  .form-status {
    display: none !important;
  }

  body,
  .survey-section {
    background: #fff;
  }

  .survey-section {
    padding: 0;
  }

  .survey-layout {
    display: block;
  }

  .survey-card {
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}
