.header__nav,
.header__buttons { display: none; }

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.header .logo { font-size: 22px; }
.header__btn-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  box-shadow: var(--shadow-brand);
  flex-shrink: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  background: var(--color-white);
  border-top: 1px solid transparent;
  transition: max-height 0.25s ease;
}
.mobile-nav.is-open {
  max-height: 400px;
  border-top-color: var(--color-border);
  padding: 12px 20px 20px;
}
.mobile-nav__link {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-dark);
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.mobile-nav__actions .btn { width: 100%; }

.hero__inner {
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.hero__content { order: 1; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.hero__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--color-text-dark);
}
.hero__subtitle {
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-gray-3);
  max-width: 350px;
}
.hero__visual {
  order: 2;
  position: static;
  width: 220px;
  height: auto;
}
.hero__circle { display: none; }
.hero__image-desktop { display: none; }
.hero__image { width: 100%; height: auto; object-fit: contain; }

.hero .hero__actions {
  order: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.hero .hero__actions .btn { width: 100%; }

.offers__inner {
  padding: 56px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.offers__row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.offer-card-wrap { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.offer-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 0;
  padding: 24px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.offer-card__body { display: flex; flex-direction: column; gap: 16px; }
.offer-card__tags { display: flex; gap: 6px; }
.offers__slider { display: none; }

.advantages__inner {
  padding: 56px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.advantages__row { display: flex; flex-direction: column; gap: 16px; }
.advantage-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.advantage-card__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #111113;
  padding-top: 8px;
}

.how-it-works__inner {
  background: var(--color-bg-light);
  padding: 56px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.how-it-works__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.how-it-works__list { display: flex; flex-direction: column; gap: 12px; }
.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 20px;
  border-radius: var(--radius-xl);
}
.step__text { font-size: 16px; }

.faq__inner {
  padding: 56px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq__columns { display: flex; flex-direction: column; gap: 24px; }
.faq__col { gap: 24px; }
.faq-item__q,
.faq-item__a { font-size: 15px; }

.audience__inner {
  background: var(--color-bg-light);
  padding: 56px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.audience__row { display: flex; flex-direction: column; gap: 16px; }
.audience-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: auto;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  gap: 16px;
}
.audience-card__image { width: 100%; aspect-ratio: 1536 / 1024; object-fit: cover; border-radius: 14px; }

.cta__inner {
  position: relative;
  padding: 48px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  overflow: hidden;
}
.cta__content { display: flex; flex-direction: column; align-items: center; gap: 24px; z-index: 1; }
.cta__head { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.cta__title { font-size: 24px; font-weight: 600; line-height: 1.25; }
.cta__text { font-size: 15px; }
.cta__button { width: 100%; }

.cta__visual {
  position: relative;
  width: 260px;
  height: auto;
  z-index: 0;
}
.cta__circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
}
.cta__truck { position: relative; width: 100%; height: auto; transform: scaleX(-1); }

.footer__inner {
  background: var(--color-bg-light);
  padding: 48px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__top { display: flex; flex-direction: column; gap: 28px; }
.footer__brand { display: flex; flex-direction: column; gap: 14px; max-width: none; }
.footer__logo { font-size: 22px; }
.footer__tagline { font-size: 14px; line-height: 1.5; color: var(--color-text-gray); max-width: 300px; }
.footer__col { display: flex; flex-direction: column; width: auto; gap: 12px; }
.footer__col-title { font-size: 12px; }
.footer__link { font-size: 14px; }
.footer__support { display: flex; flex-direction: column; gap: 4px; }

.footer__divider { height: 1px; background: var(--color-border); width: 100%; }

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--color-text-gray-4);
}
.footer__legal { display: flex; flex-direction: column; gap: 8px; }
