:root {
  --site-header-height: 72px;
  --container-width: 1280px;
  --container-padding: 30px;

  --text: #0b0b0b;
  --muted: rgba(11, 11, 11, 0.7);
  --line: rgba(0, 0, 0, 0.08);

  --cta-bg: #0b0b0b;
  --cta-fg: #ffffff;
}

@font-face {
  font-family: "Oceanic Grotesk";
  src: url("./assets/fonts/OceanicGroteskTRIAL-Regular-BF677de6f80627f.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oceanic Grotesk";
  src: url("./assets/fonts/OceanicGroteskTRIAL-Extrabold-BF677de6f7dd205.woff2")
    format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  font-family: "Oceanic Grotesk", system-ui, -apple-system, "Segoe UI", Arial,
    sans-serif;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;

}

html {
  scroll-padding-top: var(--site-header-height);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

#top {
  position: relative;
  padding-top: var(--site-header-height);
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.site-header__inner {
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.first-screen {
  padding: 64px 0 76px;
}

.first-screen__inner {
  text-align: center;
}

.first-screen__kicker {
  display: block;
  margin: 0 auto 10px;
  color: #ee4036;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.first-screen__title {
  margin: 0;
  font-size: 56px;
  line-height: .99;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.first-screen__desc {
  margin: 22px auto 20px;
  max-width: 560px;
  font-size: 24px;
  font-family: "Oceanic Grotesk", system-ui, -apple-system, "Segoe UI", Arial,
    sans-serif;
  font-weight: 400;
  line-height: 30px;
  color: var(--text);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 69px;
  padding: 0 34px 5px;
  border-radius: 10px;
  background: var(--cta-bg);
  color: var(--cta-fg);
  text-decoration: none;
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease;
}

.hero-cta:hover {
  background: #ee4036;
  color: #fff;
}

.hero-cta:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.5);
  outline-offset: 3px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand__logo {
  display: block;
  height: 45px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex: 1;
  min-width: 0;
}

.nav__link {
  font-size: 16px;
  line-height: 0.4;
  font-weight: 400;
  padding: 10px 0 8px;
  white-space: nowrap;
  text-decoration: none;
  color: var(--text);
  border-bottom: 0.8px solid rgba(0, 0, 0, 0.26);
  transition: border-color 160ms ease, color 160ms ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: #ee4036;
  border-bottom-color: transparent;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--cta-bg);
  color: var(--cta-fg);
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease;
}

.cta:hover {
  background: #ee4036;
  color: #fff;
}

.cta:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.5);
  outline-offset: 3px;
}

.cta__label--mobile {
  display: none;
}

@media (min-width: 761px) {
  .site-header:not(.site-header--past-hero) .cta {
    visibility: hidden;
    pointer-events: none;
  }
}

.placeholder {
  padding: 56px var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
}

.placeholder h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
}

.hero-red-dot {
  position: absolute;
  top: 48px;
  right: -107px;
  width: 760px;
  height: 760px;
  z-index: 0;
  pointer-events: none;
}

.first-screen,
.clients-strip {
  position: relative;
  z-index: 1;
}

.clients-strip {
  background: rgba(255, 255, 255, 0.7);
  padding: 22px 0;
}

.clients-strip .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.clients-marquee {
  overflow: hidden;
}

.clients-marquee__track {
  display: flex;
  width: max-content;
  animation: clients-marquee 16s linear infinite;
  will-change: transform;
}

.clients-marquee__copy {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}

.clients-marquee__copy img {
  height: 22px;
  width: auto;
  display: block;
}

.numbers {
  padding: 44px 0 40px;
  position: relative;
  z-index: 1;
}

.numbers__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 72px;
}

.numbers__item {
  text-align: center;
}

.numbers__value {
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-family: "Oceanic Grotesk", system-ui, -apple-system, "Segoe UI", Arial,
    sans-serif;
}

.numbers__value--black {
  color: var(--text);
}

.numbers__value--red {
  color: #ee4036;
}

.numbers__label {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.2;
  color: var(--muted);
  font-weight: 400;
  font-family: "Oceanic Grotesk", system-ui, -apple-system, "Segoe UI", Arial,
    sans-serif;
}

.formats {
  padding: 52px 0 32px;
}

.section-title {
  margin: 0 0 28px;
  text-align: center;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.formats__grid {
  width: 940px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.formats-card {
  width: 100%;
  min-width: 0;
  min-height: 200px;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px 14px;
}

.formats-card__title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.formats-card__title img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.formats-card__text {
  margin: 10px 0 0;
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
}

.services {
  padding: 48px 0 32px;
}

.services__list {
  width: 940px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.services-item {
  display: grid;
  grid-template-columns: 310px 1fr;
  column-gap: 50px;
}

.services-item__title,
.services-item__price,
.services-item__right p {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
}

.services-item__title {
  font-weight: 800;
}

.services-item__price,
.services-item__right p {
  font-weight: 400;
}

.services-item__price {
  margin-top: 8px;
}

.services-item__right p + p {
  margin-top: 8px;
}

.process {
  position: relative;
  padding: 48px 0 32px;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(5, 220px);
  justify-content: space-between;
  gap: 15px;
  padding: 8px 0;
}

.process-card {
  --card-tilt: 0deg;
  width: 220px;
  height: 290px;
  background: #f2f2f2;
  border-radius: 10px;
  padding: 14px 14px 16px;
  rotate: var(--card-tilt);
  transform: translate3d(0, 0, 0);
  transform-origin: center;
  will-change: transform;
  transition: transform 220ms ease;
}

.process-card:nth-child(1) {
  --card-tilt: -2.2deg;
}

.process-card:nth-child(2) {
  --card-tilt: 1.8deg;
}

.process-card:nth-child(3) {
  --card-tilt: -1.4deg;
}

.process-card:nth-child(4) {
  --card-tilt: 2.1deg;
}

.process-card:nth-child(5) {
  --card-tilt: -2.5deg;
}

.process-card:hover {
  transform: translate3d(0, -6px, 0);
}

.process-card__num {
  margin: 0;
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
  color: var(--text);
  transition: color 220ms ease;
}

.process-card:hover .process-card__num {
  color: #ee4036;
}

.process-card__title {
  margin: 8px 0 8px;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.process-card__text {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
}

.cases {
  padding: 48px 0 0px;
}

.cases-table-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.cases-table {
  width: 800px;
  table-layout: fixed;
  border: 1px solid #ececec;
  border-radius: 10px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  font-family: "Oceanic Grotesk", system-ui, -apple-system, "Segoe UI", Arial,
    sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.cases-table th,
.cases-table td {
  padding: 18px;
  text-align: left;
  vertical-align: top;
}

.cases-table th:nth-child(1),
.cases-table td:nth-child(1) {
  width: 28%;
}

.cases-table th:nth-child(2),
.cases-table td:nth-child(2) {
  width: 20%;
}

.cases-table th:nth-child(3),
.cases-table td:nth-child(3) {
  width: 52%;
}

.cases-table__cell--podcast {
  vertical-align: middle;
}

.cases-table__podcast {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.cases-table__podcast-content {
  min-width: 0;
}

.cases-table__cover {
  display: block;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 2px;
}

.cases-table__podcast-name {
  min-width: 0;
}

.cases-table__podcast-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  min-width: 0;
}

.cases-table__podcast-link:hover,
.cases-table__podcast-link:focus-visible {
  color: #ee4036;
}

.cases-table__client-mobile,
.cases-table__toggle {
  display: none;
}

.cases-table__cover--placeholder {
  display: block;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  border-radius: 2px;
  background: #ececec;
}

.cases-table__row--hidden {
  display: none;
}

.cases-table__error {
  text-align: center;
  padding: 24px 18px;
  color: var(--muted);
}

.cases-table th {
  font-weight: 400;
}

.cases-table thead th {
  border-bottom: 1px solid #ececec;
}

.cases-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #ececec;
}

.cases-load-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.cases-load-more__btn {
  appearance: none;
  margin: 0;
  padding: 14px 28px;
  font: inherit;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--text);
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.cases-load-more__btn:hover {
  background: rgba(11, 11, 11, 0.04);
}

.cases-load-more__btn:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.45);
  outline-offset: 3px;
}

.cases-load-more__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.quote-block {
  padding: 0px 0 64px;
}

.quote-block__inner {
  position: relative;
  min-height: 480px;
}

.quote-block__visual {
  position: absolute;
  left: 0;
  top: 0;
  width: 480px;
  height: 480px;
  z-index: 1;
}

.quote-block__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.quote-block__photo-ellipse {
  width: 480px;
  height: 480px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.quote-block__content {
  max-width: 640px;
  margin-left: 340px;
  padding-top: 150px;
  position: relative;
  z-index: 2;
}

.quote-block__quote .quote-block__text + .quote-block__text {
  margin-top: 12px;
}

.quote-block__text {
  margin: 0;
  font-size: 26px;
  line-height: 30px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.quote-block__author {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.12;
  font-weight: 400;
}

.lead-form {
  position: relative;
  z-index: 2;
  padding: 0 0 28px;
}

.lead-form__card {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  background: rgba(242, 242, 242, 0.5);
  padding: 26px 20px 34px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.lead-form__title {
  margin: 0;
  font-size: 40px;
  line-height: 46px;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.lead-form__desc {
  margin: 14px 0 18px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.lead-form__form {
  width: 360px;
  margin: 0 auto;
}

.lead-form__controls {
  width: 100%;
}

.lead-form__field {
  display: block;
  margin: 0 0 20px;
}

.lead-form__field input {
  width: 100%;
  height: 60px;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  background: #fff;
  padding: 0 18px;
  font: inherit;
  font-size: 16px;
  line-height: 1;
  color: var(--text);
}

.lead-form__field input::placeholder {
  color: #8a8a8a;
}

.lead-form__submit {
  width: 100%;
  height: 75px;
  padding-bottom: 5px;
  border: 0;
  border-radius: 10px;
  background: #000;
  color: #fff;
  font: inherit;
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.lead-form__submit:hover {
  background: #ee4036;
  color: #fff;
}

.lead-form__submit:focus-visible,
.lead-form__field input:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.45);
  outline-offset: 3px;
}

.lead-form__privacy {
  margin: 18px auto 0;
  width: 600px;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}

.lead-form__error {
  margin: 14px auto 0;
  width: 100%;
  min-height: 20px;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #b42318;
}

.lead-form__success {
  text-align: center;
}

.lead-form__retry {
  margin-top: 0;
  width: 100%;
  height: 52px;
  border: 1px solid #000;
  border-radius: 10px;
  background: #fff;
  color: #000;
  font: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.lead-form__retry:hover {
  background: #f4f4f4;
}

.lead-form__privacy a {
  color: inherit;
}

.site-footer {
  position: relative;
  z-index: 0;
  padding: 12px 0 60px;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -506px;
  bottom: -90px;
  width: 904px;
  height: 904px;
  background: url("./Ellipse-bottom.png") center / cover no-repeat;
  pointer-events: none;
  z-index: -1;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 220px 1fr 320px;
  gap: 28px;
  align-items: start;
}

.site-footer__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
}

.site-footer__col--center .site-footer__text {
  max-width: 470px;
}

.site-footer__accent {
  color: #ee4036;
}

.site-footer__col--links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.site-footer__link {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  padding: 2px 0;
  text-decoration: none;
  color: var(--muted);
  border-bottom: 0.8px solid rgba(0, 0, 0, 0.26);
  transition: border-color 160ms ease, color 160ms ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #ee4036;
  border-bottom-color: transparent;
}

@keyframes clients-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients-marquee__track {
    animation: none;
  }

  .process-card:hover {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1024px) {
  :root {
    --container-padding: 24px;
  }

  .first-screen {
    padding: 64px 0 56px;
  }

  .first-screen__title {
    font-size: 44px;
  }

  .nav {
    gap: 20px;
  }

  .hero-red-dot {
    top: 68px;
    right: -60px;
    width: 660px;
    height: 660px;
  }

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

  .process__grid {
    grid-template-columns: repeat(auto-fit, 220px);
    justify-content: center;
    gap: 18px;
  }

  .cases-table {
    width: 100%;
    max-width: 800px;
  }

  .quote-block__content {
    margin-left: 220px;
    padding-top: 104px;
  }

  .site-footer::before {
    right: -210px;
    bottom: -180px;
    width: 420px;
    height: 420px;
  }

  .lead-form__title {
    font-size: 40px;
    line-height: 46px;
  }

  .lead-form__desc {
    font-size: 16px;
    line-height: 20px;
  }

  .lead-form__form,
  .lead-form__privacy,
  .lead-form__error {
    width: 360px;
  }

  .lead-form__field input,
  .lead-form__submit {
    font-size: 16px;
  }

  .lead-form__field input {
    height: 60px;
  }

  .lead-form__submit {
    height: 75px;
    padding-bottom: 5px;
    font-size: 26px;
  }

  .lead-form__privacy {
    font-size: 12px;
    line-height: 14px;
  }

  .site-footer {
    padding: 24px 0 60px;
  }

  .site-footer__inner {
    grid-template-columns: 170px 1fr 280px;
    gap: 20px;
  }
}

@media (max-width: 760px) {
  html,
  body,
  #top {
    overflow-x: hidden;
  }

  .nav {
    display: none;
  }

  .cta__label--desktop {
    display: none;
  }

  .cta__label--mobile {
    display: inline;
  }

  .site-header:not(.site-header--past-hero) .cta {
    display: none;
  }

  .site-header.site-header--past-hero .brand {
    flex: 1 1 auto;
    min-width: 0;
    margin-right: 8px;
  }

  .site-header.site-header--past-hero .brand__logo {
    width: auto;
    max-width: min(199px, calc(100vw - var(--container-padding) * 2 - 132px));
    height: auto;
    max-height: 45px;
  }

  .site-header.site-header--past-hero .cta {
    display: inline-flex;
    flex-shrink: 0;
    padding: 0 10px;
    height: 38px;
    font-size: 12px;
    line-height: 1;
  }

  .first-screen {
    padding: 20px 0 44px;
  }

  .first-screen .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .first-screen__inner {
    text-align: left;
  }

  .first-screen__kicker {
    font-size: 10px;
    margin: 0 0 4px;
  }

  .first-screen__title {
    font-size: 34px;
    line-height: 1;
  }

  .first-screen__desc {
    max-width: none;
    font-size: 18px;
    line-height: 20px;
    margin: 18px 0 26px;
  }

  .hero-cta {
    display: flex;
    width: 100%;
    height: 69px;
    padding: 0 22px 5px;
    font-size: 26px;
  }

  .hero-red-dot {
    top: 120px;
    right: -93px;
    width: 620px;
    height: 620px;
  }

  .clients-strip {
    padding: 18px 0;
  }

  .clients-marquee__copy {
    gap: 26px;
    padding-right: 26px;
  }

  .clients-marquee__copy img {
    height: 18px;
  }

  .numbers {
    padding: 34px 0 30px;
  }

  .numbers__inner {
    gap: 28px;
  }

  .numbers__value {
    font-size: 34px;
  }

  .numbers__label {
    font-size: 18px;
  }

  .formats {
    padding: 42px 0 44px;
  }

  .section-title {
    margin-bottom: 18px;
    font-size: 34px;
    line-height: 1.05;
  }

  .formats .section-title {
    font-size: 30px;
    line-height: 34px;
  }

  .formats__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .formats-card {
    width: 100%;
    max-width: 380px;
    height: auto;
    margin: 0 auto;
  }

  .formats-card__title {
    font-size: 20px;
    line-height: 22px;
  }

  .formats-card__text {
    font-size: 18px;
    line-height: 20px;
  }

  .services .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services .section-title {
    margin: 0;
    text-align: left;
    font-size: 30px;
    line-height: 34px;
  }

  .services__list {
    width: 100%;
    margin: 20px 0 0;
    gap: 0;
  }

  .services-item {
    grid-template-columns: 1fr;
    row-gap: 0;
    column-gap: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #d0d0d0;
  }

  .services-item:last-child {
    border-bottom: 0;
  }

  .services-item + .services-item {
    padding-top: 16px;
  }

  .services-item__title {
    font-size: 18px;
    line-height: 20px;
  }

  .services-item__price,
  .services-item__right p {
    font-size: 18px;
    line-height: 20px;
  }

  .services-item__price {
    margin-top: 8px;
  }

  .services-item__right {
    margin-top: 16px;
  }

  .services-item__right p + p {
    margin-top: 8px;
  }

  .process {
    padding: 42px 0 48px;
  }

  .process .container {
    padding-left: 0;
    padding-right: 0;
  }

  .process .section-title {
    margin: 0 0 20px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
    font-size: 30px;
    line-height: 34px;
  }

  .process__grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    /* Запас слева: поворот карточки + overflow-x на #top иначе режет первую карточку */
    padding: 8px 0 8px 14px;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .process-card {
    flex: 0 0 220px;
    margin: 0;
  }

  .process-card:active .process-card__num {
    color: #ee4036;
  }

  .cases {
    padding: 42px 0 24px;
  }

  .cases .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cases .section-title {
    margin: 0 0 20px;
    text-align: left;
    font-size: 30px;
    line-height: 34px;
  }

  .cases-table-wrap {
    display: block;
  }

  .cases-table {
    width: 100%;
    border: 0;
    border-radius: 0;
    font-size: 18px;
    line-height: 20px;
  }

  .cases-table thead {
    display: none;
  }

  .cases-table tbody {
    display: block;
  }

  .cases-table tbody tr {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #d0d0d0;
    cursor: pointer;
  }

  .cases-table tbody tr.cases-table__row--hidden {
    display: none;
  }

  .cases-table tbody td {
    display: block;
    padding: 0;
    border: 0;
    width: 100%;
  }

  .cases-table tbody tr:not(:last-child) td {
    border-bottom: 0;
  }

  .cases-table tbody td:nth-child(1),
  .cases-table tbody td:nth-child(2),
  .cases-table tbody td:nth-child(3) {
    width: 100%;
  }

  .cases-table tbody td:nth-child(2) {
    display: none;
  }

  .cases-table tbody td:nth-child(3) {
    display: none;
    margin-top: 10px;
    font-size: 18px;
    line-height: 20px;
  }

  .cases-table tbody tr.cases-table__row--expanded td:nth-child(3) {
    display: block;
  }

  .cases-table__podcast {
    display: grid;
    grid-template-columns: 45px 230px 24px;
    align-items: start;
    gap: 16px;
    width: 100%;
  }

  .cases-table__cover,
  .cases-table__cover--placeholder {
    width: 45px;
    height: 45px;
  }

  .cases-table__podcast-content {
    width: 230px;
    max-width: 230px;
    min-width: 0;
  }

  .cases-table__podcast-link,
  .cases-table__podcast-name {
    display: block;
    text-decoration: none;
    font-size: 18px;
    line-height: 20px;
    font-weight: 800;
  }

  .cases-table__client-mobile {
    display: block;
    margin-top: 2px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
  }

  .cases-table__toggle {
    display: block;
    width: 24px;
    height: 24px;
    align-self: center;
    justify-self: end;
    background: url("./arrow.svg") center / 12px 20px no-repeat;
    opacity: 0.35;
    transition: transform 160ms ease;
  }

  .cases-table__row--expanded .cases-table__toggle {
    transform: rotate(90deg);
  }

  .cases-table tbody tr:last-child {
    border-bottom: 0;
  }

  .cases-load-more {
    margin-top: 28px;
  }

  .cases-load-more__btn {
    width: 100%;
    height: 54px;
    padding: 0 20px;
    font-size: 20px;
    line-height: 1;
  }

  .quote-block {
    padding: 8px 0 48px;
  }

  .quote-block .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quote-block__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    row-gap: 0;
    column-gap: 8px;
    align-items: center;
    min-height: 0;
  }

  .quote-block__quote {
    grid-column: 1 / -1;
    grid-row: 1;
    position: relative;
    z-index: 2;
  }

  .quote-block__quote .quote-block__text + .quote-block__text {
    margin-top: 16px;
  }

  .quote-block__visual {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1;
    grid-row: 2;
    width: auto;
    height: auto;
    /* Поднимаем картинку под последние строки цитаты */
    margin: -52px 0 0;
    z-index: 1;
    align-self: center;
    pointer-events: none;
  }

  .quote-block__visual::before {
    display: none;
  }

  .quote-block__visual picture {
    width: auto;
    height: auto;
  }

  .quote-block__photo-ellipse {
    width: auto;
    max-width: 168px;
    height: auto;
    border-radius: 0;
    object-fit: contain;
  }

  .quote-block__content {
    display: contents;
    max-width: 100%;
    margin-left: 0;
    padding-top: 0;
  }

  .quote-block__text {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0;
    font-family: "Oceanic Grotesk", system-ui, -apple-system, "Segoe UI", Arial,
      sans-serif;
  }

  .quote-block__author {
    grid-column: 2;
    grid-row: 2;
    box-sizing: border-box;
    width: 281px;
    max-width: 100%;
    /* Незначительный наезд на красное свечение слева */
    margin: 0 0 0 -20px;
    padding: 0;
    justify-self: end;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    text-align: left;
    position: relative;
    z-index: 2;
    align-self: center;
  }

  .lead-form {
    padding-bottom: 20px;
  }

  .site-footer::before {
    right: -180px;
    bottom: -130px;
    width: 360px;
    height: 360px;
  }

  .lead-form__card {
    padding: 24px 14px 22px;
  }

  .lead-form__title {
    font-size: 36px;
    line-height: 1.1;
  }

  .lead-form__desc {
    font-size: 16px;
    line-height: 20px;
  }

  .lead-form__desc br,
  .lead-form__privacy br {
    display: none;
  }

  .lead-form__form,
  .lead-form__privacy,
  .lead-form__error {
    width: 100%;
    max-width: 360px;
  }

  .lead-form__field {
    margin-bottom: 20px;
  }

  .lead-form__field input,
  .lead-form__submit {
    font-size: 16px;
  }

  .lead-form__field input {
    height: 60px;
  }

  .lead-form__submit {
    height: 75px;
    padding-bottom: 5px;
    font-size: 26px;
  }

  .lead-form__privacy {
    margin-top: 12px;
    font-size: 12px;
    line-height: 14px;
  }

  .site-footer {
    padding: 20px 0 60px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer__col--center .site-footer__text {
    max-width: none;
  }

  .site-footer__col--links {
    gap: 8px;
  }
}

/* === MOBILE 390px === */
@media (max-width: 390px) {
  :root {
    --site-header-height: 93px;
  }

  .site-header {
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

  .site-header__inner {
    height: 92px;
    justify-content: space-between;
  }

  .nav {
    display: none;
  }

  .brand__logo {
    width: 196px;
    height: auto;
  }
}