:root {
  --blue: #123f5d;
  --blue-deep: #071b2a;
  --orange: #d96f21;
  --ink: #172b39;
  --muted: #536977;
  --line: #d8e2e8;
  --soft: #f3f7f9;
  --white: #fff;
  --wrap: 920px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.58;
}

a {
  color: var(--blue);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 10;
  padding: 10px 14px;
  background: var(--white);
}

.skip-link:focus {
  left: 8px;
}

.review-header {
  background: var(--white);
  border-bottom: 5px solid var(--blue-deep);
}

.review-header-inner,
.review-main,
.review-footer-inner {
  width: min(var(--wrap), calc(100% - 32px));
  margin: 0 auto;
}

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

.review-logo img {
  display: block;
  width: 190px;
  max-height: 74px;
  object-fit: contain;
  object-position: left center;
}

.return-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

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

.review-main {
  padding: 58px 0 72px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--blue-deep);
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.08;
}

h2 {
  margin: 0 0 16px;
  font-size: 1.35rem;
}

.intro {
  max-width: 800px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.06rem;
}

.channel-note {
  margin: 0 0 26px;
  padding: 16px 18px;
  border-left: 4px solid var(--orange);
  background: #fff7f1;
  color: #4c3a2d;
}

.review-form,
.review-process {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 14px 36px rgba(22, 50, 69, .08);
}

.review-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 28px;
}

.review-form label,
.captcha-box {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.review-form .full,
.form-status {
  grid-column: 1 / -1;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid #b9c9d3;
  border-radius: 5px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.review-form textarea {
  min-height: 132px;
  resize: vertical;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  outline: 3px solid rgba(217, 111, 33, .2);
  border-color: var(--orange);
}

.field-help,
.privacy-note {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 400;
}

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

.captcha-box {
  min-height: 126px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--soft);
}

.captcha-box img {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
  background: var(--white);
}

.captcha-box input {
  max-width: 270px;
  text-transform: uppercase;
}

.submit-button {
  min-height: 48px;
  border: 0;
  border-radius: 5px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--orange);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: #b95918;
}

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

.form-status {
  min-height: 26px;
  margin: 0;
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: #126335;
}

.form-status[data-state="error"] {
  color: #9a2b20;
}

.review-process {
  margin-top: 28px;
  padding: 26px 28px;
}

.review-process ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.review-process li {
  margin: 8px 0;
}

.review-footer {
  color: #d6e1e7;
  background: var(--blue-deep);
}

.review-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  padding: 24px 0;
}

.review-footer p {
  margin: 0;
}

.agenzzia-signature,
.agenzzia-signature a {
  color: #ff8b2c;
}

.agenzzia-signature a {
  font-weight: 800;
}

@media (max-width: 680px) {
  .review-header-inner {
    min-height: 86px;
  }

  .review-logo img {
    width: 145px;
  }

  .review-main {
    padding: 42px 0 54px;
  }

  .review-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .review-form .full,
  .form-status {
    grid-column: auto;
  }

  .review-footer-inner {
    display: block;
  }

  .agenzzia-signature {
    display: block;
    margin-top: 10px;
  }
}
