:root {
  --ink: #123b4c;
  --muted: #5d7480;
  --paper: #fffdf8;
  --surface: #ffffff;
  --line: #dce9e9;
  --blue: #047f9b;
  --blue-dark: #05657d;
  --mint: #d6f2e1;
  --coral: #f2775d;
  --shadow: 0 18px 45px rgba(17, 70, 83, .1);
}
* { box-sizing: border-box; }
body { margin: 0; background: #f7f8f3; color: var(--ink); font-family: Arial, sans-serif; line-height: 1.65; }
.site-header { display: flex; justify-content: center; padding: 20px; background: var(--paper); border-bottom: 1px solid var(--line); }
.brand img { display: block; width: min(350px, 78vw); height: auto; }
.page-shell { width: min(1120px, calc(100% - 32px)); min-height: calc(100vh - 220px); margin: 0 auto; padding: 64px 0; }
.site-footer { padding: 20px; background: #0d4353; color: white; text-align: center; }
h1, h2 { margin-top: 0; line-height: 1.18; }
h1 { font-size: clamp(2rem, 5vw, 3.8rem); letter-spacing: -.05em; }
h2 { font-size: 1.28rem; }
p { color: var(--muted); }
.eyebrow, .step { color: var(--coral); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero { max-width: 780px; margin-bottom: 42px; }
.hero p:last-child, .scan-heading p:last-child { max-width: 690px; font-size: 1.12rem; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.vacancy-grid, .scan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vacancy-card, .scan-card { display: flex; flex-direction: column; padding: 28px; }
.vacancy-card p { flex-grow: 1; }
.card-number { color: #9bcacb; font-size: 2.4rem; font-weight: 700; }
.button { display: inline-block; width: fit-content; padding: 12px 20px; border: 0; border-radius: 9px; background: var(--blue); color: white; cursor: pointer; font: inherit; font-weight: 700; line-height: 1.3; text-decoration: none; transition: background .2s, transform .2s; }
.button:hover { background: var(--blue-dark); transform: translateY(-2px); }
.button-accent { background: var(--coral); }
.button-accent:hover { background: #d85d45; }
.button-light { background: #e8f3f1; color: var(--ink); }
.job-detail { display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; }
.job-copy { padding: 42px; }
.job-copy h2 { margin-top: 28px; margin-bottom: 6px; color: var(--blue-dark); }
.underlined-title { font-size: clamp(1.85rem, 4vw, 3rem); text-decoration: underline; text-transform: uppercase; }
.job-photo { width: 100%; height: 100%; max-height: 620px; object-fit: cover; }
.action-row, .choice-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 28px; }
.narrow-card, .report { max-width: 880px; margin: 0 auto; padding: 38px; }
.scan-heading { margin-bottom: 28px; }
.scan-grid { grid-template-columns: 1fr 1fr; }
.scan-card form { display: grid; gap: 12px; margin-top: 20px; }
.scan-card small { color: var(--muted); }
.file-label, .code-form label { font-weight: 700; }
input[type="file"], input[type="text"] { width: 100%; padding: 12px; border: 1px solid #b8cecf; border-radius: 8px; background: white; font: inherit; }
.choice-row { justify-content: flex-start; }
.hidden { display: none !important; }
.message { margin: 16px 0 0; padding: 10px 12px; border-radius: 8px; font-weight: 700; }
.error { background: #fff0ec; color: #a53e2c; }
.success { background: var(--mint); color: #276943; }
.report { margin-top: 30px; scroll-margin-top: 32px; }
.report h2 { font-size: 2rem; }
@media (max-width: 800px) {
  .page-shell { padding: 42px 0; }
  .vacancy-grid, .scan-grid, .job-detail { grid-template-columns: 1fr; }
  .job-photo { max-height: 430px; }
}
@media (max-width: 480px) {
  .job-copy, .narrow-card, .report, .vacancy-card, .scan-card { padding: 24px; }
  .action-row .button, .choice-row .button { width: 100%; text-align: center; }
}
