@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");

/* =============== VARIABLES =============== */
:root {
  --bg-body: #ffffff;
  --text-main: #111827;
  --text-muted: #6b7280;
  --primary: #5d3dd6;
  --primary-dark: #5334e4;
  --primary-soft: #f2ecff;
  --card-bg: #ffffff;
  --card-soft: #f4f4ff;
  --border-soft: #e5e7eb;
}

/* =============== BASE =============== */
body {
  font-family:
    "Mulish",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-main);
  background: var(--bg-body);
}

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

.section {
  padding: 80px 0;
}

.container {
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 10%;
}

.section-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  margin: 0 0 32px;
  color: var(--text-main);
}

/* =============== BUTTONS =============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 32px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(109, 75, 255, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(109, 75, 255, 0.25);
}

/* =============== TOP / HERO =============== */
.top {
  position: relative;
  padding: 32px 0 72px;
  background: url(../img/first-full.webp);
  background-size: cover;
  /* overflow: hidden; */
  aspect-ratio: 1440/766;
  display: flex;
  align-items: space-between;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 56px;
}

.logo {
  width: 91px;
  height: 97px;
  background: url("../img/Logo.svg") no-repeat center/contain;
}

.desktop-nav .navigation {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.desktop-nav .navigation a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
}

.desktop-nav .navigation a.active,
.desktop-nav .navigation a[aria-current="page"] {
  color: var(--primary);
}

.contact-us {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px 8px 22px;
  border-radius: 999px;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

.contact-us img {
  width: 18px;
  height: 18px;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.burger img {
  width: 24px;
  height: 24px;
}

/* hero layout */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 48px;
}

.hero-title {
  width: 60vw;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.2;
}

.hero-desc {
  margin: 32px 0;
  font-size: 24px;
  font-weight: 500;
}

.hero-btn {
  font-size: 24px;
  font-weight: 600;
}

.hero-image {
  position: relative;
  justify-self: end;
  max-width: 430px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.25);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====== mobile menu panel / overlay (shared with JS) ====== */
.menu-panel[hidden] {
  display: none !important;
}

.menu-panel {
  user-select: none;
  position: absolute;
  right: 16px;
  top: 64px;
  width: 230px;
  padding: 16px 16px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
  z-index: 50;
}

.menu-panel .menu-close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: var(--primary);
}

.menu-panel .navigation {
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-panel .navigation a {
  font-weight: 500;
  color: var(--text-main);
}

.menu-panel .navigation a.active {
  color: var(--primary);
}

.menu-overlay[hidden] {
  display: none !important;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 40;
}

/* =============== BENEFITS =============== */
.section-benefits {
  background: #ffffff;
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 56px;
  padding-bottom: 0;
}

.benefits-image img {
  border-radius: 32px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.benefits-content .section-title {
  margin-bottom: 28px;
}

/* сетка преимуществ: по умолчанию 2 колонки (планшет/десктоп) */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.benefit-card img {
  width: 100px;
  height: 100px;
}

.benefit-card p {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
}

/* =============== STRUCTURE =============== */
.section-structure {
  background: #fff;
  padding: 0;
}

.structure-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 48px;
  /* max-width: 640px; */
  padding: 0;
}

.structure-list li {
  position: relative;
  padding-left: 32px;
  font-size: 32px;
  font-weight: 400;
}

.structure-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--primary);
}

/* =============== REVIEWS =============== */
.section-reviews {
  background: #fff;
  padding: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.review-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 13px;

  background: linear-gradient(180deg, #efefef 0%, #c4b7f4 100%) !important;
  border-radius: 32px;
}

.review-comma {
  width: 32px;
  height: auto;
}

.review-text {
  margin: 0;
  font-size: 18px;
}

.review-person {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  gap: 12px;
}

.review-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  margin: 0 0 2px;
  font-weight: 600;
  font-size: 24px;
}

.review-position {
  margin: 0;
  font-size: 18px;
}

/* swiper */
.reviews-swiper {
  display: none;
}

.reviews-swiper .swiper {
  width: 100%;
}

.reviews-swiper .review-card {
  background: var(--card-soft);
}

.reviews-swiper .swiper-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.reviews-swiper .swiper-button-prev,
.reviews-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid var(--primary);
  background: #ffffff;
  color: var(--primary);
  --swiper-navigation-size: 18px;
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.reviews-swiper .swiper-button-prev:hover,
.reviews-swiper .swiper-button-next:hover {
  background: rgba(109, 75, 255, 0.06);
}

.reviews-swiper .swiper-button-disabled {
  border-color: #e5e7eb !important;
  color: #9ca3af !important;
  background: transparent !important;
  opacity: 1 !important;
}

/* =============== TASKS =============== */
.section-tasks {
  padding: 0;
}

.tasks-bg {
  background: url(../img/tasks-bg.jpg) no-repeat;
  background-size: cover;
  padding: 72px 0 80px;
  text-align: center;
}

.tasks-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}

/* swiper для задач (по умолчанию скрыт, только мобилка включает) */
.tasks-swiper {
  display: none;
  margin-top: 32px;
}

.tasks-swiper .swiper {
  width: 100%;
}

.tasks-swiper .swiper-slide {
  height: auto;
}

.tasks-swiper .task-card {
  height: 100%;
}

.task-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  padding: 20px 18px 18px;
  color: #111827;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.25);
}

.task-card h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}

.task-card p {
  margin: 0;
  text-align: left;
  font-size: 18px;
}

.task-link {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
}

/* =============== CTA =============== */
.section-cta {
  background: #fff;
}

.cta-layout {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 38px;
}

.cta-text {
  margin-left: auto;
  max-width: 632px;
}

.cta-text h3 {
  margin: 0 0 24px;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
}

.cta-text a {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  gap: 12px;
  max-width: 475px;
  font-size: 24px;
  font-weight: 600;

  background: #5d3dd6;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  border-radius: 40px;
}

.cta-image img {
  margin-left: auto;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  border-radius: 30px 0px 0px 30px;
}

/* =============== FAQ =============== */
.section-faq {
  background: #ffffff;
  padding: 0;

  .section-title {
    text-align: center;
    font-size: 44px;
  }
}

.grid2 ul {
  list-style: none;
  max-width: 906px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.grid2 li {
  background: var(--primary);
  border-radius: 24px;
  padding: 14px 20px;
  font-size: 24px;
  user-select: none;
}

.grid2 .row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.grid2 .num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Exo 2", sans-serif;
  font-size: 24px;
  font-weight: 600;
  background: #ffffff;
  flex: 0 0 40px;
}

.grid2 .question {
  color: #fff;
  flex: 1 1 auto;
}

.grid2 .plus {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  border: none;
  background: transparent url("../img/plus.svg") no-repeat center/contain;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.grid2 .plus[aria-expanded="true"] {
  transform: rotate(45deg);
}

.grid2 .answer {
  margin-left: calc(40px + 16px);
  margin-top: 6px;
  font-size: 24px;
  color: white;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.35s ease;
}

.grid2 li.is-open .answer {
  max-height: 240px;
  opacity: 1;
}

/* защита от вылазания */
.grid2 li,
.grid2 .answer {
  max-width: 100%;
  overflow-x: hidden;
  word-break: break-word;
}

/* =============== FOOTER =============== */
.footer {
  background: #5d3dd6;
  color: #ffffff;
  padding: 32px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 32px;
  align-items: flex-start;
}

.footer-block--company img {
  margin-bottom: 12px;
}

.footer-block--company p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  margin: 0 0 8px;
}

.footer-policy {
  font-family: "Montserrat";
  font-size: 12px;
  opacity: 0.8;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.footer-links a {
  font-weight: 600;
  font-size: 15px;
}

.footer-block--subscribe {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-subscribe-title {
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.footer-subscribe {
  position: relative;
  width: 100%;
}

.footer-input {
  width: 100%;
  padding: 9px 34px 9px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.footer-subscribe img {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.swiper-nav {
  display: none !important;
}

/* =============== MEDIA ≤1024 =============== */
@media (max-width: 1024px) {
  .top {
    width: 100%;
    aspect-ratio: 390 / 470;
    padding: 24px 0 64px;
    background-image: url("../img/first-mobile.webp");
    background-position: center;
    background-size: cover;
  }

  .header {
    padding-inline: 16px;
    margin-top: 10px;
    margin-bottom: 40px;
    border-radius: 16px;
  }

  .desktop-nav {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1.1fr);
  }

  .hero-image {
    display: none;
  }

  .benefits-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .benefits-image {
    order: -1;
    max-width: 520px;
  }

  .benefit-card p {
    font-size: 20px;
  }

  .benefits-grid {
    gap: 16px;
  }

  .section-structure {
    .section-title {
      font-size: 32px;
    }

    .structure-list {
      li {
        font-size: 24px;
      }
    }
  }

  .section-reviews {
    .container {
      margin: 0;
    }

    .section-title {
      padding-left: 16px;
    }
  }

  .reviews-grid.reviews-desktop {
    display: none;
  }

  .reviews-swiper {
    display: block;
    margin-top: 24px;
  }

  .tasks-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .cta-text {
    padding-left: 16px;

    h3 {
      font-size: 24px;
    }
    a {
      font-size: 18px;
    }
  }
}

/* =============== MEDIA ≤719 (МОБИЛКА) =============== */
@media (max-width: 719px) {
  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .top {
    margin-bottom: 15vh;
    padding: 16px 0 40px;
    background: #fff;
    background-image: url("../img/first-mobile.webp");
    background-size: cover;
    background-position: center;
    color: #fff;
  }

  .container {
    width: 100%;
    padding: 0;
  }

  .header {
    background: transparent;
    box-shadow: none;
    padding-inline: 0;
    margin-bottom: 220px;
  }

  .logo {
    width: 140px;
  }

  .contact-us {
    display: none;
  }

  .hero {
    width: 100%;
  }

  .hero-content {
    width: 100%;
    padding: 24px 16px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #5d3dd6 122.92%);
  }

  .hero-title {
    width: 100%;
    color: #000;
    font-size: 24px;
  }

  .hero-desc {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin: 16px 0;
  }

  .hero-btn {
    margin: 32px 0;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
  }

  /* меню */
  .menu-panel {
    right: 16px;
    top: 60px;
  }

  /* benefits */
  .benefits-layout {
    gap: 24px;
  }

  .benefits-content .section-title {
    padding: 0 16px;
    font-weight: 600;
  }

  .benefits-image {
    display: none;
  }

  /* карточки преимуществ: одна колонка на мобиле */
  .benefits-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .benefit-card {
    border-radius: 20px;
    padding: 14px 16px;
  }

  .benefit-card img {
    width: 72px;
    height: 72px;
  }

  .benefit-card p {
    font-size: 16px;
    font-weight: 600;
  }

  .section-structure {
    padding: 0 16px;
  }

  .structure-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding-left: 16px;

    li::before {
      width: 12px;
      height: 12px;
    }

    li {
      padding-left: 24px;
      font-weight: 600;
      font-size: 16px;
    }
  }

  .section-reviews .section-title {
    margin-bottom: 16px;
    padding: 0 16px;
  }

  .review-text {
    font-size: 16px;
    font-weight: 600;
  }

  .review-name {
    font-size: 18px;
    font-weight: 600;
  }

  .review-position {
    font-size: 16px;
    font-weight: 600;
  }

  .tasks-bg {
    padding: 48px 0 52px;
  }

  .section-title--light {
    font-size: 24px;
  }

  /* на мобилке вместо грид — swiper */
  .tasks-grid {
    display: none;
  }

  .tasks-swiper {
    display: block;
  }

  .cta-layout {
    padding: 0 16px;
    gap: 24px;
  }

  .cta-text h3 {
    font-size: 24px;
    font-weight: 600;
  }

  .cta-text a {
    font-size: 16px;
    font-weight: 600;
  }

  .cta-image {
    display: none;
  }

  .section-faq .section-title {
    font-weight: 600;
    font-size: 24px;
  }

  .grid2 ul {
    max-width: 90vw;
    margin-top: 20px;
    padding-left: 0;
  }

  .grid2 li {
    padding: 12px 14px;
    font-size: 16px !important;
  }

  .grid2 .row {
    gap: 10px;
  }

  .grid2 .num {
    min-width: 22px;
    max-width: 22px;
    min-height: 22px;
    max-height: 22px;
    font-size: 16px;
  }

  .grid2 .question {
    font-size: 16px;
  }

  .grid2 .plus {
    max-width: 22px;
  }

  .grid2 .answer {
    margin-left: calc(34px + 10px);
    font-size: 16px;
  }

  .footer-inner {
    padding: 0 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }

  .footer-block--company p {
    text-align: center;
  }

  .footer-links {
    display: none;
  }

  .footer-policy {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 200;
    font-size: 10px;
    max-width: 16em;
    display: inline-flex;
    flex-wrap: wrap;
    text-align: center;
    margin: 0 auto;
  }

  .footer-block--subscribe {
    align-items: center;
  }

  .footer-subscribe {
    display: none;
  }

  .footer-subscribe-title {
    display: none;
  }

  .footer-socials {
    margin: 0 auto;
  }
}

nav li { position: relative; width: 100%; }
nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.45;
  color: #0a0b0b;
  text-decoration: none;
  white-space: nowrap;
  transition: color .3s ease;
}
nav a:hover { color: #0e71f2; }

/* шевроны */
nav .chevron { display: inline-flex; line-height: 0; transition: transform .2s ease; }

/* родитель с подменю */
nav li.has-children { position: relative; }

/* показать подменю по hover и focus-within (все уровни) */
nav li.has-children:hover > .sub-menu,
nav li.has-children:focus-within > .sub-menu {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* Базовый дропдаун (уровень 2: depth=1, выпадает вниз) */
nav .sub-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  margin: 0;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px 0 #0a0b0b26;
  z-index: 50;
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 16px;
  transition: opacity .15s ease, visibility 0s;
  opacity: 0;
  visibility: hidden;
  min-width: 220px;
}

/* «мостик» для уровня 2 */
nav .sub-menu::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -16px;
  height: 16px;
}

/* Флайаут (уровень 3: sub-menu внутри sub-menu — вправо) */
nav .sub-menu .sub-menu {
  top: -16px;
  left: calc(100% + 16px); /* смещение вправо от родителя */
  /* чтобы перекрытия были поверх соседей */
  z-index: 60;
}

/* Мостик для флайаута (перехват hover между 2-м и 3-м уровнем) */
nav .sub-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: 0; left: -16px;
  width: 16px; height: 100%;
}

/* Повороты шевронов при раскрытии */
nav li.depth-0.has-children:hover > a .chevron-down,
nav li.depth-0.has-children:focus-within > a .chevron-down {
  transform: rotate(180deg);
}
nav li.depth-1.has-children:hover > a .chevron-right,
nav li.depth-1.has-children:focus-within > a .chevron-right {
  transform: translateX(2px); /* лёгкий «толчок» вместо поворота */
}

/* сглаживание исчезновения */
@media (hover:hover) and (pointer:fine) {
  nav li.has-children > .sub-menu {
    transition: visibility .2s step-end, opacity .2s;
    opacity: 0; visibility: hidden;
  }
  nav li.has-children:hover > .sub-menu {
    opacity: 1; visibility: visible;
    transition: opacity .15s ease, visibility 0s;
  }
}

/* Уточнения для корня, чтобы горизонтальный ряд не ломался */
nav > ul { align-items: center; }
nav > ul > li { width: auto; }

.page .top {
  background: unset;
  aspect-ratio: unset;
}
.page .header {
  margin-bottom: 0;
}
.page .container {
  padding-bottom: 0;
}

.page__content {
  margin: 30px auto 100px;
  padding: 0 15px;
}
.page__content p,
.page__content li {
  font-size: 18px;
}
.page__content a {
  text-decoration: underline;
}
.page__content > *:not(:last-child) {
  margin-bottom: 1em;
}