:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  --page-bg: #ffffff;
  --header-bg: #ededed;
  --soft-bg: #f3f3f3;
  --card-bg: #ffffff;
  --text-main: #1f1f1f;
  --text-muted: #5b5b5b;
  --accent: #d94a4a;
  --accent-hover: #c63d3d;
  --accent-soft: #f5e1cc;
  --accent-soft-hover: #ebd1b8;
  --border-color: rgba(0, 0, 0, 0.08);
  --menu-shadow: 4px 4px 12px 2px rgba(0, 0, 0, 0.15);
  --card-shadow: 0 15px 30px -10px rgba(0, 11, 48, 0.2);
  --section-width: min(1200px, calc(100% - 40px));
  --header-height: 100px;
  --mobile-bar-height: 84px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--text-main);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

p {
  margin: 0;
  line-height: 1.55;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.section-shell,
.header-shell {
  width: var(--section-width);
  margin: 0 auto;
}

.page-main {
  padding: 30px 0 0;
}

.site-header {
  position: relative;
  z-index: 50;
}

.header-shell {
  min-height: var(--header-height);
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-header,
.sticky-header {
  background: var(--header-bg);
  box-shadow: var(--menu-shadow);
}

.desktop-header__nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.sticky-header {
  position: fixed;
  inset: 0 0 auto;
  transform: translateY(-115%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.sticky-header.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  width: 120px;
  max-width: 120px;
}

.menu-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  font-size: 16px;
  line-height: 1.35;
}

.menu-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-link:hover::after,
.menu-link:focus-visible::after,
.menu-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.menu-cta {
  background: var(--accent-soft);
  font-size: 16px;
  font-weight: 600;
}

.menu-cta:hover,
.menu-cta:focus-visible {
  background: var(--accent-soft-hover);
}

.menu-cta__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.primary-button {
  background: var(--accent);
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--accent-hover);
}

.primary-button--light {
  background: #ffffff;
  color: var(--text-main);
}

.primary-button--light:hover,
.primary-button--light:focus-visible {
  background: #f3f3f3;
}

.menu-cta:active,
.primary-button:active {
  transform: translateY(1px);
}

.mobile-header {
  display: none;
  position: fixed;
  inset: 0 0 auto;
  background: var(--header-bg);
  box-shadow: var(--menu-shadow);
  z-index: 60;
}

.mobile-header__bar {
  min-height: var(--mobile-bar-height);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.burger-button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.burger-button__lines {
  position: relative;
  width: 28px;
  height: 18px;
}

.burger-button__lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.burger-button__lines span:nth-child(1) {
  top: 0;
}

.burger-button__lines span:nth-child(2),
.burger-button__lines span:nth-child(3) {
  top: 8px;
}

.burger-button__lines span:nth-child(4) {
  top: 16px;
}

.burger-button.is-open .burger-button__lines span:nth-child(1),
.burger-button.is-open .burger-button__lines span:nth-child(4) {
  opacity: 0;
}

.burger-button.is-open .burger-button__lines span:nth-child(2) {
  transform: rotate(45deg);
}

.burger-button.is-open .burger-button__lines span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--mobile-bar-height) 0 0;
  display: grid;
  align-content: start;
  background: rgba(237, 237, 237, 0.98);
  padding: 12px 20px 32px;
  box-shadow: inset 0 1px 0 rgba(31, 31, 31, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__links {
  display: grid;
  gap: 18px;
  padding: 8px 0 24px;
  list-style: none;
}

.mobile-menu__link {
  font-size: 18px;
}

.mobile-menu__cta {
  width: fit-content;
}

.hero-section {
  margin-top: 30px;
}

.hero-slider,
.reviews-slider {
  position: relative;
}

.hero-slider {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-slider__track {
  position: relative;
  min-height: 300px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-slide.is-active {
  opacity: 1;
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(232, 232, 232, 1);
  color: #222222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: #dddddd;
}

.slider-arrow--prev {
  left: 16px;
}

.slider-arrow--next {
  right: 16px;
}

.slider-arrow span {
  font-size: 28px;
  line-height: 1;
}

.slider-arrow--small {
  position: static;
  transform: none;
}

.slider-dots {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(34, 34, 34, 0.24);
  cursor: pointer;
}

.slider-dot.is-active {
  background: #222222;
}

.marketplaces {
  padding: 26px 0 30px;
}

.marketplaces__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 42px;
  list-style: none;
}

.marketplaces__list img {
  height: 34px;
  width: auto;
}

.benefits {
  display: grid;
  grid-template-columns: 490px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  padding: 30px 0 0;
}

.benefits__media {
  min-height: 392px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  min-height: 186px;
  padding: 32px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--card-bg);
}

.info-card h2 {
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1.3;
}

.info-card p {
  color: var(--text-muted);
  font-size: 16px;
}

.stats-band {
  margin-top: 48px;
  padding: 52px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.stat-card {
  text-align: center;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(3.25rem, 5vw, 4rem);
  line-height: 1;
}

.stat-card span {
  font-size: 20px;
  color: var(--text-muted);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  padding: 30px 0 10px;
}

.story__content h2,
.section-heading h2,
.section-heading--centered h2 {
  font-size: clamp(2rem, 3vw, 2.125rem);
  line-height: 1.15;
}

.story__content {
  display: grid;
  gap: 18px;
}

.story__content p {
  font-size: 24px;
  color: var(--text-muted);
}

.story__media img {
  max-width: 100%;
}

.steps {
  padding: 70px 0 30px;
}

.section-heading {
  margin-bottom: 46px;
}

.section-heading--centered {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading--centered p {
  margin-top: 18px;
  font-size: 32px;
  line-height: 1.25;
}

.steps__list {
  list-style: none;
  display: grid;
  gap: 24px;
}

.step-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--border-color);
}

.step-card__number {
  font-size: 64px;
  line-height: 1;
  color: rgba(31, 31, 31, 0.25);
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.step-card p {
  max-width: 580px;
  color: var(--text-muted);
}

.delivery-cta {
  margin-top: 30px;
  padding: 34px 42px;
  border-radius: var(--radius-lg);
  background: var(--soft-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.delivery-cta__content {
  display: grid;
  gap: 10px;
}

.delivery-cta__content h2 {
  font-size: 34px;
  line-height: 1.1;
}

.delivery-cta__content p {
  color: var(--text-muted);
}

.suppliers {
  padding: 140px 0 20px;
}

.suppliers__mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 42px;
  align-items: start;
}

.suppliers__mosaic img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 999px;
}

.suppliers__mosaic img:nth-child(2),
.suppliers__mosaic img:nth-child(5) {
  transform: translateY(52px);
}

.reviews {
  padding: 80px 0 0;
}

.reviews-slider__viewport {
  overflow: hidden;
}

.reviews-slider__track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-height: 100%;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  display: grid;
  align-content: start;
  gap: 14px;
}

.review-card__avatar {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  object-fit: cover;
}

.review-card h3 {
  font-size: 24px;
}

.review-card p {
  color: var(--text-muted);
}

.reviews-slider__controls {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.reviews-slider__controls .slider-dots {
  position: static;
}

.final-cta {
  margin-top: 90px;
  background: url("../images/tild3031-6535-4631-a236-313836363638__-__resize__20x__f5338447_img_2k.jpg")
    center / cover no-repeat;
}

.final-cta__overlay {
  background: rgba(0, 0, 0, 0.28);
}

.final-cta__content {
  min-height: 540px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 26px;
  text-align: center;
}

.final-cta__title {
  color: #ffffff;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.12;
}

.site-footer {
  padding: 48px 0 60px;
  background: #ffffff;
}

.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.site-footer__brand {
  display: grid;
  gap: 24px;
}

.site-footer__brand p,
.site-footer__links a {
  color: var(--text-muted);
}

.site-footer__links {
  display: flex;
  gap: 72px;
}

.site-footer__caption {
  margin-bottom: 14px;
  font-weight: 700;
}

.site-footer__links ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

@media (max-width: 1100px) {
  .benefits {
    grid-template-columns: 1fr;
  }

  .benefits__media {
    min-height: 420px;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story__media {
    display: flex;
    justify-content: center;
  }

  .suppliers__mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .suppliers__mosaic img:nth-child(2),
  .suppliers__mosaic img:nth-child(5) {
    transform: none;
  }

  .review-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 960px) {
  .desktop-header,
  .sticky-header {
    display: none;
  }

  .mobile-header {
    display: block;
  }

  .page-main {
    padding-top: calc(var(--mobile-bar-height) + 20px);
  }

  .benefits__grid,
  .stats-band,
  .suppliers__mosaic {
    grid-template-columns: 1fr;
  }

  .delivery-cta,
  .site-footer__inner,
  .site-footer__links {
    flex-direction: column;
    align-items: flex-start;
  }

  .delivery-cta {
    padding: 28px 24px;
  }

  .review-card {
    flex-basis: 100%;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .header-shell {
    width: min(100%, calc(100% - 24px));
  }

  .logo-link img {
    width: 108px;
    max-width: 108px;
  }

  .hero-slide img {
    height: 180px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
  }

  .marketplaces__list {
    gap: 20px 24px;
  }

  .marketplaces__list img {
    height: 26px;
  }

  .benefits__media {
    min-height: 280px;
  }

  .info-card,
  .step-card {
    padding-left: 0;
    padding-right: 0;
  }

  .info-card {
    padding: 24px;
  }

  .step-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card__number {
    font-size: 48px;
  }

  .story__content p,
  .section-heading--centered p,
  .delivery-cta__content h2 {
    font-size: 20px;
  }

  .final-cta__content {
    min-height: 380px;
  }

  .menu-cta,
  .primary-button,
  .mobile-menu__cta {
    width: 100%;
    justify-content: space-between;
  }
}
