:root {
  --red: #e60012;
  --red-dark: #b8000e;
  --ink: #111111;
  --muted: #6b6b6b;
  --line: #dedede;
  --soft: #f4f4f4;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: "NanumSquareNeo", Arial, "Pretendard", "Noto Sans KR", sans-serif;
  color: var(--ink);
  background: var(--soft);
  font-weight: 500;
}

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

.topbar {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-family: "NanumSquareNeoExtraBold", "NanumSquareNeo", sans-serif;
  font-weight: 800;
  font-size: 25px;
}

.topbar nav {
  display: flex;
  gap: 26px;
  font-size: 19px;
  color: var(--muted);
  font-weight: 700;
}

.topbar nav a.tool-link {
  color: var(--ink);
  font-family: "NanumSquareNeoExtraBold", "NanumSquareNeo", sans-serif;
  font-weight: 900;
}

.topbar nav a[aria-current="page"] {
  color: var(--red);
  font-family: "NanumSquareNeoExtraBold", "NanumSquareNeo", sans-serif;
  font-weight: 900;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 28px 72px;
}

.tool-shell {
  display: grid;
  justify-items: center;
  gap: 28px;
}

.landing-hero {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 40px 0 42px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.landing-hero h1 {
  max-width: 920px;
  margin: 0 auto;
  white-space: normal;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.trust-points li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #555555;
  font-size: 15px;
  font-weight: 800;
}

.primary-action,
.secondary-action {
  min-width: 180px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--red);
  font-size: 18px;
  font-weight: 900;
}

.primary-action {
  background: var(--red);
  color: #ffffff;
}

.secondary-action {
  background: #ffffff;
  color: var(--red);
}

.feature-grid {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 34px auto 0;
}

.feature-card {
  min-height: 225px;
  padding: 22px 20px 24px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.feature-card:hover,
.feature-card:focus-visible {
  border-color: var(--red);
  outline: none;
}

.feature-icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: block;
  margin-bottom: 20px;
  border: 2px solid var(--red);
  color: var(--red);
}

.feature-card h2 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.35;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.feature-icon-doc::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 9px 0 currentColor, 0 18px 0 currentColor;
  top: 13px;
}

.feature-icon-doc::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 13px;
  height: 13px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: #ffffff;
}

.feature-icon-ocr {
  border-color: transparent;
}

.feature-icon-ocr::before,
.feature-icon-ocr::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid var(--red);
}

.feature-icon-ocr::after {
  inset: 18px 4px;
  border-left: 0;
  border-right: 0;
}

.feature-icon-format::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 10px;
  width: 6px;
  height: 6px;
  background: currentColor;
  box-shadow: 0 12px 0 currentColor, 0 24px 0 currentColor;
}

.feature-icon-format::after {
  content: "";
  position: absolute;
  left: 21px;
  right: 8px;
  top: 12px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 12px 0 currentColor, 0 24px 0 currentColor;
}

.feature-icon-json {
  display: grid;
  place-items: center;
  font-family: Consolas, "Courier New", monospace;
  font-size: 21px;
  font-weight: 800;
}

.feature-icon-json::before {
  content: "{ }";
}

.business-callout {
  width: min(100%, 1040px);
  margin: 42px auto 0;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.business-callout h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.35;
}

.business-callout p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.business-callout {
  text-align: center;
}

.text-action {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-size: 17px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.intro {
  width: min(100%, 1120px);
  padding-top: 8px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-family: "NanumSquareNeoExtraBold", "NanumSquareNeo", sans-serif;
  font-weight: 800;
  font-size: 17px;
}

h1 {
  margin: 0;
  font-family: "NanumSquareNeoHeavy", "NanumSquareNeoExtraBold", "NanumSquareNeo", sans-serif;
  font-size: clamp(36px, 4vw, 46px);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 900;
  white-space: nowrap;
}

.lead {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.8;
}

.lead strong {
  color: var(--ink);
  font-family: "NanumSquareNeoExtraBold", "NanumSquareNeo", sans-serif;
  font-weight: 800;
}

.extractor {
  width: min(100%, 860px);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px 34px 34px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.08);
}

.dropzone {
  position: relative;
  min-height: 240px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 11px;
  padding: 32px 36px;
  border: 1px dashed #c8c8c8;
  background: #fafafa;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.dropzone:hover,
.dropzone.is-dragging {
  border-color: var(--red);
  background: #fff6f7;
}

.dropzone input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.drop-visual {
  position: relative;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--red);
  transition: border-color 160ms ease, background 160ms ease;
}

.drop-icon {
  width: 62px;
  height: 62px;
}

.drop-count {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  min-width: 80px;
  padding: 6px 8px;
  transform: translateY(-50%);
  background: var(--ink);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.dropzone.has-files {
  border-color: var(--red);
  background: #fff6f7;
}

.dropzone.has-files .drop-visual {
  border-color: var(--red);
  background: #ffffff;
}

.dropzone.has-files .drop-count {
  background: var(--red);
}

.dropzone.is-full .drop-title {
  display: none;
}

.drop-title {
  font-family: "NanumSquareNeoExtraBold", "NanumSquareNeo", sans-serif;
  font-weight: 900;
  font-size: 27px;
}

.drop-meta {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 19px;
  font-weight: 700;
}

.drop-meta-main {
  color: var(--muted);
  font-size: 19px;
  font-weight: 800;
}

.drop-meta-limit {
  color: #8a8a8a;
  font-size: 14px;
  font-weight: 700;
}

.selected-files {
  width: min(100%, 640px);
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(var(--file-count, 1), minmax(0, 190px));
  gap: 12px;
  justify-content: center;
  margin-top: 9px;
}

.selected-file {
  position: relative;
  min-width: 0;
  padding: 10px 28px 10px 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-file-name {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-file-remove {
  position: absolute;
  top: 3px;
  right: 4px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8a8a8a;
  font-size: 16px;
  font-family: Arial, sans-serif;
  line-height: 1;
  cursor: pointer;
}

.selected-file-remove:hover,
.selected-file-remove:focus-visible {
  color: var(--red);
  outline: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  overflow: hidden;
}

.steps li {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 18px 0 22px;
  background: #fafafa;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.steps li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 32px;
  height: 32px;
  background: inherit;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}

.steps li:last-child::after {
  content: none;
}

.steps li.is-active {
  color: var(--red);
  background: #fff6f7;
}

.steps li.is-complete {
  color: var(--ink);
}

.options,
.mode-options,
.retention {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.mode-choice,
.retention-choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fafafa;
}

.mode-choice:has(input:checked),
.retention-choice:has(input:checked) {
  border-color: var(--red);
  background: #fff6f7;
}

.mode-choice span,
.retention-choice span {
  display: grid;
  gap: 5px;
}

.mode-choice strong,
.retention-choice strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 20px;
  font-weight: 900;
}

.mode-choice small,
.retention-choice small {
  color: var(--muted);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
}

.option-heading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.option-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "NanumSquareNeoExtraBold", "NanumSquareNeo", sans-serif;
  font-weight: 900;
  font-size: 21px;
}

.option-heading small {
  color: var(--muted);
  font-weight: 700;
  font-size: 18px;
}

label {
  font-size: 19px;
  font-weight: 700;
}

.format-choice {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
}

.format-choice label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.info {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.info-button {
  width: 20px;
  height: 20px;
  border: 1px solid #bdbdbd;
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.info-button:hover,
.info-button:focus-visible {
  border-color: var(--red);
  color: var(--red);
  outline: none;
}

.info-popover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  z-index: 30;
  width: 280px;
  max-width: calc(100vw - 42px);
  padding: 12px 13px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.13);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
  visibility: hidden;
}

.info-popover.no-wrap {
  width: max-content;
  white-space: nowrap;
}

.info:hover .info-popover,
.info:focus-within .info-popover,
.info.is-open .info-popover {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--red);
}

.submit-wrap {
  position: relative;
  margin-top: 24px;
}

.submit {
  width: 100%;
  height: 54px;
  margin-top: 0;
  border: 0;
  background: var(--red);
  color: white;
  font-size: 21px;
  font-weight: 800;
  cursor: pointer;
}

.submit-info {
  position: absolute;
  top: 50%;
  left: calc(50% + 66px);
  transform: translateY(-50%);
}

.submit-info .info-button {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: #ffffff;
}

.submit-info .info-button:hover,
.submit-info .info-button:focus-visible {
  border-color: #ffffff;
  color: #ffffff;
}

.submit-info .info-popover {
  bottom: calc(100% + 14px);
}

.submit:disabled {
  background: #b5b5b5;
  cursor: wait;
}

.submit.is-done {
  background: #8a8a8a;
}

.submit:hover:not(:disabled) {
  background: var(--red-dark);
}

.status {
  min-height: 22px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
}

.download {
  display: block;
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  padding: 15px 18px;
  background: var(--red);
  color: white;
  text-align: center;
  font-size: 21px;
  font-weight: 800;
  border: 1px solid var(--red);
}

.download:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.download.is-done {
  background: #8a8a8a;
  border-color: #8a8a8a;
}

.download.is-done:hover {
  background: #737373;
  border-color: #737373;
}

.download.is-expired {
  background: #b5b5b5;
  border-color: #b5b5b5;
  cursor: default;
}

.download.is-expired:hover {
  background: #b5b5b5;
  border-color: #b5b5b5;
}

.retained-panel {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.copy-link-button {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.copy-link-button:hover {
  border-color: var(--red);
  color: var(--red);
}

.copy-status {
  min-height: 19px;
  color: var(--red);
  font-size: 15px;
  font-weight: 800;
}

.preview-panel {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.preview-item {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.preview-item:last-child {
  border-bottom: 0;
}

.preview-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
}

.preview-meta strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.preview-meta span {
  flex: 0 0 auto;
  color: var(--red);
  font-weight: 800;
}

.preview-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.preview-warning {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  white-space: pre-line;
}

.preview-item.is-error p,
.preview-item.is-error .preview-meta span {
  color: var(--red);
}

.use-guide {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  max-width: 920px;
  margin: 54px auto 0;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.use-guide h2 {
  margin: 0;
  font-size: 29px;
  line-height: 1.35;
}

.use-guide ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.use-guide li {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.use-guide strong {
  color: var(--red);
  font-size: 20px;
}

.use-guide span {
  color: var(--muted);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.7;
}

.contact-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
  max-width: 920px;
  margin: 54px auto 0;
  padding: 34px 0 0;
  border-top: 1px solid var(--line);
}

.contact-footer h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.35;
}

.contact-footer-body p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.7;
}

.contact-footer .maker-note {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 23px auto 0;
  color: #777777;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
}

.contact-copy {
  display: grid;
  gap: 7px;
  justify-items: start;
  margin-top: 18px;
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
}

.contact-mail:hover,
.contact-mail:focus-visible {
  color: var(--red);
  outline: none;
}

.copy-icon {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
  color: #8a8a8a;
}

.copy-icon::before,
.copy-icon::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 13px;
  border: 2px solid currentColor;
  background: transparent;
}

.copy-icon::before {
  left: 1px;
  top: 4px;
}

.copy-icon::after {
  left: 5px;
  top: 0;
  background: var(--soft);
}

.site-footer {
  max-width: 920px;
  margin: 42px auto 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: #777777;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-bottom: 12px;
  color: var(--ink);
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: var(--red);
  outline: none;
}

.site-footer p {
  margin: 0;
  line-height: 1.6;
}

.content-page {
  max-width: 980px;
}

.page-hero {
  padding: 24px 0 32px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 860px;
  white-space: normal;
}

.page-hero .lead {
  max-width: 820px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.page-section {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 52px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.page-section h2 {
  margin: 0;
  color: var(--red);
  font-family: "NanumSquareNeoExtraBold", "NanumSquareNeo", sans-serif;
  font-size: 24px;
  line-height: 1.35;
}

.page-section h3 {
  margin: 0 0 10px;
  font-family: "NanumSquareNeoExtraBold", "NanumSquareNeo", sans-serif;
  font-size: 21px;
  line-height: 1.45;
}

.page-section p,
.page-section li {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.page-section p {
  margin: 0 0 16px;
}

.page-section p:last-child {
  margin-bottom: 0;
}

.page-section ul,
.page-section ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.content-page-compact .page-hero h1 {
  font-size: clamp(30px, 3.2vw, 38px);
}

.content-page-compact .page-hero .lead {
  font-size: 18px;
  line-height: 1.7;
}

.content-page-compact .page-section {
  gap: 44px;
  padding: 28px 0;
}

.content-page-compact .page-section h2 {
  font-size: 21px;
}

.content-page-compact .page-section h3 {
  font-size: 19px;
}

.content-page-compact .page-section p,
.content-page-compact .page-section li {
  font-size: 16px;
  line-height: 1.75;
}

.content-list {
  display: grid;
  gap: 24px;
}

.content-list article,
.content-list li {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.content-list article:first-child,
.content-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.inline-link {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-note {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.policy-note strong {
  color: var(--ink);
}

.ad-placeholder {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px dashed #c8c8c8;
  background: #fafafa;
  color: #777777;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.contact-page-copy {
  justify-items: start;
}

@media (max-width: 1120px) {
  h1 {
    max-width: 820px;
    margin: 0 auto;
    white-space: normal;
  }
}

@media (max-width: 820px) {
  .topbar {
    padding: 0 20px;
  }

  .topbar nav {
    display: none;
  }

  main {
    padding: 34px 18px 48px;
  }

  .tool-shell,
  .use-guide,
  .contact-footer {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    min-height: auto;
  }

  .use-guide li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  h1 {
    font-size: 32px;
    white-space: normal;
  }

  .lead {
    font-size: 18px;
  }

  .drop-visual {
    width: 86px;
    height: 86px;
  }

  .drop-icon {
    width: 52px;
    height: 52px;
  }

  .drop-count {
    min-width: 76px;
    font-size: 12px;
  }

  .submit-info {
    left: calc(50% + 58px);
  }

  .selected-files {
    grid-template-columns: 1fr;
  }

  .selected-file {
    font-size: 13px;
  }

  .options,
  .mode-options,
  .retention {
    grid-template-columns: 1fr;
  }

  .option-heading {
    align-items: flex-start;
    gap: 8px;
  }

  .info-popover {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 50%;
    bottom: auto;
    width: auto;
    max-width: none;
    transform: translateY(-48%);
    z-index: 1000;
  }

  .info-popover.no-wrap {
    width: auto;
    white-space: normal;
  }

  .info:hover .info-popover,
  .info:focus-within .info-popover,
  .info.is-open .info-popover {
    transform: translateY(-50%);
  }

  .contact-footer {
    align-items: start;
    margin-top: 72px;
  }

  .contact-footer h2 {
    font-size: 24px;
  }

  .contact-mail {
    width: 100%;
    justify-content: flex-start;
  }

  .steps {
    gap: 6px;
  }

  .steps li {
    min-height: 48px;
    padding: 0 12px;
    font-size: 15px;
  }

  .steps li::after {
    content: none;
  }

  .extractor {
    padding: 20px;
  }

  .intro {
    text-align: left;
  }

  .page-section {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .page-hero .lead {
    font-size: 18px;
  }

  .page-section p,
  .page-section li {
    font-size: 16px;
  }

  .site-footer {
    text-align: left;
  }

  .site-footer-links {
    justify-content: flex-start;
  }
}
