@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");

.sekuya-regular {
  font-family: "Sekuya";
  font-weight: 400;
  font-style: normal;
}

:root {
  --ink: #1f242e;
  --muted: #7d8796;
  --paper: #f3f3f3;
  --line-dark: #2a2a2a;
  --line-soft: #dcdcdc;
  --btn: #4e4f53;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #1b1d20;
  font-family: "Lato", sans-serif;
  color: var(--ink);
  padding: 0;
}

.page {
  display: block;
}

.page[hidden] {
  display: none;
}

.sheet {
  width: min(768px, 100vw);
  margin: 0;
  background: var(--paper);
  min-height: 1121px;
  border: 1px solid #292b2e;
  overflow: hidden;
}

.sheet-header {
  position: relative;
  border-bottom: 2px solid var(--line-dark);
  height: 74px;
  padding: 0;
}

.sheet-header h1 {
  margin: 0;
  position: absolute;
  left: 53px;
  top: 24px;
  color: #000;
  font-family: "Segoe UI", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.sheet-body {
  position: relative;
  padding: 22px 32px 44px;
}

.progress-row {
  display: flex;
  justify-content: space-between;
  color: #a1a4a8;
  font-size: 14px;
  margin-bottom: 10px;
}

.intro-label {
  color: #000;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.progress-percent {
  color: #000;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.progress-line {
  height: 2px;
  background: var(--line-soft);
  margin-bottom: 30px;
}

.sheet-body h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0.012em;
  font-weight: 700;
  color: #171b21;
}

.module-title {
  color: #000;
  font-family: "Segoe UI", sans-serif;
  width: 620px;
  margin: 0;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.lead {
  position: static;
  width: 700px;
  margin: 18px 0 22px;
  color: #364153;
  font-family: "Segoe UI", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 29.25px;
  letter-spacing: -0.16px;
}

.hero-image {
  margin: 0 auto 28px;
  width: min(602px, 100%);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(26, 27, 28, 0.16);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 7.1;
  object-fit: cover;
}

.objectives h3 {
  margin: 0 0 16px;
  color: #364153;
  font-family: "Segoe UI", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 29.25px;
  letter-spacing: -0.16px;
}

.objectives ol {
  list-style: none;
  margin: 0;
  padding: 0 8px;
  display: grid;
  gap: 8px;
}

.objectives li {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
  align-items: baseline;
}

.objectives .index {
  color: #364153;
  font-family: "Sekuya";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.25px;
  letter-spacing: -0.16px;
}

.objectives li span:last-child {
  color: #000;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22.75px;
  letter-spacing: -0.16px;
}

.meta-divider {
  width: min(586px, 100%);
  height: 2px;
  background: var(--line-soft);
  margin: 22px auto 16px;
}

.meta {
  width: min(586px, 100%);
  margin: 0 auto;
  display: flex;
  gap: 88px;
}

.meta h4 {
  margin: 0;
  color: #a7acb4;
  font-size: 13px;
  letter-spacing: 0.09em;
  font-weight: 400;
}

.meta p {
  margin: 10px 0 0;
  color: #646c76;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.begin-btn {
  margin: 26px 0 0 42px;
  width: 122px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--btn);
  color: #f4f5f6;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.02em;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(26, 27, 28, 0.25);
  cursor: pointer;
}

.begin-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.page-two-body {
  padding-top: 20px;
}

.watch-progress {
  position: relative;
}

.watch-progress::before {
  content: "";
  position: absolute;
  left: 12px;
  top: -1px;
  width: 66px;
  height: 3px;
  background: #8a8a8a;
}

.procedure-title {
  width: auto;
  line-height: 1.15;
  letter-spacing: 0.8px;
}

.procedure-lead {
  width: auto;
  margin-top: 14px;
  margin-bottom: 22px;
}

.video-card {
  width: min(598px, 100%);
  margin: 0 auto 30px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
  background: #d5d5d5;
}

.video-card iframe {
  width: 100%;
  display: block;
  border: 0;
  aspect-ratio: 16 / 7;
}

.key-points h3 {
  margin-bottom: 10px;
}

.key-points ol {
  gap: 9px;
}

.page-two-footer {
  width: min(598px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-btn {
  border: 0;
  background: transparent;
  color: #1f242e;
  font-family: "Segoe UI", sans-serif;
  font-size: 33px;
  font-weight: 400;
  letter-spacing: -0.16px;
  cursor: pointer;
  padding: 0;
}

.next-btn {
  margin: 0;
}

.page-three-body {
  padding-top: 20px;
}

.step-progress {
  position: relative;
}

.step-progress::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -1px;
  width: 122px;
  height: 3px;
  background: #9a9a9a;
}

.step-title {
  width: auto;
  font-size: 45px;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.step-copy {
  width: auto;
  margin: 0;
  color: #7f8895;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.1px;
}

.step-copy.second {
  margin-top: 10px;
}

.requirements {
  margin-top: 28px;
}

.requirements h3,
.common-mistake h3,
.reflection h3 {
  margin: 0 0 10px;
  color: #2c3139;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
}

.requirements ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.requirements li {
  color: #454b55;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 12px;
}

.box {
  width: 14px;
  height: 14px;
  border: 2px solid #6f747c;
  display: inline-block;
  flex: 0 0 auto;
}

.common-mistake {
  margin-top: 24px;
  border-left: 4px solid #222831;
  padding-left: 16px;
}

.common-mistake p {
  margin: 0;
  color: #7f8895;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.reflection {
  width: min(622px, 100%);
  margin: 0 auto;
}

.reflection p {
  margin: 0 0 10px;
  color: #2f3339;
  font-family: "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
}

.reflection-box {
  min-height: 116px;
  border: 2px solid #8f9092;
  border-radius: 18px;
  padding: 13px 18px;
  width: 100%;
  resize: vertical;
  outline: none;
  background: transparent;
  color: #b0b3b8;
  font-family: "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 300;
}

.reflection-box::placeholder {
  color: #b0b3b8;
}

.page-three-footer {
  width: min(622px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-four-body {
  padding-top: 20px;
}

.quiz-progress {
  position: relative;
}

.quiz-progress::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -1px;
  width: 182px;
  height: 3px;
  background: #9a9a9a;
}

.quiz-title {
  width: auto;
  margin-bottom: 30px;
}

.quiz h3 {
  margin: 0 0 10px;
  color: #5f6773;
  font-family: "Segoe UI", sans-serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 1.2px;
}

.quiz-question {
  margin: 0 0 18px;
  color: #2f3339;
  font-family: "Segoe UI", sans-serif;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -0.25px;
}

.answer-card {
  width: min(622px, 100%);
  margin: 0 auto 14px;
  border: 2px solid #8d8f92;
  border-radius: 20px;
  background: transparent;
  text-align: left;
  padding: 0;
  display: block;
  cursor: pointer;
}

.answer-top {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  color: #2e333a;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.answer-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
}

.answer-icon[hidden] {
  display: none;
}

.answer-icon.neutral {
  border: 3px solid #888;
  background: transparent;
}

.answer-icon.correct {
  background: #38cc59;
}

.answer-icon.wrong {
  background: #f11313;
}

.answer-note {
  margin: 0;
  padding: 8px 16px 12px;
  border-top: 1px solid #dedede;
  color: #8a9097;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.answer-note[hidden] {
  display: none;
}

.quiz-feedback {
  width: min(622px, 100%);
  margin: 22px auto 0;
  border: 2px solid #ff7474;
  border-radius: 18px;
  padding: 14px 16px 16px;
}

.quiz-feedback[hidden] {
  display: none;
}

.quiz-feedback h4 {
  margin: 0 0 8px;
  color: #171b21;
  font-family: "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.quiz-feedback p {
  margin: 0;
  color: #6f7783;
  font-family: "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 300;
}

.page-four-footer {
  width: min(622px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-fifteen-body {
  padding-top: 20px;
}

.assessment-progress {
  position: relative;
}

.assessment-progress::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -1px;
  width: 382px;
  height: 3px;
  background: #8e8e8e;
}

.assessment-title {
  width: auto;
  font-size: 53px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.assessment-lead {
  width: auto;
  margin: 0 0 18px;
  color: #7f8895;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.16px;
}

.assessment-what {
  width: min(622px, 100%);
  margin: 0 auto;
}

.assessment-what h3,
.assessment-details h3,
.assessment-note h3 {
  margin: 0 0 10px;
  color: #2c3139;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
}

.assessment-what p {
  margin: 0 0 10px;
  color: #7f8895;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.assessment-what ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.assessment-what li {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 10px;
  align-items: baseline;
}

.assessment-what .index {
  color: #364153;
  font-size: 18px;
  line-height: 1.45;
}

.assessment-what li span:last-child {
  color: #454b55;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.assessment-divider {
  margin-top: 18px;
}

.assessment-details {
  width: min(622px, 100%);
  margin: 0 auto;
}

.assessment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
}

.assessment-grid h4 {
  margin: 0;
  color: #a7acb4;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.assessment-grid p {
  margin: 6px 0 0;
  color: #646c76;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.assessment-note {
  width: min(622px, 100%);
  margin: 16px auto 0;
  border-left: 4px solid #222831;
  padding-left: 12px;
}

.assessment-note h3 {
  margin-bottom: 6px;
}

.assessment-note p {
  margin: 0;
  color: #7f8895;
  font-family: "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
}

.assessment-divider.bottom {
  margin-top: 20px;
}

.page-fifteen-footer {
  width: min(622px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-btn {
  font-size: 33px;
}

.assessment-btn {
  width: 132px;
  height: 44px;
  border-radius: 14px;
  font-size: 9px;
  letter-spacing: 0.03em;
}

.page-sixteen-body {
  padding-top: 20px;
}

.arrange-progress {
  position: relative;
}

.arrange-progress::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -1px;
  width: 432px;
  height: 3px;
  background: #8e8e8e;
}

.arrange-title {
  width: auto;
  margin-bottom: 12px;
}

.arrange-intro {
  width: auto;
  margin: 0 auto 18px;
  color: #7f8895;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  width: min(692px, 100%);
}

.arrange-task {
  width: min(692px, 100%);
  margin: 0 auto;
}

.steps-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.steps-row h3 {
  margin: 0;
  color: #2c3139;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
}

.steps-row span {
  color: #2c3139;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1.2px;
}

.arrange-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.arrange-list li {
  border: 2px solid #8d8f92;
  border-radius: 22px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: transparent;
}

.arrange-left {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  column-gap: 14px;
}

.arrange-order {
  color: #364153;
  font-size: 42px;
  line-height: 1;
}

.arrange-left span:last-child {
  color: #2f3339;
  font-family: "Segoe UI", sans-serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.2;
}

.arrange-controls {
  display: grid;
  grid-template-columns: 56px 56px;
  gap: 12px;
}

.arrange-btn {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  cursor: pointer;
}

.arrange-btn.up {
  background: #38cc59;
}

.arrange-btn.down {
  background: #f11313;
}

.arrange-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.arrange-feedback {
  width: min(692px, 100%);
  margin: 14px auto 0;
  border: 2px solid #38cc59;
  border-radius: 14px;
  padding: 10px 14px;
  color: #236836;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 300;
}

.arrange-feedback.fail {
  border-color: #f11313;
  color: #9a2b2b;
}

.passing-requirement {
  width: min(692px, 100%);
  margin: 18px auto 0;
  border-left: 4px solid #222831;
  padding-left: 16px;
}

.passing-requirement h3 {
  margin: 0 0 8px;
  color: #2c3139;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
}

.passing-requirement p {
  margin: 0;
  color: #7f8895;
  font-family: "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
}

.arrange-feedback[hidden] {
  display: none;
}

.page-sixteen-footer {
  width: min(692px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-spacer {
  width: 56px;
}

.page-seventeen-body {
  padding-top: 20px;
}

.result-progress {
  position: relative;
}

.result-progress::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -1px;
  width: 468px;
  height: 3px;
  background: #8e8e8e;
}

.result-title {
  width: auto;
  text-align: center;
  margin: 8px 0 8px;
}

.result-subtitle {
  margin: 0 auto 14px;
  width: min(692px, 100%);
  color: #7f8895;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.24px;
  text-transform: uppercase;
}

.result-score {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid #2e3642;
  background: #f47f7f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-score span {
  color: #2e3642;
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.result-threshold,
.result-ready {
  width: min(692px, 100%);
  margin: 0 auto;
  border-left: 4px solid #222831;
  padding-left: 16px;
}

.result-threshold h3,
.result-answers h3,
.result-ready h3 {
  margin: 0 0 8px;
  color: #2c3139;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
}

.result-threshold p,
.result-ready p {
  margin: 0;
  color: #7f8895;
  font-family: "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
}

.result-answers {
  width: min(692px, 100%);
  margin: 26px auto 0;
}

.result-legend {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 12px;
}

.result-legend span {
  color: #2c3139;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: inline-block;
}

.dot.correct {
  background: #38cc59;
}

.dot.incorrect {
  background: #f11313;
}

.result-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.result-list li {
  border: 2px solid #d9dee4;
  border-radius: 18px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.result-list li.correct {
  border-color: #9fe3af;
}

.result-list li.incorrect {
  border-color: #f3a8a8;
}

.result-left {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
}

.result-order {
  color: #364153;
  font-size: 36px;
  line-height: 1;
}

.result-text {
  color: #2f3339;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.35;
}

.result-list li.correct .result-text {
  color: #4ebd66;
}

.result-list li.incorrect .result-text {
  color: #e05656;
}

.result-pill {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex: 0 0 auto;
}

.result-pill.correct {
  background: #4ddb68;
}

.result-pill.incorrect {
  background: #ff1d1d;
}

.result-divider {
  margin-top: 18px;
  margin-bottom: 18px;
}

.page-seventeen-footer {
  width: min(692px, 100%);
  margin: 0 auto;
  display: flex;
  gap: 18px;
  justify-content: flex-start;
}

.result-review-btn,
.result-redo-btn {
  margin: 0;
  height: 46px;
}

.result-review-btn {
  width: 132px;
}

.result-redo-btn {
  width: 152px;
  background: #8c9197;
}

.page-eighteen-body {
  padding-top: 20px;
}

.success-title {
  width: auto;
  text-align: center;
  margin: 8px 0 8px;
}

.success-subtitle {
  margin: 0 auto 12px;
  width: min(692px, 100%);
  color: #7f8895;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.24px;
  text-transform: uppercase;
}

.success-score {
  background: #49e159;
}

.success-module-title {
  margin: 0 auto 12px;
  width: min(692px, 100%);
  color: #11161f;
  font-family: "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.success-answers {
  margin-top: 0;
}

.success-accomplished {
  width: min(692px, 100%);
  margin: 16px auto 0;
}

.success-accomplished h3,
.success-key-points h3 {
  margin: 0 0 10px;
  color: #4b5563;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.success-accomplished ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.success-accomplished li {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 8px;
  align-items: baseline;
}

.success-accomplished li span:first-child {
  color: #364153;
  font-size: 18px;
}

.success-accomplished li span:last-child {
  color: #4f5864;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.35;
}

.success-key-takeaway {
  width: min(692px, 100%);
  margin: 14px auto 0;
  border-left: 4px solid #222831;
  padding-left: 16px;
}

.success-key-takeaway h3 {
  margin: 0 0 8px;
  color: #2c3139;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
}

.success-key-takeaway p {
  margin: 0;
  color: #7f8895;
  font-family: "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
}

.success-key-points {
  width: min(692px, 100%);
  margin: 18px auto 0;
}

.success-key-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px 20px;
}

.success-key-grid p {
  margin: 0;
  border-left: 4px solid #222831;
  padding-left: 12px;
  color: #4f5864;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
}

.page-eighteen-footer {
  width: min(692px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-eighteen-footer .result-redo-btn {
  width: 130px;
}

.page-eighteen-footer .result-review-btn {
  width: 130px;
}

@media (max-width: 540px) {
  .sheet-header {
    height: 64px;
  }

  .sheet-header h1 {
    left: 16px;
    top: 18px;
    font-size: 26px;
  }

  .sheet-body {
    padding: 14px 16px 24px;
  }

  .module-title {
    width: 100%;
    font-size: 44px;
    line-height: 0.98;
  }

  .lead {
    width: auto;
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.6;
  }

  .objectives h3 {
    font-size: 34px;
  }

  .objectives li span:last-child {
    font-size: 15px;
  }

  .meta p {
    font-size: 22px;
  }

  .begin-btn {
    margin-left: 0;
  }

  .assessment-title {
    font-size: 44px;
  }

  .assessment-lead {
    font-size: 24px;
  }

  .assessment-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .assessment-progress::before {
    width: 62%;
  }

  .arrange-progress::before {
    width: 72%;
  }

  .arrange-controls {
    grid-template-columns: 30px 30px;
    gap: 6px;
  }

  .arrange-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .arrange-order {
    font-size: 22px;
  }

  .arrange-left span:last-child {
    font-size: 14px;
    line-height: 1.3;
  }

  .arrange-list li {
    border-radius: 16px;
    padding: 10px 12px;
  }

  .arrange-left {
    grid-template-columns: 28px 1fr;
    column-gap: 8px;
  }

  .arrange-intro {
    font-size: 10px;
  }

  .result-title {
    text-align: left;
  }

  .result-subtitle {
    text-align: left;
  }

  .result-score {
    margin-left: 0;
  }

  .result-left {
    grid-template-columns: 28px 1fr;
    column-gap: 8px;
  }

  .result-order {
    font-size: 24px;
  }

  .page-seventeen-footer {
    flex-wrap: wrap;
    gap: 10px;
  }

  .success-title,
  .success-subtitle {
    text-align: left;
  }

  .success-key-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-eighteen-footer {
    flex-wrap: wrap;
    gap: 10px;
  }
}
