body.file-request-page {
  min-height: 100vh;
  background: #f5f5f3;
  color: #171717;
  overflow-x: hidden;
}

.file-request-main {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 90px 0 80px;
}

.file-request-hero {
  max-width: 820px;
  margin-bottom: 34px;
}

.file-request-kicker,
.file-request-mini-kicker {
  display: inline-flex;
  color: #9c8750;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.file-request-hero h1 {
  margin: 12px 0 16px;
  color: #111;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .95;
  letter-spacing: 0;
}

.file-request-hero p {
  max-width: 720px;
  margin: 0;
  color: #555;
  font-size: 18px;
  line-height: 1.6;
}

.file-request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 26px;
  align-items: start;
}

.file-request-card,
.file-request-side,
.file-request-success {
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .08);
}

.file-request-card {
  padding: 30px;
}

.file-request-card h2,
.file-request-side h2 {
  margin: 0 0 22px;
  font-size: 30px;
  line-height: 1.1;
}

.file-request-form {
  display: grid;
  gap: 18px;
}

.file-request-form label {
  display: grid;
  gap: 8px;
  color: #656565;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.file-request-form input,
.file-request-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d8d8d8;
  border-radius: 15px;
  background: #fff;
  color: #171717;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}

.file-request-form input {
  height: 58px;
  padding: 0 16px;
}

.file-request-form textarea {
  min-height: 132px;
  padding: 16px;
  resize: vertical;
}

.file-request-form input:focus,
.file-request-form textarea:focus {
  border-color: #a99254;
  box-shadow: 0 0 0 4px rgba(169, 146, 84, .14);
}

.file-request-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.file-upload-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px dashed rgba(17, 17, 17, .28);
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(135deg, #fff, #f7f3e7);
  cursor: pointer;
}

.file-upload-box strong {
  display: block;
  margin-bottom: 4px;
  color: #171717;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.file-upload-box span {
  color: #686868;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.file-upload-box input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-upload-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #111;
  color: #fff;
  font-size: 26px;
}

.file-request-submit,
.file-request-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #111 0%, #1d1d1d 50%, #ad965a 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
}

.file-request-side {
  padding: 28px;
  position: sticky;
  top: 26px;
}

.file-request-steps {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.file-request-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.file-request-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-weight: 900;
}

.file-request-step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.file-request-step p {
  margin: 0;
  color: #5b5b5b;
  font-size: 14px;
  line-height: 1.45;
}

.file-request-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.file-request-formats span {
  padding: 8px 11px;
  border: 1px solid #ded6c1;
  border-radius: 999px;
  color: #6c5b2d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.file-request-success {
  margin-top: 24px;
  padding: 26px;
  border-color: rgba(38, 153, 74, .28);
  background: #f1fbf4;
}

.file-request-success[hidden] {
  display: none;
}

.file-request-success h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.file-request-success p {
  margin: 0 0 18px;
  color: #375a41;
  line-height: 1.55;
}

.file-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.file-request-actions a.secondary {
  border: 1px solid #171717;
  background: #fff;
  color: #171717;
}

@media (max-width: 860px) {
  .file-request-main {
    width: min(100% - 28px, 620px);
    padding: 54px 0 60px;
  }

  .file-request-layout,
  .file-request-row {
    grid-template-columns: 1fr;
  }

  .file-request-card,
  .file-request-side,
  .file-request-success {
    border-radius: 18px;
  }

  .file-request-card,
  .file-request-side {
    padding: 22px;
  }

  .file-request-side {
    position: static;
  }

  .file-request-hero h1 {
    font-size: 44px;
  }

  .file-upload-box {
    grid-template-columns: 1fr;
  }

  .file-upload-icon {
    width: 48px;
    height: 48px;
  }
}
