:root {
  --bg: #f8f7f2;
  --white: #ffffff;
  --dark: #32322c;
  --text: #5a5a50;
  --text-muted: rgba(90, 90, 80, 0.7);
  --text-faded: rgba(90, 90, 80, 0.3);
  --gold: #ddbd57;
  --yellow: #f5d161;
  --gray-bg: #f2f2f4;
  --gray-btn: #e8e7e0;
  --border: #3d3d3d;
  --delivery: #87807a;
  --contacts-bg: #f2ece2;
  --hero-text: #f3f3e8;
  --container: 1440px;
  --section-width: 1380px;
  --page-gutter: 8px;
  --radius-lg: 45px;
  --radius-md: 40px;
  --radius-sm: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.5;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.page {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.section-gap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

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

/* Header */
.header {
  position: absolute;
  top: 8px;
  left: 22px;
  right: 22px;
  z-index: 10;
  width: auto;
  max-width: none;
  margin: 0;
  transform: none;
}

.header__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.header__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 40px;
  padding: 12px 32px;
  flex-shrink: 0;
}

.header__navigation-button {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  background: var(--white);
  flex-shrink: 0;
}

.header__logo-block {
  text-decoration: none;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header__logo img {
  display: block;
  width: 41px;
  height: 24px;
  object-fit: contain;
}

.header__nav-desktop {
  display: none;
}

.header__navigation-button.header__menu-toggle {
  aspect-ratio: 1;
  width: auto;
  padding: 0;
  border-radius: 40px;
}

.header__menu-toggle img {
  width: 24px;
  height: 24px;
}

.header__nav-mobile {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.header__nav-mobile.is-open {
  display: flex;
}

.header__nav-mobile a {
  font-size: 16px;
  color: var(--dark);
}

body.menu-open {
  overflow: hidden;
}

/* Hero */
.hero {
  padding: 8px var(--page-gutter) 0;
}

.hero__card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 70px 22px 15px;
  background: radial-gradient(ellipse at 91% 6%, #f6e5b1 0%, #f5db89 50%, #f5d161 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 300px;
  padding: 20px 0;
}

.hero__title-first-wrap {
  position: relative;
  display: block;
}

.hero__highlight {
  position: absolute;
  top: -1px;
  left: -15px;
  width: 330px;
  height: 39px;
  border-radius: 81px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5) 0%, #ffffff 100%);
  pointer-events: none;
  z-index: 0;
}

.hero__title-first {
  position: relative;
  z-index: 1;
  display: block;
  width: 330px;
  margin-left: -15px;
  text-align: center;
}

.hero__title-continued {
  display: block;
}

.hero__title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  color: #000;
}

.hero__subtitle {
  margin: 15px 0 0;
  font-size: 17px;
  line-height: 24px;
  color: var(--dark);
}

.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 84px;
  padding: 20px 24px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4.8px);
}

.hero__stat--large {
  min-height: 0;
  gap: 15px;
  padding: 24.457px 24px;
  border-radius: 19.565px;
  backdrop-filter: blur(3.913px);
}

.hero__stat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__stat-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero__stat-icon--drivers {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__stat-icon--drivers img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.hero__stat-text strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.hero__stat-text span {
  display: block;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
}

.hero__stat-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__phone {
  position: absolute;
  top: 331px;
  left: calc(50% + 47px);
  transform: translateX(-50%) rotate(8.72deg);
  width: 534px;
  max-width: none;
  pointer-events: none;
  z-index: 1;
}

/* Shared section width (trust, hero card, blocks below) */
.hero__card,
.trust,
.main__sections > .delivery,
.main__sections > .partner,
.main__sections > .what-we-do,
.main__sections > .benefits,
.main__sections > .services,
.main__sections > .stages,
.main__sections > .contacts,
.main__sections > .footer {
  width: 100%;
  max-width: var(--section-width);
  margin-left: auto;
  margin-right: auto;
}

/* Trust */
.trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: var(--white);
  border-radius: 40px;
  padding: 40px 22px;
}

.trust__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.trust__title {
  margin: 0;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
}

.trust__desc {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
}

.trust__photo {
  width: 100%;
  margin-top: 0;
  height: 213px;
  border-radius: 20px;
  overflow: hidden;
  background: #989898;
}

.trust__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.trust__tags {
  width: 100%;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust__tags-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust__tag {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--text);
}

/* Delivery */
.delivery {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 709px;
  background: var(--delivery);
  overflow: hidden;
}

.delivery__bg {
  position: absolute;
  inset: 0;
}

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

.delivery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 59.873%);
}

.delivery__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
}

.delivery__inner-copy {
  flex-shrink: 0;
}

.delivery__title {
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  color: var(--white);
}

.delivery__desc {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--hero-text);
}

.delivery__cards {
  margin-top: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 348px;
}

.delivery__card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.delivery__card-icon {
  width: 24px;
  height: 24px;
}

.delivery__card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: var(--text);
}

/* Partner */
.partner {
  position: relative;
  min-height: 712px;
  padding: 0 22px;
  overflow: hidden;
}

.partner__decor {
  position: absolute;
  pointer-events: none;
  max-width: none;
  object-fit: contain;
}

/* Ellipse 7 — mobile (Figma 374×712) */
.partner__decor--yellow {
  top: -9px;
  right: -64px;
  width: 223px;
  height: auto;
  aspect-ratio: 223 / 194;
}

/* Ellipse 8 — mobile */
.partner__decor--gray {
  bottom: 2px;
  left: -10px;
  width: 197px;
  height: auto;
  aspect-ratio: 197 / 188;
}

.partner__photo {
  position: absolute;
  width: 180px;
  height: 136px;
  border-radius: 27px;
  overflow: hidden;
  background: var(--white);
}

.partner__photo--left {
  top: 0;
  left: 22px;
}

.partner__photo--right {
  bottom: 0;
  right: 22px;
}

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

.partner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 330px;
  text-align: center;
}

.partner__title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.partner__desc {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
}

/* What we do carousel */
.what-we-do {
  padding: 0 22px;
  position: relative;
}

.what-we-do__viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.what-we-do__track {
  display: flex;
  transition: transform 0.45s ease;
}

.what-we-do__slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.what-we-do__label {
  margin: 0;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.52px;
  color: rgba(0, 0, 0, 0.5);
}

.what-we-do__title {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.what-we-do__title span {
  display: block;
}

.what-we-do__text {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
}

.what-we-do__text p {
  margin: 0;
}

.what-we-do__media {
  height: 192px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--gray-bg);
}

.what-we-do__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.what-we-do__controls {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.what-we-do__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.what-we-do__dot {
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  background: #c3c1b7;
  padding: 0;
  transition: width 0.3s ease, border-radius 0.3s ease;
}

.what-we-do__dot.is-active {
  width: 48px;
  border-radius: 12px;
  background: #c3c1b7;
}

.what-we-do__arrows {
  display: flex;
  gap: 8px;
}

.what-we-do__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gray-btn);
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-we-do__btn img {
  width: 16px;
  height: 18px;
}

.what-we-do__btn--prev img {
  transform: rotate(180deg);
}

/* Benefits cards */
.benefits {
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.benefit-card__media {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 229px;
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.benefit-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* card-3: ChatGPT Image 14 апр. 2026 г., 12_27_34 2 */
.benefit-card__media .benefit-card__img--payouts {
  object-position: center top;
}

.benefit-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 43px;
  padding: 0 24px;
  background: var(--yellow);
  border-radius: 43px;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: var(--dark);
  white-space: nowrap;
}

.benefit-card__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 24px 24px;
}

.benefit-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.benefit-card__desc {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
}

/* Services */
.services {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 22px;
}

.services__title {
  margin: 0;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
}

.services__tabs {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services__tab {
  position: relative;
  padding-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--text-faded);
  text-align: center;
}

.services__tab.is-active {
  color: var(--text);
}

.services__tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--text);
}

.services__panels {
  margin-top: 48px;
}

.services__panel {
  display: none;
  flex-direction: column;
  gap: 32px;
}

.services__panel.is-active {
  display: flex;
}

.services__panel-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.services__panel-desc {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
}

.services__panel-media {
  height: 197px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--gray-bg);
}

.services__panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services__item {
  display: flex;
  gap: 8px;
}

.services__item-icon {
  width: 24px;
  height: 32px;
  flex-shrink: 0;
}

.services__item-title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.services__item-text {
  margin: 5px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-muted);
}

.services__mobile-stack .services__panel {
  display: flex;
  margin-bottom: 48px;
}

.services__mobile-stack .services__panel:last-child {
  margin-bottom: 0;
}

/* Stages */
.stages {
  padding: 0 22px;
}

.stages__title {
  margin: 0;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
}

.stages__timeline {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 22px;
}

.stages__step {
  text-align: center;
}

.stages__step-num {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: var(--text);
}

.stages__step-num.is-gold {
  color: var(--gold);
}

.stages__step-text {
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--text);
}

.stages__step-text.is-gold {
  color: var(--gold);
}

.stages__step-line {
  margin-top: 8px;
  height: 1px;
  background: rgba(90, 90, 80, 0.2);
}

.stages__photo {
  margin-top: 32px;
  height: 240px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--gray-bg);
}

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

/* Contacts */
.contacts {
  display: none;
}

.contacts__title {
  margin: 0 0 40px;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  line-height: 45px;
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contacts__info {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--contacts-bg);
  padding: 32px;
  min-height: 354px;
}

.contacts__info-bg {
  position: absolute;
  inset: 0;
}

.contacts__info-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contacts__info-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacts__label {
  padding: 0 24px;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.68px;
  color: rgba(255, 255, 255, 0.7);
}

.contacts__field {
  background: var(--white);
  border-radius: 30px;
  padding: 20px 24px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--text);
}

.contacts__hint {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.64px;
  color: var(--white);
}

.contacts__map {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--contacts-bg);
  min-height: 354px;
}

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

/* Footer */
.footer {
  background: var(--dark);
  border-radius: var(--radius-md);
  padding: 40px 22px;
  color: var(--white);
}

.footer__section-title {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  color: var(--yellow);
}

.footer__links,
.footer__contacts {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 24px;
}

.footer__contacts a {
  text-decoration: underline;
}

.footer__logo-wrap {
  margin: 64px auto 0;
  width: 280px;
  height: 120px;
  flex: none;
  flex-grow: 0;
}

.footer__logo {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateY(5px);
}

.footer__legal {
  display: none;
}

.main {
  padding-top: 0;
}

.main__sections {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
  padding-bottom: 48px;
}

/* Desktop */
@media (min-width: 1024px) {
  :root {
    --page-gutter: 30px;
  }

  .container {
    padding-left: 100px;
    padding-right: 100px;
  }

  .header {
    top: 10px;
    left: 15px;
    right: 15px;
    width: auto;
    max-width: none;
    margin: 0;
    transform: none;
  }

  .header__inner {
    justify-content: space-between;
    gap: 0;
  }

  .header__navigation {
    border-radius: 38px;
    padding: 12px 60px;
  }

  .header__logo img {
    width: 91px;
    height: 53px;
  }

  .header__navigation-button.header__nav-desktop {
    display: flex;
    gap: 80px;
    margin-left: auto;
    border-radius: 38px;
    padding: 0 80px;
    font-size: 20px;
    line-height: 22px;
  }

  .header__navigation-button.header__menu-toggle {
    display: none !important;
  }

  .header__nav-mobile {
    display: none !important;
  }

  .main__sections {
    gap: 140px;
    padding-bottom: 0;
  }

  .hero {
    padding: 22px var(--page-gutter) 0;
  }

  .hero__card {
    position: relative;
    min-height: 887px;
    border-radius: 40px;
    padding: 15px;
    overflow: hidden;
    background: radial-gradient(ellipse at 91% 6%, #f6e5b1 0%, #f5db89 50%, #f5d161 100%);
  }

  .hero__content-wrap {
    position: relative;
    z-index: 2;
    max-width: 805px;
    padding: 130px 40px 40px;
    border-radius: 45px;
    overflow: hidden;
  }

  .hero__content {
    gap: 0;
    justify-content: space-between;
    height: 100%;
  }

  .hero__highlight {
    top: -9px;
    left: -29px;
    width: 685px;
    height: 85px;
  }

  .hero__title-first {
    width: 685px;
    margin-left: -29px;
  }

  .hero__title {
    font-size: 50px;
    line-height: 65px;
  }

  .hero__subtitle {
    margin-top: 15px;
    font-size: 20px;
    line-height: 30px;
  }

  .hero__stats {
    gap: 10px;
  }

  .hero__stat-text strong {
    font-size: 32px;
    line-height: 34px;
  }

  .hero__stat-text span {
    font-size: 24px;
    line-height: 34px;
  }

  .hero__stat-row {
    flex-direction: row;
    gap: 10px;
  }

  .hero__stat-row .hero__stat:first-child {
    flex: 0 0 382px;
    padding: 20px 30px 22px;
  }

  .hero__stat-row .hero__stat--support {
    flex: 1;
    padding: 20px 40px 22px;
  }

  .hero__stat--large {
    gap: 30px;
    padding: 24.457px 32.609px;
    border-radius: 19.565px;
    backdrop-filter: blur(3.913px);
  }

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

  .hero__stat--large .hero__stat-icon {
    width: 72px;
    height: 72px;
  }

  .hero__stat--large .hero__stat-icon--drivers img {
    width: 50px;
    height: 50px;
  }

  .hero__phone {
    position: absolute;
    inset: auto 160px -210px auto;
    width: 996px;
    height: auto;
    transform: rotate(45.47deg);
    transform-origin: right bottom;
    pointer-events: none;
    z-index: 1;
  }

  .trust {
    border-radius: 45px;
    padding: 60px 70px;
  }

  .trust__title {
    font-size: 50px;
    line-height: 60px;
    white-space: nowrap;
  }

  .trust__desc {
    font-size: 20px;
    line-height: 30px;
    max-width: 1066px;
    margin-left: auto;
    margin-right: auto;
  }

  .trust__photo {
    height: 356px;
    margin-top: 0;
  }

  .trust__tags {
    margin-top: 0;
    gap: 15px;
  }

  .trust__tags-row {
    flex-direction: row;
    gap: 15px;
  }

  .trust__tag {
    flex: 1;
    border-radius: 24px;
    font-size: 20px;
    line-height: 30px;
  }

  .delivery {
    min-height: 868px;
  }

  .delivery__inner {
    max-width: none;
    margin: 0 auto;
    padding: 60px 70px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr;
    align-items: end;
  }

  .delivery__inner-copy {
    align-self: start;
  }

  .delivery__title {
    font-size: 64px;
    line-height: 74px;
    max-width: 683px;
  }

  .delivery__desc {
    font-size: 20px;
    line-height: 30px;
    max-width: 955px;
  }

  .delivery__cards {
    margin-top: 0;
    gap: 40px;
    justify-self: end;
    margin-right: -210px;
  }

  .delivery__card {
    width: 348px;
    border-radius: 24px;
    padding: 40px;
    gap: 60px;
  }

  .delivery__card-title {
    font-size: 32px;
    line-height: 40px;
  }

  .partner {
    min-height: 818px;
    padding: 0;
  }

  /* Ellipse 7 — desktop (Figma 1320×818: 418×363, top-right) */
  .partner__decor--yellow {
    top: -68px;
    right: -26px;
    left: auto;
    width: 418px;
    aspect-ratio: 418 / 363;
  }

  /* Ellipse 8 — desktop (303×289, bottom-left) */
  .partner__decor--gray {
    top: auto;
    left: 44px;
    bottom: 80px;
    right: auto;
    width: 303px;
    aspect-ratio: 303 / 289;
  }

  .partner__content {
    width: 1005px;
  }

  .partner__title {
    font-size: 50px;
    line-height: 70px;
  }

  .partner__desc {
    font-size: 20px;
    line-height: 30px;
  }

  .partner__photo {
    width: 255px;
    height: 216px;
  }

  .what-we-do {
    padding: 0 70px;
    min-height: 444px;
  }

  .what-we-do__slide {
    flex-direction: row;
    align-items: stretch;
    gap: 60px;
    min-height: 444px;
  }

  .what-we-do__content {
    width: 589px;
    flex-shrink: 0;
    padding-bottom: 154px;
  }

  .what-we-do__label {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.64px;
  }

  .what-we-do__title {
    margin-top: 20px;
    font-size: 32px;
    line-height: 42px;
  }

  .what-we-do__text {
    font-size: 20px;
    line-height: 29px;
  }

  .what-we-do__media {
    flex: 1;
    height: 444px;
    border-radius: 40px;
  }

  .what-we-do__controls {
    position: absolute;
    left: 70px;
    bottom: 0;
    width: 589px;
    margin-top: 0;
    align-items: flex-start;
    gap: 80px;
    z-index: 2;
  }

  .what-we-do__dot {
    width: 24px;
    height: 24px;
    background: #c3c1b7;
  }

  .what-we-do__dot.is-active {
    width: 72px;
    height: 24px;
    border-radius: 12px;
    background: #c3c1b7;
  }

  .benefits {
    padding: 0 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .benefit-card {
    gap: 40px;
  }

  .benefit-card__media {
    height: 319px;
  }

  .benefit-card__media .benefit-card__img--payouts {
    position: absolute;
    left: 0;
    top: -13.81%;
    width: 99.84%;
    height: 145.17%;
    max-width: none;
    object-fit: cover;
    object-position: left top;
  }

  .benefit-card__badge {
    height: 65px;
    padding: 0 60px;
    font-size: 24px;
    line-height: 30px;
  }

  .benefit-card__body {
    padding: 0 40px 40px;
  }

  .benefit-card__title {
    font-size: 32px;
    line-height: 42px;
  }

  .benefit-card__desc {
    font-size: 20px;
    line-height: 29px;
  }

  .services {
    border-radius: 45px;
    padding: 60px 70px;
  }

  .services__title {
    font-size: 50px;
    line-height: 60px;
  }

  .services__tabs {
    flex-direction: row;
    margin-top: 40px;
  }

  .services__tab {
    flex: 1;
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 5px;
  }

  .services__panels {
    margin-top: 60px;
  }

  .services__panel {
    gap: 0;
  }

  .services__panel-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
  }

  .services__panel-inner--reverse {
    flex-direction: row-reverse;
  }

  .services__panel-copy {
    width: 589px;
  }

  .services__panel-title {
    font-size: 32px;
    line-height: 42px;
  }

  .services__panel-desc {
    font-size: 20px;
    line-height: 29px;
  }

  .services__panel-media {
    flex: 1;
    height: 457px;
    border-radius: 40px;
  }

  .services__panel-media--tall {
    height: 621px;
  }

  .services__panel-media--medium {
    height: 397px;
  }

  .services__list {
    margin-top: 40px;
    gap: 40px;
  }

  .services__item {
    gap: 15px;
  }

  .services__item-title {
    font-size: 24px;
    line-height: 32px;
  }

  .services__item-text {
    font-size: 20px;
    line-height: 29px;
  }

  .services__mobile-stack {
    display: none;
  }

  .stages {
    padding: 0 70px;
  }

  .stages__title {
    font-size: 50px;
    line-height: 60px;
  }

  .stages__timeline {
    flex-direction: row;
    padding: 0;
    margin-top: 40px;
    gap: 0;
  }

  .stages__step {
    flex: 1;
  }

  .stages__photo {
    height: 619px;
    border-radius: 40px;
    margin-top: 40px;
  }

  .contacts {
    display: block;
    padding: 0 70px;
  }

  .footer {
    border-radius: 40px;
    padding: 60px 70px;
    margin-bottom: 60px;
  }

  .footer__top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }

  .footer__left {
    display: flex;
    gap: 200px;
  }

  .footer__logo-wrap {
    margin: 0 auto;
    width: 416px;
    height: 179px;
    flex: none;
    order: 0;
    flex-grow: 0;
  }

  .footer__links,
  .footer__contacts {
    font-size: 20px;
    line-height: 27px;
    gap: 15px;
  }

  .footer__section-title {
    margin-bottom: 30px;
  }

  .footer__legal {
    display: block;
    margin-top: 80px;
    font-size: 11.8px;
    line-height: 14.4px;
    color: rgba(252, 248, 241, 0.4);
  }
}

@media (min-width: 1024px) {
  .hero__stat-icon img.icon-desktop {
    display: block;
  }

  .hero__stat-icon img.icon-mobile {
    display: none;
  }
}

@media (max-width: 1023px) {
  /* Header: один общий белый фон (логотип + меню) */
  .header__inner {
    align-items: center;
    background: var(--white);
    border-radius: 40px;
    padding: 16px 32px;
  }

  .header__navigation,
  .header__navigation-button.header__menu-toggle {
    background: transparent;
    border-radius: 0;
    align-self: auto;
  }

  .header__navigation {
    padding: 0;
  }

  .header__navigation-button.header__menu-toggle {
    width: 24px;
    height: 24px;
    aspect-ratio: auto;
  }

  /* Hero: телефон крупнее и поверх блока со статистикой */
  .hero__card {
    overflow: visible;
  }

  .hero__phone {
    z-index: 3;
    top: 300px;
    left: 50%;
    width: min(588px, 158vw);
    /* сдвиг вправо: меняйте 50px */
    transform: translateX(calc(-46% + 50px)) rotate(8.72deg);
  }

  .hero__content-wrap,
  .hero__content {
    position: relative;
    z-index: 2;
  }

  .hero__stats {
    position: relative;
    z-index: 1;
  }

  /* Delivery: карточки на всю ширину секции с отступом от краёв */
  .delivery__inner {
    padding: 40px 0;
  }

  .delivery__inner-copy {
    padding: 0 30px;
  }

  .delivery__cards {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0 30px;
    box-sizing: border-box;
  }

  /* фон delivery: позиция кадра — меняйте object-position */
  .delivery__bg img {
    object-position: 25% 50%;
  }

  /* Footer: логотип последним, текст по центру */
  .footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
  }

  .footer__menu,
  .footer__contacts-col {
    width: 100%;
    text-align: center;
  }

  .footer__links,
  .footer__contacts {
    align-items: center;
  }

  .footer__left {
    display: contents;
  }

  .footer__menu {
    order: 1;
  }

  .footer__contacts-col {
    order: 2;
  }

  .footer__logo-wrap {
    order: 3;
    margin: 64px auto 0;
  }

  .hero__stat-icon img.icon-desktop {
    display: none;
  }

  .hero__stat-icon img.icon-mobile {
    display: block;
  }

  .services__desktop-panels {
    display: none;
  }

  .what-we-do__controls {
    position: static;
    width: auto;
  }
}

@media (min-width: 1024px) {
  .services__desktop-panels {
    display: block;
  }
}
