:root {
  --navy: #1e334c;
  --navy-soft: #3c5a80;
  --blue: #3584d4;
  --ink: #0a1624;
  --white: #ffffff;
  --header-stroke: rgba(30, 51, 76, 0.21);
  --email-at: rgba(30, 51, 76, 0.5);
  --font: "Inter Tight", sans-serif;
  --hero-wash: linear-gradient(
    180deg,
    rgba(10, 22, 36, 0.92) 0%,
    rgba(10, 22, 36, 0.74) 22%,
    rgba(10, 22, 36, 0.48) 42%,
    rgba(10, 22, 36, 0.18) 58%,
    rgba(10, 22, 36, 0) 74%
  );
}

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

html,
body {
  min-height: 100%;
}

body {
  font-family: var(--font);
  letter-spacing: 1%;
  color: var(--navy);
  background: #0a1624;
  -webkit-font-smoothing: antialiased;
}

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

html.popup-open,
html.popup-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

html.popup-open body {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

img {
  display: block;
  max-width: 100%;
}

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

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: #304a6d;
  background-image: var(--hero-wash), url("../assets/images/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

html.home .page {
  display: flex;
  flex-direction: column;
}

.shell {
  position: relative;
  z-index: 1;
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 144px;
}

html.home .shell {
  flex: 1 1 auto;
}

.home-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 1200px;
  max-width: calc(100% - 48px);
  margin: auto auto 0;
  padding: 0 0 28px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}

.home-footer__privacy {
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.55;
}

.home-footer__privacy:hover {
  opacity: 0.85;
}

.home-footer__copy {
  margin: 0;
  opacity: 0.55;
  white-space: nowrap;
}

/* ===== Header: exact 1200×98 from Figma ===== */
.header {
  position: relative;
  z-index: 20;
  width: 1200px;
  height: 98px;
  margin-top: 22px;
  background: var(--white);
  border: 1px solid var(--header-stroke);
  border-radius: 49px;
}

.header__logo {
  position: absolute;
  left: 50px;
  top: 39px;
  width: 167px;
}

.header__logo img {
  width: 167px;
  height: auto;
}

.header__divider {
  position: absolute;
  left: 241px;
  top: 35px;
  width: 1px;
  height: 28px;
  background: var(--navy);
  opacity: 0.13;
}

.header__nav {
  position: absolute;
  left: 271px;
  top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 34px;
  font-size: 15px;
  line-height: 1;
}

.header__nav a:hover,
.header__phone:hover,
.header__email:hover {
  opacity: 0.7;
}

.header__nav-event {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px 6px 8px;
  border-radius: 999px;
  background: #3584d4;
  color: #fff;
  font-weight: 600;
}

.header__nav a.header__nav-event:hover,
.menu__nav a.header__nav-event:hover {
  opacity: 1;
  background: #2b73bb;
}

.header__nav-event[aria-current="page"] {
  background: #1e334c;
}

.about-footer__nav a.header__nav-event:hover,
.dev-footer__nav a.header__nav-event:hover,
.about-footer__nav .header__nav-event[aria-current="page"],
.dev-footer__nav .header__nav-event[aria-current="page"] {
  opacity: 1;
  background: #2b73bb;
}

.header__nav-event-icon {
  display: block;
  flex-shrink: 0;
}

.header__contacts {
  position: absolute;
  right: 40px;
  top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 34px;
}

.header__socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__socials a {
  display: grid;
  place-items: center;
}

.header__phone {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.header__email {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.header__email span {
  color: var(--email-at);
  font-weight: 700;
}

.header__burger {
  display: none;
}

/* ===== Hero ===== */
.hero {
  position: relative;
}

.hero__title {
  margin: 80px 0 0 2px;
  max-width: 630px;
  color: var(--white);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.13;
}

.hero__title strong {
  font-weight: 700;
}

.hero__scheme {
  display: none;
}

.points {
  list-style: none;
  position: relative;
  margin: 42px 0 0 2px;
  height: 162px;
}

.points__item {
  position: absolute;
  display: grid;
  grid-template-columns: 14px 1fr;
  column-gap: 15px;
  align-items: start;
}

.points__item--1 {
  top: 0;
  left: 0;
  width: 570px;
}

.points__item--1 p {
  width: 541px;
}

.points__item--2 {
  top: 0;
  left: 587px;
  width: 449px;
}

.points__item--2 p {
  width: 420px;
}

.points__item--3 {
  top: 110px;
  left: 2px;
  width: 532px;
}

.points__item--3 p {
  width: 503px;
}

.points__item--4 {
  top: 110px;
  left: 587px;
  width: 584px;
}

.points__item--4 p {
  width: 555px;
}

.points__icon {
  width: 13.7px;
  height: 9.4px;
  margin-top: 9px;
}

.points__item p {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.29;
}

.points__item strong {
  font-weight: 700;
}

.points__item--1 strong,
.points__item--2 strong,
.points__item--4 strong,
.points__u {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

/* ===== Cards: Figma groups 387 wide, white 269 tall ===== */
.audience {
  position: relative;
  margin: 88px 0 0 2px;
  display: grid;
  grid-template-columns: 387px 387px 387px;
  column-gap: 18px;
  align-items: start;
  overflow: visible;
}

.card {
  position: relative;
  width: 387px;
  height: 269px;
  overflow: visible;
}

.card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--white);
  border-radius: 30px;
}

.card--dev {
  z-index: 3;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.card--dev::before {
  transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.card--arch {
  z-index: 2;
}

.card--build {
  z-index: 1;
  overflow: visible;
}

.card__visual {
  position: absolute;
  z-index: 1;
  max-width: none;
  pointer-events: none;
}

.card--dev .card__visual {
  top: -76px;
  left: 16px;
  width: 336px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.card--arch .card__visual {
  top: -125px;
  left: 22px;
  width: 308px;
}

.card--build .card__visual {
  top: -58px;
  left: 22px;
  width: 212px;
  max-width: none;
}

.card__glow {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: 30px;
  overflow: hidden;
  pointer-events: none;
}

.card__fade {
  position: absolute;
  left: 13px;
  top: 77px;
  width: 338px;
  height: 166px;
  background: #fff;
  border-radius: 50%;
  filter: blur(22px);
}

.card--build .card__fade {
  left: 6px;
  top: 118px;
  height: 130px;
}

.card__check {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 17px;
  background: var(--blue);
}

.card--dev .card__check {
  top: 19px;
  left: 213px;
}

.card--arch .card__check {
  top: 15px;
  left: 259px;
}

.card--build .card__check {
  top: 15px;
  left: 208px;
}

.card__check img {
  width: 11px;
}

.card__title,
.card__lead,
.card__link {
  position: absolute;
  z-index: 3;
  left: 30px;
}

.card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.card--dev .card__title {
  bottom: 132px;
}

.card--arch .card__title {
  bottom: 132px;
}

.card--build .card__title {
  bottom: 132px;
}

.card__lead {
  max-width: 304px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.24;
  opacity: 0.89;
}

.card--dev .card__lead {
  bottom: 102px;
}

.card--arch .card__lead {
  bottom: 102px;
}

.card--build .card__lead {
  bottom: 81px;
  max-width: 280px;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  bottom: 42px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.card__link span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.card__link img {
  width: 9.24px;
  height: 9.24px;
  flex-shrink: 0;
}

.card--dev .card__link img {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .card--dev:hover {
    z-index: 5;
    transform: translateY(-8px);
  }

  .card--dev:hover::before {
    box-shadow: 0 22px 48px rgba(10, 22, 36, 0.2);
  }

  .card--dev:hover .card__visual {
    transform: translateY(-10px);
  }

  .card--dev:hover .card__link img {
    transform: translate(3px, -3px);
  }
}

.card--dev:focus-visible {
  outline: none;
}

.card--dev:focus-visible::before {
  box-shadow:
    0 0 0 3px rgba(53, 132, 212, 0.45),
    0 22px 48px rgba(10, 22, 36, 0.2);
}

.card__badge {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 14px 0 11px;
  border-radius: 30px;
  background: var(--navy-soft);
  color: var(--white);
  font-size: 17px;
  white-space: nowrap;
}

.card--arch .card__badge {
  top: -18px;
  left: 35px;
}

.card--build .card__badge {
  top: -18px;
  left: 30px;
}

.card__badge img {
  width: 20px;
  height: 20px;
}

.card--locked::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: 30px;
  background: transparent;
  pointer-events: auto;
}

.card--locked .card__visual {
  filter: blur(4px);
}

.card--locked .card__check,
.card--locked .card__title,
.card--locked .card__lead,
.card--locked .card__link {
  filter: blur(2px);
}

.card--locked .card__link {
  pointer-events: none;
  cursor: default;
}

.card--locked .card__badge {
  z-index: 4;
  opacity: 1;
  filter: none;
}

/* ===== Mobile menu overlay ===== */
.menu {
  position: fixed;
  inset: 0;
  z-index: 15;
  visibility: hidden;
  pointer-events: none;
}

.menu.is-open,
.menu.is-closing {
  visibility: visible;
}

.menu.is-open {
  pointer-events: auto;
}

.menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.36s ease;
}

.menu.is-open .menu__backdrop {
  opacity: 1;
}

.menu__panel {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 78px;
  z-index: 21;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -12px, 0);
  transition:
    opacity 0.36s ease,
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.36s;
}

body.menu-open .menu__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.header__burger span {
  transition:
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease;
}

body.menu-open .header__burger span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

body.menu-open .header__burger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .header__burger span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.menu__card {
  width: 100%;
  padding: 24px 30px 30px;
  background: var(--white);
  border-radius: 30px;
}

.menu__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  font-size: 16px;
}

.menu__rule {
  display: block;
  width: 230px;
  height: 1px;
  margin: 34px 0 0;
  background: var(--navy);
  opacity: 0.2;
}

.menu__phone,
.menu__email {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.menu__phone {
  margin-top: 33px;
  font-weight: 700;
}

.menu__email {
  margin-top: 25px;
  font-weight: 500;
}

.menu__email span {
  color: var(--email-at);
  font-weight: 700;
}

.menu__socials {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
}

body.menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .menu__backdrop,
  .menu__panel,
  .header__burger span,
  .header,
  .card--dev,
  .card--dev::before,
  .card--dev .card__visual,
  .card--dev .card__link img {
    transition: none;
  }
}

@media (min-width: 1200px) {
  html,
  body {
    height: auto;
    overflow-x: hidden;
  }

  html.home,
  html.home body {
    height: 100%;
    overflow: hidden;
  }

  .page {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    overflow: hidden;
  }

  html.home .shell {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-bottom: 0;
  }

  html.home .header {
    margin-top: clamp(12px, 2vh, 22px);
  }

  html.home .hero {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  html.home .hero__title {
    margin-top: clamp(28px, 7.4vh, 80px);
  }

  html.home .points {
    margin-top: clamp(20px, 3.9vh, 42px);
  }

  html.home .audience {
    margin-top: clamp(32px, 8.1vh, 88px);
    margin-bottom: auto;
  }

  html.home .home-footer {
    flex-shrink: 0;
    padding-bottom: clamp(16px, 2.6vh, 28px);
  }

  .menu,
  .menu__panel {
    display: none;
  }
}

@media (min-width: 1200px) and (max-height: 800px) {
  html.home .hero__title {
    font-size: 44px;
  }

  html.home .points {
    height: 140px;
  }

  html.home .points__item--3,
  html.home .points__item--4 {
    top: 92px;
  }

  html.home .points__item p {
    font-size: 18px;
  }
}

/* ===== Tablet 768 artboard, 768–1199 ===== */
@media (min-width: 768px) and (max-width: 1199.98px) {
  html,
  body {
    height: auto;
    overflow-x: hidden;
  }

  .page {
    width: 100%;
    min-height: 100vh;
    overflow: visible;
  }

  .shell {
    z-index: auto;
    width: 100%;
    max-width: 768px;
    min-height: 0;
    margin: 0 auto;
    padding: 20px 40px 32px;
  }

  .home-footer {
    width: 100%;
    max-width: 768px;
    padding: 4px 40px 24px;
  }

  .header {
    width: 100%;
    height: 72px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px 0 28px;
    border-radius: 36px;
  }

  .header__logo,
  .header__logo img {
    position: static;
    width: 160px;
  }

  .header__nav,
  .header__contacts,
  .header__socials,
  .header__phone,
  .header__email,
  .header__divider {
    display: none;
  }

  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    margin: 0;
    border: 0;
    border-radius: 24px;
    background: var(--navy);
    cursor: pointer;
    flex-shrink: 0;
  }

  .header__burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
  }

  .hero {
    width: 100%;
    margin: 0 auto;
  }

  .hero__title {
    margin: 48px 0 0;
    max-width: 560px;
    font-size: 36px;
    line-height: 1.13;
  }

  .hero__scheme {
    display: block;
    width: 100%;
    height: auto;
    margin: 24px 0 0;
  }

  .points {
    margin: 28px 0 0;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
    row-gap: 28px;
  }

  .points__item,
  .points__item--1,
  .points__item--2,
  .points__item--3,
  .points__item--4 {
    position: static;
    width: auto;
    top: auto;
    left: auto;
    display: grid;
    grid-template-columns: 12px 1fr;
    column-gap: 12px;
  }

  .points__item p,
  .points__item--1 p,
  .points__item--2 p,
  .points__item--3 p,
  .points__item--4 p {
    width: auto;
    font-size: 16px;
    line-height: 1.29;
  }

  .points__icon {
    width: 12px;
    height: 8.2px;
    margin-top: 7px;
  }

  .audience {
    margin: 88px 0 0;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    column-gap: 24px;
    row-gap: 56px;
  }

  .card {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 30px;
  }

  .card::before {
    inset: 0;
  }

  .card--dev,
  .card--arch,
  .card--build {
    height: 280px;
    margin: 0;
    width: 100%;
  }

  .card--build {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 332px;
  }

  .card--locked::after {
    inset: 0;
  }

  .card--dev .card__visual {
    top: -24px;
    left: 12px;
    width: 240px;
  }

  .card--arch .card__visual {
    top: -40px;
    left: 14px;
    width: 260px;
  }

  .card--build .card__visual {
    top: -16px;
    left: 16px;
    width: 176px;
  }

  .card__fade {
    left: 12px;
    top: 88px;
    width: 300px;
    height: 140px;
    bottom: auto;
  }

  .card--arch .card__fade {
    left: 16px;
    top: 96px;
  }

  .card--build .card__fade {
    left: 12px;
    top: 100px;
    width: 300px;
    height: 130px;
  }

  .card__check {
    width: 28px;
    height: 28px;
    border-radius: 14px;
  }

  .card--dev .card__check {
    top: 22px;
    left: 186px;
  }

  .card--arch .card__check {
    top: 20px;
    left: 140px;
    z-index: 5;
  }

  .card--build .card__check {
    top: 16px;
    left: 148px;
  }

  .card__title,
  .card__lead,
  .card__link {
    left: 22px;
  }

  .card__title {
    font-size: 20px;
    bottom: 132px;
  }

  .card--dev .card__title,
  .card--arch .card__title,
  .card--build .card__title {
    bottom: 132px;
  }

  .card__lead {
    font-size: 15px;
    max-width: 288px;
    bottom: 96px;
  }

  .card--dev .card__lead,
  .card--arch .card__lead,
  .card--build .card__lead {
    bottom: 96px;
  }

  .card__link {
    bottom: 36px;
    font-size: 17px;
    gap: 10px;
  }

  .card__badge,
  .card--arch .card__badge,
  .card--build .card__badge {
    top: 14px;
    left: auto;
    right: 14px;
    height: 36px;
    padding: 0 12px 0 10px;
    font-size: 16px;
  }

  .card__badge img {
    width: 18px;
    height: 18px;
  }

  .menu__panel {
    left: 40px;
    right: 40px;
    top: 100px;
    width: auto;
  }

  .menu__card {
    padding: 28px 36px 36px;
  }

  body.menu-open .header__burger span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  body.menu-open .header__burger span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .menu__nav {
    font-size: 16px;
  }

  .menu__rule {
    width: 100%;
    max-width: 616px;
  }
}

/* ===== Mobile 320 artboard, scales to viewport width ===== */
@media (max-width: 767px) {
  h1 {
    font-size: 30px;
  }

  html,
  body {
    height: auto;
    overflow-x: hidden;
    background: #0a1624;
  }

  .page {
    width: 100%;
    min-height: 100vh;
    overflow: visible;
    background-color: #0a1624;
    background-image: none;
  }

  .page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100svh;
    z-index: 0;
    pointer-events: none;
    background-color: #0a1624;
    background-image:
      linear-gradient(
        180deg,
        #0a1624 0%,
        #0a1624 36%,
        rgba(10, 22, 36, 0.82) 54%,
        rgba(10, 22, 36, 0.4) 72%,
        rgba(10, 22, 36, 0.12) 86%,
        #0a1624 100%
      ),
      url("../assets/images/hero-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 42%;
  }

  .shell {
    z-index: auto;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0 auto;
    padding: 80px 15px 40px;
  }

  .home-footer {
    width: 100%;
    max-width: none;
    padding: 0 15px calc(20px + env(safe-area-inset-bottom, 0px));
    font-size: 13px;
  }

  .header {
    position: fixed;
    top: max(10px, env(safe-area-inset-top, 0px));
    left: 15px;
    right: 15px;
    z-index: 40;
    width: auto;
    height: 60px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 0 20px;
    box-shadow: 0 10px 28px rgba(10, 22, 36, 0.12);
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.32s ease;
    will-change: transform;
  }

  .header.is-away {
    transform: translate3d(0, calc(-100% - 20px), 0);
    box-shadow: none;
    pointer-events: none;
  }

  body.menu-open .header,
  body.about-lb-open .header,
  html.about-lb-open .header {
    transform: none;
    pointer-events: auto;
  }

  .menu__panel {
    position: fixed;
    top: calc(max(10px, env(safe-area-inset-top, 0px)) + 68px);
    z-index: 39;
  }

  .header__logo,
  .header__logo img {
    position: static;
    width: 140px;
  }

  .header__nav,
  .header__contacts,
  .header__socials,
  .header__phone,
  .header__email,
  .header__divider {
    display: none;
  }

  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    margin: 0;
    border: 0;
    border-radius: 20px;
    background: var(--navy);
    cursor: pointer;
    flex-shrink: 0;
  }

  .header__burger span {
    display: block;
    width: 16px;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
  }

  .menu__nav {
    font-size: 16px;
  }

  .hero {
    width: 100%;
    margin: 0 auto;
  }

  .hero__title {
    margin: 66px 0 0;
    max-width: none;
    font-size: 30px;
    line-height: 1.13;
  }

  .hero__scheme {
    display: block;
    width: 100%;
    height: auto;
    margin: 16px 0 0;
  }

  .points {
    margin: 20px 0 0;
    height: auto;
    display: grid;
    row-gap: 20px;
  }

  .points__item,
  .points__item--1,
  .points__item--2,
  .points__item--3,
  .points__item--4 {
    position: static;
    width: auto;
    top: auto;
    left: auto;
    display: grid;
    grid-template-columns: 9px 1fr;
    column-gap: 10px;
    margin-bottom: 0;
  }

  .points__item p,
  .points__item--1 p,
  .points__item--2 p,
  .points__item--3 p,
  .points__item--4 p {
    width: auto;
  }

  .points__icon {
    width: 9px;
    height: 6.18px;
    margin-top: 6px;
  }

  .points__item p {
    font-size: 16px;
    line-height: 1.29;
  }

  .points__item strong {
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
  }

  .audience {
    margin: 16px 0 0;
    grid-template-columns: 1fr;
    justify-items: center;
    column-gap: 0;
    row-gap: 32px;
  }

  .card,
  .card--dev,
  .card--arch,
  .card--build {
    width: 100%;
    max-width: 300px;
    height: 260px;
    margin: 0;
    overflow: hidden;
    border-radius: 30px;
  }

  .card::before,
  .card--arch::before,
  .card--build::before,
  .card--locked::after,
  .card--build.card--locked::after {
    inset: 0;
    height: auto;
  }

  .card--dev .card__visual {
    top: -8px;
    left: 12px;
    width: 202px;
  }

  .card--arch .card__visual {
    top: -16px;
    left: 0;
    width: 220px;
  }

  .card--build .card__visual {
    top: 0;
    left: 12px;
    width: 161px;
  }

  .card__fade {
    left: 8px;
    top: 70px;
    width: 90%;
    height: 130px;
    bottom: auto;
  }

  .card--dev .card__fade,
  .card--arch .card__fade,
  .card--build .card__fade {
    left: 8px;
    top: 70px;
    bottom: auto;
  }

  .card__check {
    width: 26px;
    height: 26px;
    border-radius: 13px;
  }

  .card--dev .card__check {
    top: 18px;
    left: 148px;
  }

  .card--arch .card__check {
    top: 20px;
    left: 120px;
    z-index: 5;
  }

  .card--build .card__check {
    top: 16px;
    left: 132px;
  }

  .card__title,
  .card__lead,
  .card__link,
  .card--arch .card__title,
  .card--arch .card__lead,
  .card--arch .card__link {
    left: 15px;
  }

  .card__title,
  .card--dev .card__title,
  .card--arch .card__title,
  .card--build .card__title {
    font-size: 16px;
    bottom: 116px;
  }

  .card__lead,
  .card--dev .card__lead,
  .card--arch .card__lead,
  .card--build .card__lead {
    font-size: 16px;
    max-width: 250px;
    bottom: 68px;
  }

  .card__link,
  .card--build .card__link {
    bottom: 24px;
    font-size: 16px;
    gap: 10px;
  }

  .card__badge,
  .card--arch .card__badge,
  .card--build .card__badge {
    top: 14px;
    left: auto;
    right: 14px;
    height: 35px;
    padding: 0 12px 0 10px;
    font-size: 16px;
    gap: 5px;
  }

  .card__badge img {
    width: 16px;
    height: 16px;
  }
}
