:root {
  --bg: #fffaf6;
  --surface: #ffffff;
  --text: #202020;
  --muted: #55504c;
  --line: #eaded6;
  --accent: #c96f65;
  --accent-soft: #f8e4df;
  --accent-strong: #9e463e;
  --shadow: 0 12px 30px rgba(52, 38, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.45;
}

.page {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 28px 18px 40px;
}

.hero {
  padding: 10px 2px 22px;
}

.brand {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 11ch;
  color: #161616;
  font-size: 42px;
  line-height: 1.03;
  letter-spacing: 0;
}

.intro {
  margin: 18px 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.38;
}

.video-help,
.steps,
.info-list {
  display: grid;
  gap: 18px;
}

.video-help {
  margin-bottom: 18px;
}

.video-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: #fff4f1;
  border: 2px solid #dfb0a8;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.step-card,
.info-card {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.step-card {
  padding: 24px;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.step-number {
  display: inline-grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.step-icon,
.video-icon,
.info-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.step-icon {
  width: 68px;
  height: 68px;
}

.video-icon {
  width: 48px;
  height: 48px;
}

.video-icon svg {
  width: 28px;
  height: 28px;
}

svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.5;
}

.step-card h2,
.info-card h2 {
  margin: 0;
  color: #191919;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: 0;
}

.video-card h2 {
  margin: 0;
  color: #191919;
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: 0;
}

.step-card p,
.info-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.42;
}

.video-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.38;
}

.video-link {
  display: block;
  margin-top: 12px;
  padding: 13px 14px;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.video-link:focus,
.video-link:hover {
  background: var(--accent-strong);
}

.info-list {
  margin-top: 22px;
}

.info-card {
  display: flex;
  gap: 16px;
  padding: 22px;
}

.info-icon {
  width: 54px;
  height: 54px;
  margin-top: 2px;
}

.info-icon svg {
  width: 32px;
  height: 32px;
}

.important {
  border-color: #dfb0a8;
  background: #fff4f1;
}

.help {
  margin-bottom: 8px;
}

@media (min-width: 700px) {
  .page {
    padding: 46px 24px 56px;
  }

  .hero {
    text-align: center;
  }

  h1,
  .intro {
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    max-width: 16ch;
    font-size: 56px;
  }

  .intro {
    font-size: 22px;
  }

  .step-card {
    padding: 28px 30px;
  }

  .video-card {
    gap: 16px;
    padding: 22px;
  }

  .video-icon {
    width: 58px;
    height: 58px;
  }

  .video-icon svg {
    width: 34px;
    height: 34px;
  }

  .video-card h2 {
    font-size: 26px;
  }

  .video-card p,
  .video-link {
    font-size: 20px;
  }

  .video-link {
    padding: 16px 18px;
  }
}
