.header__btn-mobile { display: none; }
.mobile-nav { display: none; }
.hero__image-mobile { display: none; }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 96px;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.header .logo { font-size: 26px; }
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 500;
  color: #262629;
}
.header__nav-link { transition: color 0.15s ease; }
.header__nav-link:hover { color: var(--color-primary); }
.header__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__inner {
  position: relative;
  min-height: 543px;
  padding: 64px 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 836px;
  position: relative;
  z-index: 1;
}
.hero__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--color-text-dark);
}
.hero__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-gray-3);
  max-width: 518px;
}
.hero .hero__actions {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.hero .hero__actions .btn { width: 240px; }
.hero__visual {
  position: absolute;
  right: 96px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
}
.hero__circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-bg-light);
  z-index: 0;
}
.hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offers__inner {
  background: var(--color-white);
  padding: 80px 96px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.offers__row {
  display: flex;
  gap: 16px;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.offers__row::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.offer-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 324px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.offer-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 238px;
  padding: 24px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.offer-card--mint { background: var(--color-mint); }
.offer-card--peach { background: var(--color-peach); }
.offer-card--lavender { background: var(--color-lavender); }
.offer-card--sky { background: var(--color-sky); }
.offer-card--cream { background: var(--color-cream); }

.offer-card__body { display: flex; flex-direction: column; gap: 16px; }
.offer-card__title { font-size: 16px; font-weight: 600; line-height: 1.3; color: var(--color-text-dark); }
.offer-card__text { font-size: 14px; font-weight: 400; color: var(--color-text-gray-2); }

.offer-card__pill {
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: var(--color-text-gray);
}
.offer-card__pill--mint { background: var(--color-mint-deep); }
.offer-card__pill--lavender { background: var(--color-lavender-deep); color: var(--color-white); }

.offer-card__tags { display: flex; gap: 6px; }
.offer-card__tag {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: var(--color-text-gray);
}
.offer-card__tag--peach { background: var(--color-peach-deep); }

.offers__row.is-dragging {
  cursor: grabbing;
  user-select: none;
  scroll-snap-type: none;
}
.offers__slider { display: flex; justify-content: center; }
.offers__slider-track {
  position: relative;
  width: 128px;
  height: 4px;
  border-radius: 9999px;
  background: var(--color-sky);
  overflow: hidden;
}
.offers__slider-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 46.87%;
  background: var(--color-primary);
  border-radius: 9999px;
  transition: width 0.15s ease;
}

.advantages__inner {
  padding: 80px 96px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.advantages__row { display: flex; gap: 24px; }
.advantage-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.advantage-card__text {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: #111113;
}

.how-it-works {
  background: var(--color-bg-light);
}
.how-it-works__inner {
  padding: 80px 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.how-it-works__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.how-it-works .section-title { font-weight: 700; }
.how-it-works__hint { font-size: 16px; color: var(--color-text-gray); }
.how-it-works__list { display: flex; flex-direction: column; gap: 12px; }
.step {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
}
.step__text {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-text-dark-2);
}

.faq__inner {
  padding: 80px 96px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.faq__columns { display: flex; gap: 64px; }
.faq__col { flex: 1; display: flex; flex-direction: column; gap: 32px; min-width: 0; }
.faq-item { display: flex; flex-direction: column; gap: 8px; }
.faq-item__q { font-size: 16px; font-weight: 600; line-height: 1.35; color: var(--color-text-dark); }
.faq-item__a { font-size: 16px; font-weight: 400; line-height: 1.45; color: var(--color-text-gray); }

.audience {
  background: var(--color-bg-light);
}
.audience__inner {
  padding: 80px 96px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
}
.audience__row { display: flex; gap: 12px; }
.audience-card {
  width: 408px;
  height: 400px;
  flex-shrink: 0;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}
.audience-card__image {
  width: 100%;
  aspect-ratio: 1536 / 1024;
  object-fit: cover;
  border-radius: 16px;
}
.audience-card__title { font-size: 16px; font-weight: 600; line-height: 1.3; color: var(--color-text-dark); }
.audience-card__text { font-size: 14px; font-weight: 400; line-height: 1.45; color: var(--color-text-gray); }

.cta__inner {
  position: relative;
  padding: 96px;
  min-height: 415px;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 1440px;
  margin: 0 auto;
}
.cta__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.cta__head { display: flex; flex-direction: column; gap: 16px; max-width: 446px; }
.cta__title { font-size: 32px; font-weight: 600; line-height: 1.2; color: var(--color-text-dark); }
.cta__title-accent { color: var(--color-primary); }
.cta__text { font-size: 16px; font-weight: 400; color: var(--color-text-dark); max-width: 446px; }
.cta__button { align-self: flex-start; }

.cta__visual {
  position: absolute;
  left: 900px;
  top: 19px;
  width: 571px;
  height: 379px;
}
.cta__circle {
  position: absolute;
  left: 173px;
  top: 3px;
  width: 373px;
  height: 373px;
  border-radius: 50%;
  background: var(--color-bg-light);
  z-index: 0;
}
.cta__truck {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scaleX(-1);
}

.footer {
  background: var(--color-bg-light);
}
.footer__inner {
  padding: 64px 96px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.footer__top { display: flex; gap: 20px; }
.footer__brand { display: flex; flex-direction: column; gap: 16px; flex: 1; max-width: 823px; }
.footer__logo { font-size: 26px; }
.footer__tagline { font-size: 14px; line-height: 1.5; color: var(--color-text-gray); max-width: 321px; }

.footer__col { display: flex; flex-direction: column; gap: 14px; width: 190px; flex-shrink: 0; }
.footer__col--support { width: auto; flex: 1; }
.footer__col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-text-gray);
  text-transform: uppercase;
}
.footer__link { font-size: 14px; color: var(--color-text-dark); transition: color 0.15s ease; }
.footer__link:hover { color: var(--color-primary); }
.footer__support { display: flex; flex-direction: column; gap: 2px; }
.footer__support-email { font-size: 14px; font-weight: 600; color: var(--color-primary); }
.footer__support-text { font-size: 14px; line-height: 1.45; color: var(--color-text-dark); }

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--color-text-gray-4);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal-link:hover { color: var(--color-primary); }

