/* ==========================================================================
   EN Consulting Group — лендинг "Персональные данные и документы для сайта"
   Точный CSS под утверждённый макет со скриншотов:
   header, hero, риски, услуги, чек-лист, тарифы, этапы, квиз, FAQ, CTA, footer.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --blue: #041E42;
  --blue-2: #062653;
  --blue-3: #082B5F;
  --gold: #D4AF37;
  --gold-2: #E7C857;
  --gold-3: #B98D22;
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-soft: #F7F9FC;
  --border: #E1E7F0;
  --border-soft: #EDF1F6;
  --text: #041E42;
  --muted: #607086;
  --muted-2: #8894A6;
  --light-text: #D6E0ED;

  --font-title: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Tilda Sans", Arial, sans-serif;

  --container: 1120px;
  --container-wide: 1160px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-card: 14px;
  --radius-lg: 22px;

  --shadow-card: 0 10px 28px rgba(4, 30, 66, 0.08);
  --shadow-card-soft: 0 6px 18px rgba(4, 30, 66, 0.06);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.page {
  width: 100%;
  background: var(--white);
}

.container {
  width: min(var(--container), calc(100% - 60px));
  margin: 0 auto;
}

.container-wide {
  width: min(var(--container-wide), calc(100% - 20px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 56px 0;
  background: var(--white);
}

.section--soft {
  background: var(--bg-soft);
}

.section-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  margin: 0 auto 36px;
  color: var(--text);
  font-family: var(--font-title);
  font-size: 34px;
  line-height: 1.05;
  font-weight: 700;
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: "";
  display: block;
  width: 130px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.85));
}

.section-title::after {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.85), transparent);
}

.section-title--left {
  justify-content: flex-start;
  gap: 24px;
}

.section-title--left::before {
  display: none;
}

.section-title--left::after {
  width: 160px;
}

.accent {
  color: var(--gold);
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  width: min(var(--container-wide), calc(100% - 20px));
  height: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr 198px;
  align-items: center;
  column-gap: 40px;
}

.header__logo {
  color: var(--text);
  font-family: var(--font-title);
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
}

.header__nav-link {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.header__nav-link:hover {
  color: var(--gold-3);
}

.header__btn {
  justify-self: end;
  width: 198px;
  height: 54px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header__btn:hover {
  background: var(--blue-2);
  transform: translateY(-1px);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 204px;
  height: 56px;
  padding: 0 28px;
  border-radius: 9px;
  border: 1px solid transparent;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--gold {
  color: var(--blue);
  background: linear-gradient(180deg, #F5D96D 0%, #D9B63D 100%);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.22);
}

.btn--gold:hover {
  background: linear-gradient(180deg, #FFE27A 0%, var(--gold-2) 100%);
}

.btn--outline-light {
  color: var(--white);
  background: transparent;
  border-color: var(--gold);
}

.btn--outline-light:hover {
  color: var(--blue);
  background: var(--gold);
}

.btn--outline-blue {
  color: var(--blue);
  background: transparent;
  border-color: var(--blue);
}

.btn--outline-blue:hover {
  color: var(--white);
  background: var(--blue);
}

.btn--blue {
  color: var(--white);
  background: var(--blue);
}

.btn--blue:hover {
  background: var(--blue-2);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 705px;
  background:
    radial-gradient(circle at 76% 36%, rgba(46, 94, 154, 0.55) 0%, transparent 28%),
    radial-gradient(circle at 82% 70%, rgba(212, 175, 55, 0.10) 0%, transparent 26%),
    linear-gradient(135deg, #041E42 0%, #061E3F 52%, #082C5F 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: 120px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  transform: rotate(-18deg);
  opacity: 0.75;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 720px;
  height: 260px;
  background:
    radial-gradient(circle, rgba(212, 175, 55, 0.75) 0 2px, transparent 3px),
    linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.20), transparent);
  background-size: 42px 42px, 100% 100%;
  opacity: 0.22;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--container-wide), calc(100% - 20px));
  min-height: 705px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 545px 1fr;
  gap: 48px;
  align-items: center;
  padding: 38px 45px 36px;
}

.hero__content {
  align-self: start;
  padding-top: 30px;
}

.hero__title {
  margin: 0;
  max-width: 570px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 64px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__lead {
  max-width: 530px;
  margin: 56px 0 0;
  color: var(--light-text);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 22px;
  margin-top: 32px;
}

.hero__features {
  position: absolute;
  left: 54px;
  bottom: 30px;
  display: grid;
  grid-template-columns: 177px 210px 185px;
  gap: 24px;
}

.hero-feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 72px;
}

.hero-feature:not(:last-child) {
  padding-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-feature__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.hero-feature__text {
  color: var(--white);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}

.hero__visual {
  position: relative;
  min-height: 510px;
}

.hero__main-img {
  position: absolute;
  right: 90px;
  top: 150px;
  width: 410px;
  z-index: 2;
}

.hero__check-card {
  position: absolute;
  top: 120px;
  right: 0;
  z-index: 4;
  width: 174px;
  min-height: 318px;
  padding: 22px 20px;
  border-radius: 11px;
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-dark);
}

.hero__check-title {
  margin: 0 0 18px;
  color: var(--text);
  font-family: var(--font-title);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.hero__check-list {
  display: grid;
  gap: 14px;
}

.hero__check-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: center;
  color: var(--text);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.hero__check-item::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-3);
  font-size: 11px;
  font-weight: 900;
}

.hero__time-badge {
  position: absolute;
  right: 80px;
  bottom: 142px;
  z-index: 5;
  width: 236px;
  height: 83px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 10px;
  align-items: center;
  border: 2px solid var(--gold);
  border-radius: 11px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.hero__time-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.hero__time-text {
  font-size: 12px;
  line-height: 1.18;
  font-weight: 800;
}

/* Risks */

.risks {
  padding: 48px 0 36px;
}

.risks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 38px;
}

.risk-card {
  min-height: 143px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-card-soft);
}

.risk-card__icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.risk-card__num {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}

.risk-card__title {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.28;
  font-weight: 800;
}

/* Services */

.services {
  padding: 36px 0 42px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 34px;
}

.service-card {
  min-height: 112px;
  padding: 22px 22px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-card-soft);
}

.service-card__icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.service-card__title {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.28;
  font-weight: 800;
}

/* Checklist */

.check-section {
  padding: 26px 0 42px;
}

.check-section__box {
  position: relative;
  min-height: 382px;
  padding: 52px 28px 38px;
  border: 3px solid #1495FF;
  background: var(--white);
}

.check-section__inner {
  width: min(1030px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 30px;
  align-items: center;
}

.check-list-card {
  min-height: 295px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.check-list {
  display: grid;
  gap: 7px;
}

.check-list__item {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.44;
}

.check-list__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold);
  font-size: 17px;
  font-weight: 900;
}

.check-visual {
  width: 475px;
  max-width: 100%;
  object-fit: contain;
}

/* Pricing */

.pricing {
  padding: 8px 0 58px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.price-card {
  min-height: 346px;
  padding: 31px 29px 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-card-soft);
}

.price-card--popular {
  position: relative;
  min-height: 363px;
  margin-top: -16px;
  color: var(--white);
  background: var(--blue);
  border-color: var(--gold);
}

.price-card__badge {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  height: 29px;
  padding: 6px 13px 0;
  border-radius: 16px;
  background: var(--gold-2);
  color: var(--blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card__title {
  margin: 0;
  color: inherit;
  font-family: var(--font-title);
  font-size: 25px;
  line-height: 1.1;
  font-weight: 700;
}

.price-card__price {
  margin: 26px 0 25px;
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.price-card--popular .price-card__price {
  color: var(--gold);
}

.price-card__list {
  display: grid;
  gap: 8px;
  margin-bottom: 30px;
}

.price-card__list li {
  position: relative;
  padding-left: 14px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}

.price-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.price-card--popular .price-card__list li {
  color: var(--white);
}

.price-card .btn {
  width: 183px;
  height: 50px;
  min-width: 0;
  margin-top: auto;
  align-self: center;
}

/* Steps */

.steps {
  padding: 44px 0 72px;
}

.steps__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 38px;
}

.steps__grid::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 85px;
  right: 85px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step__icon-wrap {
  width: 84px;
  height: 84px;
  margin: 0 auto 11px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(4, 30, 66, 0.08);
}

.step__icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.step__num {
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}

.step__title {
  margin: 10px 0 8px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.step__text {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

/* Quiz */

.quiz {
  padding: 18px 0 66px;
}

.quiz__inner {
  display: grid;
  grid-template-columns: 1fr 394px;
  gap: 110px;
  align-items: start;
}

.quiz__title {
  margin: 0 0 35px;
  color: var(--text);
  font-family: var(--font-title);
  font-size: 31px;
  line-height: 1.1;
  font-weight: 700;
}

.quiz-list {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card-soft);
}

.quiz-list__item {
  height: 51px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 20px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.quiz-list__item:last-child {
  border-bottom: 0;
}

.quiz-list__item::after {
  content: "›";
  justify-self: end;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.quiz-form-card {
  padding: 30px 42px 39px;
  border-radius: 0 0 12px 12px;
  background: var(--white);
  box-shadow: 0 4px 4px rgba(0,0,0,0.22);
}

.quiz-form-card__title {
  margin: 0 0 29px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
}

.form {
  display: grid;
  gap: 8px;
}

.input {
  width: 100%;
  height: 46px;
  padding: 0 22px;
  border: 2px solid #D6D6D6;
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  outline: none;
}

.input::placeholder {
  color: #8C96A6;
}

.input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
}

.form .btn {
  width: 100%;
  height: 45px;
  margin-top: 18px;
}

/* FAQ */

.faq {
  padding: 40px 0 50px;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.faq-item {
  min-height: 45px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card-soft);
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-item__head {
  min-height: 45px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 1fr 22px;
  gap: 12px;
  align-items: center;
  color: var(--text);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
}

.faq-item__plus {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-3);
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}

.faq-item__body {
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* Final CTA */

.final {
  padding: 0 0 48px;
}

.final__panel {
  width: min(850px, calc(100% - 60px));
  min-height: 472px;
  margin: 0 auto;
  padding: 38px 54px;
  display: grid;
  grid-template-columns: 1fr 309px;
  gap: 52px;
  border-radius: 12px;
  background: var(--blue);
  color: var(--white);
}

.final__left {
  position: relative;
}

.final__title {
  margin: 0;
  max-width: 430px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
}

.final__text {
  max-width: 440px;
  margin: 22px 0 0;
  color: var(--light-text);
  font-size: 16px;
  line-height: 1.35;
}

.final__list {
  display: grid;
  gap: 7px;
  margin-top: 34px;
}

.final__list li {
  position: relative;
  padding-left: 20px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.35;
}

.final__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.final__shield {
  position: absolute;
  right: 2px;
  bottom: -8px;
  width: 168px;
}

.final__form-wrap {
  position: relative;
  padding-left: 40px;
}

.final__form-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  bottom: 12px;
  width: 2px;
  background: var(--gold);
}

.final-form {
  min-height: 382px;
  padding: 37px 33px;
  border-radius: 11px;
  background: rgba(255,255,255,0.05);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.final-form__title {
  margin: 0 0 26px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
}

.final-form .input {
  height: 42px;
  padding-left: 44px;
  border-radius: 7px;
  border: 2px solid #D6D6D6;
}

.final-form .btn {
  width: 100%;
  height: 43px;
  min-width: 0;
  margin-top: 19px;
  font-size: 13px;
}

/* Footer */

.footer {
  padding: 24px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer__inner {
  width: min(850px, calc(100% - 60px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 28px;
  color: var(--muted);
}

.footer__brand {
  margin-bottom: 15px;
  color: var(--text);
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 700;
}

.footer__text,
.footer__link,
.footer__contact {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.footer__links {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.footer__copy {
  margin-top: 16px;
  text-align: right;
}

/* Responsive */

@media (min-width: 1440px) {
  :root {
    --container: 1200px;
    --container-wide: 1240px;
  }

  .hero__inner {
    grid-template-columns: 600px 1fr;
  }

  .hero__title {
    font-size: 72px;
  }
}

@media (max-width: 1050px) {
  .header__inner {
    grid-template-columns: 1fr auto;
    height: 82px;
  }

  .header__nav {
    display: none;
  }

  .header__btn {
    width: 170px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 44px 30px 220px;
  }

  .hero__visual {
    min-height: 430px;
  }

  .hero__features {
    left: 30px;
    right: 30px;
    bottom: 32px;
  }

  .risks__grid,
  .services__grid,
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .check-section__inner,
  .quiz__inner,
  .final__panel {
    grid-template-columns: 1fr;
  }

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

  .steps__grid::before {
    display: none;
  }

  .final__panel,
  .footer__inner {
    width: min(720px, calc(100% - 40px));
  }

  .final__form-wrap {
    padding-left: 0;
  }

  .final__form-wrap::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .container,
  .container-wide {
    width: calc(100% - 32px);
  }

  .header__logo {
    font-size: 20px;
  }

  .header__btn {
    display: none;
  }

  .hero__title {
    font-size: 42px;
  }

  .hero__lead {
    margin-top: 28px;
    font-size: 15px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero__features,
  .risks__grid,
  .services__grid,
  .pricing__grid,
  .faq__grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .hero-feature:not(:last-child) {
    border-right: 0;
  }

  .hero__main-img,
  .hero__check-card,
  .hero__time-badge {
    position: static;
    width: 100%;
    margin-top: 20px;
  }

  .hero__features {
    position: static;
    margin-top: 28px;
  }

  .risk-card,
  .service-card {
    grid-template-columns: 64px 1fr;
  }

  .section-title {
    font-size: 30px;
    gap: 14px;
  }

  .section-title::before,
  .section-title::after {
    width: 48px;
  }

  .check-section__box {
    padding: 38px 16px;
  }

  .check-section__inner {
    width: 100%;
  }

  .quiz__inner {
    gap: 32px;
  }

  .quiz-form-card {
    padding: 24px;
  }

  .final__panel {
    width: calc(100% - 32px);
    padding: 28px 22px;
  }

  .footer__links,
  .footer__copy {
    justify-content: flex-start;
    text-align: left;
  }
}
