:root {
  --inox-orange: #fa4616;
  --inox-orange-tint: #fef1ec;
  --inox-black: #1b1b1b;
  --inox-gray-bg: #f7f7f7;
  --inox-gray-border: #e2e2e2;
  --inox-error: #8b1a0e;
  color-scheme: light;
  font-family: 'Golos Text', system-ui, -apple-system, sans-serif;
}

body {
  margin: 0;
  padding: 0 1.25rem 2rem;
  background: #ffffff;
  color: var(--inox-black);
}

.brand-header {
  display: flex;
  align-items: center;
  padding: 1.25rem 0 0.5rem;
}

.brand-logo {
  height: 28px;
  width: auto;
}

main {
  max-width: 640px;
  margin: 0 auto;
}

.tag {
  display: inline-block;
  background: var(--inox-orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.7rem;
  border-radius: 3px;
  transform: skewX(-8deg);
  margin-bottom: 0.6rem;
}

.tag > span {
  display: inline-block;
  transform: skewX(8deg);
}

h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.9rem;
}

.workload {
  margin-bottom: 2.2rem;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--inox-gray-border);
  border-radius: 10px;
  background: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.option:has(input:checked) {
  border-color: var(--inox-orange);
  background: var(--inox-orange-tint);
}

.option input {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--inox-orange);
  flex-shrink: 0;
}

.other-text {
  margin-top: 0.5rem;
  padding: 0.75rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1.5px solid var(--inox-gray-border);
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
}

.other-text:focus {
  outline: none;
  border-color: var(--inox-orange);
}

button[type='submit'] {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
  font-family: inherit;
  font-weight: 700;
  color: #fff;
  background: var(--inox-orange);
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

button[type='submit']:disabled {
  opacity: 0.5;
}

.error {
  color: var(--inox-error);
  font-weight: 600;
}

.thank-you {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-top: 3rem;
}
