/* DO.BRO — портал заказов (по макету Figma) */

:root {
  --bg-page: #f5f5f5;
  --white: #ffffff;
  --grey-400: #bdbdbd;
  --grey-500: #9e9e9e;
  --grey-600: #757575;
  --grey-900: #242424;
  --black-14: #141414;
  --cream: #efebdc;
  --orange: #ff8006;
  --red: #ee0800;
  --green-b2b: #10553f;
  --shadow-card: 0 30px 60px rgba(0, 0, 0, 0.1);
  --shadow-header: 0 4px 34px rgba(0, 0, 0, 0.1);
  --radius-xl: 60px;
  --radius-pill: 30px;
  --radius-full: 10000px;
  --max: 1280px;
  --pad-x: clamp(16px, 4vw, 52px);
  --header-height: clamp(72px, 11vw, 96px);
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Unbounded", var(--font);
  --grad-cta: linear-gradient(-54deg, #ff8006 13%, #f8edcb 100%);
  --grad-cta-alt: linear-gradient(-100deg, #ff8006 0%, #f8edcb 100%);
  --grad-btn-dark: linear-gradient(238deg, #ee0800 0%, #ff8006 59%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  background: var(--bg-page);
  color: var(--grey-900);
  line-height: 1.4;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.page {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: hidden;
  background: var(--white);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  box-shadow: var(--shadow-header);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding: 15px var(--pad-x);
  flex-wrap: nowrap;
  position: relative;
}

.site-header__logo {
  flex: 0 0 auto;
  z-index: 1;
}

.site-header__logo img {
  height: clamp(36px, 8vw, 55px);
  width: auto;
}

.site-header__divider {
  flex: 0 0 auto;
  width: 1px;
  height: 24px;
  background: var(--grey-400);
  align-self: center;
}

@media (max-width: 1079px) {
  .site-header__divider {
    display: none;
  }
}

.site-header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  border-radius: var(--radius-pill);
  color: var(--grey-900);
  transition: background-color 0.15s;
}

.site-header__burger:hover {
  background: var(--bg-page);
}

.site-header__burger:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.site-header__burger-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 16px;
}

.site-header__burger-line {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-header.is-menu-open .site-header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .site-header__burger-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .site-header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(8px, 1.5vw, 30px);
  flex-wrap: nowrap;
}

.site-header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(6px, 1.2vw, 30px);
  flex-wrap: nowrap;
}

.site-header__menu a {
  position: relative;
  isolation: isolate;
  font-size: clamp(13px, 0.95vw, 14px);
  font-weight: 600;
  line-height: 1;
  color: var(--grey-500);
  white-space: nowrap;
  transition: color 0.15s;
}

.site-header__menu a:hover,
.site-header__menu a.is-active {
  color: var(--orange);
}

.site-header__menu a.is-active::after {
  content: "";
  position: absolute;
  top: calc(100% + 25px);
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 40px;
  border-radius: 25%;
  background: var(--orange);
  filter: blur(15px);
  pointer-events: none;
  z-index: -1;
}

.site-header__actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(8px, 1vw, 15px);
}

@media (min-width: 1025px) {
  .site-header__inner {
    gap: 35px;
  }

  .site-header__actions .btn {
    padding: clamp(10px, 1.2vw, 15px) clamp(12px, 1.6vw, 24px);
    font-size: clamp(13px, 0.95vw, 14px);
    gap: clamp(6px, 0.8vw, 10px);
  }

  .site-header__actions .btn__icon {
    width: clamp(16px, 1.5vw, 24px);
    height: clamp(16px, 1.5vw, 24px);
  }
}

@media (max-width: 1024px) {
  .site-header__inner {
    gap: 12px;
    padding: 12px var(--pad-x);
  }

  .site-header__burger {
    display: inline-flex;
    flex: 0 0 auto;
    order: 2;
    margin-left: auto;
  }

  .site-header__logo {
    order: 1;
  }

  .site-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex: none;
    min-width: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 8px var(--pad-x) 20px;
    background: var(--white);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    box-shadow: var(--shadow-header);
    order: 3;
  }

  .site-header.is-menu-open {
    border-radius: 0;
    background: var(--white);
    box-shadow: var(--shadow-header);
    overflow: visible;
  }

  .site-header.is-menu-open .site-header__inner {
    flex-wrap: nowrap;
  }

  .site-header.is-menu-open .site-header__nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 2;
    flex: none;
    order: 3;
    background: var(--white);
    box-shadow: var(--shadow-header);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  }

  .site-header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--bg-page);
  }

  .site-header__menu a {
    padding: 14px 0;
    font-size: 16px;
  }

  .site-header__menu a.is-active::after {
    top: calc(100% + 8px);
    width: 72px;
    height: 24px;
    filter: blur(22px);
  }

  .site-header__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 16px;
  }

  .site-header__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  white-space: nowrap;
  transition: transform 0.15s, filter 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--outline {
  border: 1px solid var(--orange);
  color: var(--orange);
  background: transparent;
}

.btn--outline:hover {
  background: rgba(255, 128, 6, 0.06);
}

.btn--grad {
  background: var(--grad-cta);
  color: var(--white);
}

.btn--dark {
  background: var(--grad-btn-dark);
  color: var(--white);
}

.btn__icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  flex-shrink: 0;
  object-fit: contain;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-height) + clamp(16px, 3vw, 40px)) var(--pad-x)
    clamp(48px, 8vw, 100px);
  min-height: 480px;
}

.hero__badge {
  position: absolute;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  text-align: center;
}

.hero__badge-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: var(--grad-cta-alt);
}

.hero__badge-link {
  display: block;
  line-height: 1;
}

.hero__badge--b2b {
  top: clamp(0px, 3vw, 36px);
  right: 6%;
  width: min(280px, 40vw);
  aspect-ratio: 256 / 117;
  z-index: 0;
}

.hero__badge--b2c {
  bottom: 25%;
  left: 6%;
  width: min(280px, 38vw);
  aspect-ratio: 269 / 129;
}

.hero__badge-shape {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.95;
  transform-origin: center;
  pointer-events: none;
}

.hero__badge-shape img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__badge--b2b .hero__badge-shape {
  transform: rotate(6deg) scale(1.05);
}

.hero__badge--b2b .hero__badge-label {
  transform: rotate(12deg) scale(1.05);
}

.hero__badge--b2c .hero__badge-shape {
  transform: rotate(-6deg) scale(1.05);
}

.hero__badge--b2c .hero__badge-label {
  transform: rotate(-18deg) scale(1.05);
}

.hero__content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__title-img {
  margin: 0 auto 8px;
  width: min(616px, 100%);
}

.hero__subtitle {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 0 0 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-600);
  line-height: 1.45;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.hero__partner {
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-600);
}

.hero__partner a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Section shell ---------- */
.section {
  padding: clamp(48px, 7vw, 80px) var(--pad-x);
}

.section__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-align: center;
  line-height: 1.15;
  white-space: pre-line;
}

.section__subtitle {
  margin: 0 auto 40px;
  max-width: 720px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-600);
  line-height: 1.45;
  white-space: pre-line;
}

/* ---------- Segment ---------- */
.segment {
  padding-bottom: clamp(32px, 6vw, 64px);
}

.segment__title {
  text-align: center;
  margin-bottom: 32px;
}

.segment__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 23px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .segment__grid {
    grid-template-columns: 1fr;
  }
}

.segment-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.segment-card.segment-card--b2b {
  position: relative;
  overflow: visible;
  background: var(--black-14);
}

.segment-card--b2c {
    background: var(--cream);
}

.segment-card__visual {
  position: relative;
  aspect-ratio: 576 / 379;
  background-size: cover;
  background-position: center;
}

.segment-card__deco {
  position: absolute;
  top: -155px;
  right: 0;
  z-index: 3;
  width: clamp(120px, 22vw, 186px);
  height: auto;
  pointer-events: none;
  transform: translate(0%, -85%);
  transform: scaleX(-1);
}

.segment-card__visual--b2c {
  background-image: linear-gradient(180deg, rgba(239, 235, 220, 0) 58%, #efebdc 100%),
    url("assets/images/segment-b2c-2c3779.png");
}

.segment-card__visual--b2b {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(20, 20, 20, 0) 58%, #141414 100%),
    url("assets/images/segment-b2b-1ac9ec.png");
}

.segment-card--b2b .segment-card__body {
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.segment-card__body {
  padding: 50px;
}

.segment-card--b2c .segment-card__body {
  background: var(--cream);
}

.segment-card__body h3 {
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
}

.segment-card--b2c .segment-card__body h3 {
  color: var(--grey-900);
}

.segment-card--b2b .segment-card__body h3 {
  background: var(--grad-cta-alt);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.segment-card__body p {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.segment-card--b2c .segment-card__body p,
.segment-card--b2c .segment-card__list {
  color: var(--grey-900);
}

.segment-card--b2b .segment-card__body p,
.segment-card--b2b .segment-card__list {
  color: var(--cream);
}

.segment-card__list {
  margin: 0 0 28px;
  padding-left: 1.25em;
  list-style-type: disc;
  font-size: 16px;
  font-weight: 600;
}

.segment-card__list li {
  margin-bottom: 0px;
}

.segment-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* ---------- Why us ---------- */
.why {
  overflow: hidden;
}

.why__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  width: fit-content;
  max-width: 100%;
  margin: 0 auto clamp(28px, 4vw, 48px);
}

.why__logo {
  width: clamp(72px, 10vw, 100px);
  height: auto;
  flex-shrink: 0;
}

.why__head-text {
  flex: 0 1 auto;
  min-width: 0;
}

.why__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--grey-900);
}

.why__subtitle {
  margin: 12px 0 0;
  max-width: 560px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--grey-600);
}

.why__slider {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: transparent;
  padding: clamp(48px, 7vw, 80px) var(--pad-x);
}

.why__track {
  display: flex;
  gap: 24px;
  margin: 0 calc(-1 * var(--pad-x));
  padding: 4px var(--pad-x) 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: transparent;
  cursor: grab;
}

.why__track.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
  user-select: none;
}

.why__track.is-dragging .why-card {
  pointer-events: none;
}

.why__track::-webkit-scrollbar {
  display: none;
}

.why-card {
  flex: 0 0 clamp(300px, calc((100% - 24px) / 2.08), 576px);
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 202px 1fr;
  align-items: stretch;
  height: 202px;
  min-height: 202px;
  max-height: 202px;
  overflow: hidden;
  background: white;
  box-shadow: none;
  border-radius: 60px;
}

.why-card__pic {
  width: 202px;
  height: 202px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xl);
}

.why-card__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 0;
  padding: 14px 24px;
  overflow: hidden;
  background: var(--white);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

.why-card__text h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--grey-900);
}

.why-card__text p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--grey-600);
}

.why__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.why__dot {
  width: 40px;
  height: 3px;
  padding: 0;
  border: none;
  border-radius: 99px;
  background: var(--grey-400);
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.why__dot:hover {
  background: var(--grey-500);
}

.why__dot.is-active {
  background: var(--grey-600);
  transform: scaleX(1.08);
}

.why__dot:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .why__head {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .why__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .why-card {
    flex: 0 0 clamp(270px, 88vw, 576px);
    grid-template-columns: 180px 1fr;
    height: 180px;
    min-height: 180px;
    max-height: 180px;
  }

  .why-card__pic {
    width: 180px;
    height: 180px;
  }

  .why-card__text {
    padding: 12px 18px;
  }

  .why-card__text h3 {
    font-size: clamp(20px, 5vw, 28px);
  }

  .why-card__text p {
    font-size: 14px;
  }
}

/* ---------- Banner portal (Figma: banner-portal) ---------- */
.banner-portal {
  --banner-portal-h: clamp(420px, 37vw, 474px);
  --banner-portal-card-overhang: clamp(100px, 14vw, 158px);
  position: relative;
  margin: 0 var(--pad-x) calc(clamp(40px, 6vw, 72px) + var(--banner-portal-card-overhang));
  min-height: var(--banner-portal-h);
  border-radius: var(--radius-xl);
  overflow: visible;
}

.banner-portal__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  overflow: hidden;
  background: linear-gradient(90deg, #141414 53%, rgba(20, 20, 20, 0) 100%),
    url("assets/images/banner-portal-bg-37c8c1.png") center / cover no-repeat #141414;
}

.banner-portal__head {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 50px 50px 0;
  box-sizing: border-box;
}

.banner-portal__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 50px 50px;
  max-width: 58%;
}

.banner-portal__title {
  margin: 0 auto;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  background: var(--grad-cta-alt);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.banner-portal__lead {
  margin: 0;
  max-width: 622px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--cream);
}

.banner-portal__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.banner-portal__col {
  flex: 1 1 200px;
  min-width: 0;
}

.banner-portal__col-heading {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--cream);
}

.banner-portal__list {
  margin: 0;
  padding-left: 1.25em;
  list-style-type: disc;
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
}

.banner-portal__list li + li {
  margin-top: 2px;
}

.banner-portal__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.banner-portal__photo {
  position: absolute;
  z-index: 1;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.banner-portal__photo--main {
  left: 55%;
  top: 35%;
}

.banner-portal__photo--card {
  left: 2.5%;
  top: calc(var(--banner-portal-h) - -85px);
}

@media (max-width: 1024px) {
  .banner-portal__head {
    padding: clamp(28px, 4vw, 50px) clamp(28px, 4vw, 50px) 0;
  }

  .banner-portal__inner {
    max-width: 52%;
    padding: 24px clamp(28px, 4vw, 50px) clamp(28px, 4vw, 50px);
  }
}

@media (max-width: 860px) {
  .banner-portal {
    --banner-portal-h: auto;
    --banner-portal-card-overhang: 0;
    margin-bottom: clamp(40px, 6vw, 72px);
  }

  .banner-portal:has(+ .products.section) {
    margin-bottom: clamp(24px, 4vw, 40px);
  }

  .banner-portal {
    display: flex;
    flex-direction: column;
  }

  .banner-portal__inner {
    max-width: none;
    order: 1;
  }

  .banner-portal__photo--main {
    position: relative;
    left: auto;
    top: auto;
    order: 2;
    width: calc(100% - clamp(28px, 8vw, 50px) * 2);
    height: auto;
    aspect-ratio: 506 / 309;
    margin: 0 auto clamp(24px, 4vw, 40px);
  }

  .banner-portal__photo--card {
    position: relative;
    left: auto;
    top: auto;
    order: 3;
    width: min(186px, 55%);
    margin: 0 auto clamp(24px, 4vw, 40px);
    transform: none;
  }

  .banner-portal__cols {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .banner-portal__head {
    padding: 24px 16px 0;
  }

  .banner-portal__title {
    font-size: clamp(18px, 5.2vw, 28px);
  }

  .banner-portal__inner {
    padding: 20px 24px 24px;
    gap: 24px;
  }

  .banner-portal__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .banner-portal__actions .btn {
    justify-content: center;
  }
}

/* ---------- Products (Figma: section-products) ---------- */
.banner-portal:has(+ .products.section) {
  margin-bottom: var(--banner-portal-card-overhang);
}

.products.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding-top: 0;
  padding-bottom: clamp(48px, 7vw, 80px);
}

.products__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  max-width: 435px;
  text-align: center;
}

.products__title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--grey-900);
  white-space: pre-line;
}

.products__subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--grey-600);
  white-space: pre-line;
}

.products__slider {
  position: relative;
  width: 100%;
  max-width: 1476px;
}

.products__track {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 357px;
  padding: 0 var(--pad-x);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.products__track.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
  user-select: none;
}

.products__track.is-dragging .product-card {
  pointer-events: none;
}

.products__track::-webkit-scrollbar {
  display: none;
}

.products__fade {
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(202px, 16vw);
  height: 357px;
  pointer-events: none;
}

.products__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--bg-page) 0%, rgba(245, 245, 245, 0) 100%);
}

.products__fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--bg-page) 0%, rgba(245, 245, 245, 0) 100%);
}

.product-card {
  position: relative;
  flex: 0 0 276px;
  width: 276px;
  height: 357px;
  scroll-snap-align: start;
  border-radius: var(--radius-xl);
  background: var(--white);
  overflow: hidden;
}

.product-card__image {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
}

.product-card--1 .product-card__image {
  left: 59px;
  top: 48px;
  width: 148px;
  height: 188px;
  background-size: cover;
}

.product-card--2 .product-card__image,
.product-card--4 .product-card__image {
  left: 0;
  top: 0;
  width: 276px;
  height: 270px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background-size: cover;
}

.product-card--3 .product-card__image {
  left: 89px;
  top: 35px;
  width: 98px;
  height: 210px;
  background-size: cover;
}

.product-card--5 .product-card__image {
  left: 81px;
  top: 42px;
  width: 114px;
  height: 196px;
  background-size: cover;
}

.product-card__title {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: var(--grey-900);
  white-space: pre-line;
}

.product-card--1 .product-card__title,
.product-card--3 .product-card__title,
.product-card--4 .product-card__title {
  top: 272px;
}

.product-card--2 .product-card__title,
.product-card--5 .product-card__title {
  top: 286px;
}

.products__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.products__dot {
  width: 40px;
  height: 3px;
  padding: 0;
  border: none;
  border-radius: 99px;
  background: var(--grey-400);
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.products__dot:hover {
  background: var(--grey-500);
}

.products__dot.is-active {
  background: var(--grey-600);
  transform: scaleX(1.08);
}

.products__dot:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .products__title {
    font-size: clamp(28px, 4vw, 40px);
  }

  .products__fade {
    width: min(120px, 14vw);
  }
}

@media (max-width: 640px) {
  .products.section {
    gap: 40px;
  }

  .products__track {
    height: 320px;
  }

  .products__fade {
    height: 320px;
  }

  .product-card {
    flex: 0 0 240px;
    width: 240px;
    height: 320px;
  }

  .product-card--1 .product-card__image {
    left: 50px;
    top: 40px;
    width: 130px;
    height: 165px;
  }

  .product-card--2 .product-card__image,
  .product-card--4 .product-card__image {
    width: 240px;
    height: 240px;
  }

  .product-card--3 .product-card__image {
    left: 76px;
    top: 30px;
    width: 88px;
    height: 185px;
  }

  .product-card--5 .product-card__image {
    left: 68px;
    top: 36px;
    width: 100px;
    height: 172px;
  }

  .product-card__title {
    font-size: 20px;
    padding: 0 16px;
  }

  .product-card--1 .product-card__title,
  .product-card--3 .product-card__title,
  .product-card--4 .product-card__title {
    top: 244px;
  }

  .product-card--2 .product-card__title,
  .product-card--5 .product-card__title {
    top: 256px;
  }
}

/* ---------- Banner B2C (Figma: banner-b2c) ---------- */
.banner-b2c {
  position: relative;
  isolation: isolate;
  margin: 0 var(--pad-x) clamp(40px, 6vw, 72px);
  border-radius: var(--radius-xl);
  padding: 50px;
  overflow: hidden;
  background-color: #111;
}

.banner-b2c::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-image: url("assets/images/banner-b2c-bg-2c5c3a.webp");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  pointer-events: none;
}

.banner-b2c::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 76%);
  pointer-events: none;
}

.banner-b2c__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.banner-b2c__title {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
}

.banner-b2c__lead {
  margin: 0;
  max-width: 546px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--cream);
}

.banner-b2c__list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 546px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--cream);
}

.banner-b2c__list li {
  position: relative;
  padding-left: 1.1em;
}

.banner-b2c__list li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.banner-b2c__btn {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .banner-b2c {
    padding: clamp(28px, 6vw, 50px);
  }

  .banner-b2c__inner {
    gap: 24px;
  }

  .banner-b2c__lead,
  .banner-b2c__list {
    max-width: none;
  }
}

/* ---------- How to (Figma: section-how-to-order, 1181×323) ---------- */
.howto.section {
  overflow: visible;
}

.howto__inner {
  --howto-w: 1181;
  position: relative;
  width: 100%;
  max-width: 1181px;
  height: 323px;
  margin: 0 auto;
}

.howto__title {
  position: absolute;
  left: 50%;
  top: -45px;
  z-index: 2;
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  color: var(--grey-900);
  white-space: pre-line;
  transform: translateX(-50%);
}

.howto__figure {
  position: absolute;
  top: -150px;
  left: calc(852 / var(--howto-w) * 100%);
  z-index: 1;
  width: calc(354 / var(--howto-w) * 100%);
  max-width: 250px;
  margin: 0;
  pointer-events: none;
}

.howto__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  transform: rotate(-30deg) scale(1);
}

.howto__flow {
  position: absolute;
  left: 0;
  top: 137px;
  width: 100%;
  height: 186px;
}

.howto__connectors {
  position: absolute;
  left: calc(84 / var(--howto-w) * 100%);
  top: 38px;
  width: calc(1014 / var(--howto-w) * 100%);
  height: 115px;
  object-fit: fill;
  pointer-events: none;
  z-index: 0;
}

.howto__steps {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.howto-step {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.howto-step--1 {
  left: 0;
  top: 0;
  width: 76px;
}

.howto-step--2 {
  left: calc(215 / var(--howto-w) * 100%);
  top: 59px;
  width: 87px;
  justify-content: flex-end;
}

.howto-step--3 {
  left: calc(412 / var(--howto-w) * 100%);
  top: 0;
  width: 130px;
}

.howto-step--4 {
  left: calc(656 / var(--howto-w) * 100%);
  top: 59px;
  width: 84px;
  justify-content: flex-end;
}

.howto-step--5 {
  left: calc(879 / var(--howto-w) * 100%);
  top: 0;
  width: 77px;
}

.howto-step--6 {
  left: calc(1093 / var(--howto-w) * 100%);
  top: 40px;
  width: 88px;
  justify-content: flex-end;
}

.howto-step__icon {
  display: block;
  width: 76px;
  height: 76px;
  flex-shrink: 0;
}

.howto-step__label {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--grey-900);
  white-space: pre-line;
}

@media (max-width: 1024px) {
  .howto__title {
    font-size: clamp(28px, 4vw, 40px);
  }

  .howto__figure {
    top: -80px;
    width: min(calc(354 / var(--howto-w) * 100%), 260px);
  }
}

@media (max-width: 900px) {
  .howto__inner {
    height: auto;
    padding-top: 0;
  }

  .howto__title {
    position: static;
    transform: none;
    width: 100%;
    max-width: 468px;
    margin: 0 auto;
  }

  .howto__figure {
    position: relative;
    top: auto;
    left: auto;
    width: min(280px, 70%);
    max-width: none;
    margin: 24px auto 0;
  }

  .howto__flow {
    position: relative;
    top: auto;
    margin-top: 32px;
    height: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .howto__flow::-webkit-scrollbar {
    display: none;
  }

  .howto__connectors {
    display: none;
  }

  .howto__steps {
    position: relative;
    width: 720px;
    height: 186px;
  }

  .howto-step--1 {
    left: 0;
  }

  .howto-step--2 {
    left: 131px;
  }

  .howto-step--3 {
    left: 251px;
  }

  .howto-step--4 {
    left: 399px;
  }

  .howto-step--5 {
    left: 535px;
  }

  .howto-step--6 {
    left: 665px;
  }

  .howto-step__icon {
    width: 64px;
    height: 64px;
  }

  .howto-step__label {
    font-size: 14px;
  }
}

/* ---------- Trust B2B (Figma: banner-b2b-trust, 1176×566) ---------- */
.trust {
  margin: 0 var(--pad-x) clamp(40px, 6vw, 72px);
}

.trust__inner {
  --trust-w: 1187;
  --trust-h: 566;
  container-type: inline-size;
  position: relative;
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
  aspect-ratio: var(--trust-w) / var(--trust-h);
}

.trust__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.trust__content {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.trust__content h2 {
  position: absolute;
  left: calc(632 / var(--trust-w) * 100%);
  top: calc(239 / var(--trust-h) * 100%);
  width: calc(448 / var(--trust-w) * 100%);
  margin: 0;
  font-size: clamp(22px, calc(40 / var(--trust-w) * 100cqi), 40px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  white-space: pre-line;
}

.trust__content p {
  position: absolute;
  left: calc(632 / var(--trust-w) * 100%);
  top: calc(341 / var(--trust-h) * 100%);
  width: calc(483 / var(--trust-w) * 100%);
  margin: 0;
  font-size: clamp(13px, calc(16 / var(--trust-w) * 100cqi), 16px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--cream);
  white-space: pre-line;
}

@media (max-width: 640px) {
  .trust__content h2 {
    font-size: clamp(18px, 5.5cqi, 28px);
    line-height: 1.2;
  }

  .trust__content p {
    font-size: clamp(11px, 2.8cqi, 14px);
    line-height: 1.45;
  }
}

/* ---------- Geography (Figma: section-geography, 1155×1060) ---------- */
.geo {
  overflow: visible;
  padding-top: clamp(56px, 8vw, 80px);
  padding-bottom: clamp(40px, 6vw, 64px);
}

.geo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1155px;
  margin: 0 auto;
}

.geo__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  text-align: center;
}

.geo__title {
  margin: 0;
  width: 100%;
}

.geo__title-img {
  display: block;
  width: 100%;
  max-width: 1155px;
  height: auto;
  margin: 0 auto;
}

.geo__subtitle {
  margin: 0;
  max-width: 1155px;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--grey-900);
}

.geo__subtitle strong {
  font-weight: 900;
}

.geo__stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  column-gap: 30px;
  row-gap: 30px;
  width: min(710px, 100%);
  margin: clamp(24px, 3.5vw, 40px) auto clamp(-48px, -5vw, -65px);
}

.geo__pill {
  justify-self: center;
  border: 2px solid var(--orange);
  border-radius: 50px;
  padding: 20px 30px;
  font-size: clamp(16px, 2.1vw, 22px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--orange);
  text-align: center;
  white-space: nowrap;
  background: var(--bg-page);
}

.geo__map {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: calc(clamp(-20px, -3vw, -40px) - 60px);
  aspect-ratio: 1155 / 664;
}

.geo__map img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 640px) {
  .geo__head {
    gap: 24px;
  }

  .geo__stats {
    column-gap: 12px;
    row-gap: 12px;
    margin-top: 20px;
    margin-bottom: -20px;
  }

  .geo__map {
    margin-top: -42px;
  }

  .geo__pill {
    padding: 14px 16px;
    font-size: 14px;
    white-space: normal;
  }
}

/* ---------- FAQ (Figma: section-faq, 1176×745) ---------- */
.faq {
  overflow: visible;
}

.faq__inner {
  position: relative;
  max-width: 1176px;
  margin: 0 auto;
  min-height: clamp(520px, 58vw, 745px);
  padding-bottom: clamp(48px, 8vw, 88px);
}

.faq__layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.faq__brand {
  flex: 0 0 276px;
  width: min(276px, 100%);
}

.faq__sign {
  display: block;
  width: 100%;
  max-width: 276px;
  height: auto;
}

.faq__heading {
  margin: 20px 0 0;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  background: var(--grad-cta-alt);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq__list {
  flex: 1 1 876px;
  max-width: 876px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-item {
  border-radius: var(--radius-xl);
  background: var(--white);
  overflow: hidden;
}

.faq-item[open] {
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 120px;
  padding: 30px 30px 30px 62px;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__question {
  flex: 1;
  min-width: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--grey-900);
}

.faq-item__toggle {
  position: relative;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border: 1px solid var(--orange);
  border-radius: 30px;
  background: var(--orange);
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--white);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: background 0.2s, transform 0.2s;
}

.faq-item__toggle::before {
  width: 18px;
  height: 2px;
}

.faq-item__toggle::after {
  width: 2px;
  height: 18px;
}

.faq-item[open] .faq-item__toggle {
  background: transparent;
}

.faq-item[open] .faq-item__toggle::before,
.faq-item[open] .faq-item__toggle::after {
  background: var(--orange);
}

.faq-item[open] .faq-item__toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-item[open] summary {
  min-height: 0;
  padding-bottom: 12px;
}

.faq-item__body {
  padding: 0 90px 30px 62px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-600);
  line-height: 1.5;
}

.faq__photo {
  position: absolute;
  left: clamp(-35px, -5.8vw, -60px);
  top: 55%;
  width: min(330px, 35vw);
  height: auto;
  pointer-events: none;
  user-select: none;
  transform: rotate(-38deg) scale(-1);
}

@media (max-width: 1024px) {
  .faq__layout {
    flex-direction: column;
    align-items: center;
  }

  .faq__brand {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .faq__list {
    width: 100%;
    max-width: 876px;
  }

  .faq__photo {
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
    width: min(280px, 60vw);
  }
}

@media (max-width: 640px) {
  .faq__inner {
    min-height: 0;
    padding-bottom: min(200px, 40vw);
  }

  .faq-item summary {
    min-height: 0;
    padding: 20px 20px 20px 24px;
    align-items: flex-start;
  }

  .faq-item__question {
    font-size: 16px;
  }

  .faq-item__toggle {
    width: 48px;
    height: 48px;
    border-radius: 24px;
  }

  .faq-item__body {
    padding: 0 24px 20px;
  }
}

/* ---------- Bottom CTA (Figma: section-cta, 1176×459) ---------- */
.cta-bottom__intro {
  text-align: center;
  margin-bottom: 32px;
}

.cta-dual {
  padding-bottom: clamp(48px, 8vw, 100px);
}

.cta-dual__inner {
  max-width: 1176px;
  margin: 0 auto;
}

.cta-dual__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  max-width: 435px;
  margin: 0 auto;
  text-align: center;
}

.cta-dual__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--grey-900);
  white-space: pre-line;
}

.cta-dual__lead {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--grey-600);
  white-space: pre-line;
}

.cta-dual__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 576px));
  justify-content: center;
  gap: 24px;
  margin-top: clamp(32px, 5vw, 48px);
}

.cta-card {
  position: relative;
  padding-top: 85px;
}

.cta-card__badge--b2c {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: min(300px, 50%);
  height: 130px;
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-card--b2c .cta-card__badge-shape--b2c {
  top: -17px;
  height: 156px;
}

.cta-card__badge-shape--b2c {
  position: absolute;
  inset: 0;
}

.cta-card--b2c .cta-card__badge-shape--b2c {
  background: url("svg/B2C.svg") center / contain no-repeat;
  transform: rotate(3deg);
}

.cta-card__badge-text--b2c {
  position: absolute;
  left: 23%;
  bottom: 23px;
  transform: rotate(-9deg) scale(1.05);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 61px);
  background: var(--grad-cta-alt);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.cta-card__badge--b2b {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: min(265px, 50%);
  height: 100px;
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-card--b2b .cta-card__badge-shape--b2b {
  top: -17px;
  height: 156px;
}

.cta-card__badge-shape--b2b {
  position: absolute;
  inset: 0;
}

.cta-card--b2b .cta-card__badge-shape--b2b {
  background: url("svg/B2B.svg") center / contain no-repeat;
  transform: rotate(2deg) scale(1.05);
}

.cta-card__badge-text--b2b {
  position: absolute;
  left: 21%;
  bottom: -5px;
  transform: rotate(10deg) scale(1.05);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 61px);
  background: var(--grad-cta-alt);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-card__panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.cta-card--b2b .cta-card__panel {
  background: var(--black-14);
  color: var(--cream);
}

.cta-card--b2c .cta-card__panel {
  background: var(--cream);
  color: var(--grey-900);
}

.cta-card h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 39px);
  font-weight: 600;
  line-height: 1.1;
}

.cta-card--b2b h3 {
  background: var(--grad-cta-alt);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.cta-card--b2b p {
  color: var(--cream);
}

.cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 900px) {
  .cta-dual__cards {
    grid-template-columns: 1fr;
    max-width: 576px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .cta-card {
    padding-top: 72px;
  }

  .cta-card__panel {
    padding: 32px 24px;
    gap: 20px;
  }

  .cta-card__actions {
    flex-direction: column;
  }

  .cta-card__actions .btn,
  .cta-card__panel > .btn {
    width: 100%;
  }
}

/* ---------- Footer (Figma: footer, logo 176 + nav 474) ---------- */
.site-footer {
  padding: clamp(40px, 6vw, 56px) var(--pad-x) clamp(32px, 5vw, 48px);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 35px;
  max-width: 685px;
  margin: 0 auto;
}

.site-footer__logo {
  flex: 0 0 176px;
}

.site-footer__logo img {
  display: block;
  width: 176px;
  height: auto;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: min(474px, 100%);
  flex: 1 1 280px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  font-size: 14px;
  font-weight: 600;
}

.site-footer__links a {
  color: var(--grey-600);
  transition: color 0.15s;
}

.site-footer__links a:hover,
.site-footer__links a.is-accent {
  color: var(--orange);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 17px;
}

.site-footer__social-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  color: var(--grey-600);
  transition: color 0.15s, box-shadow 0.15s;
}

.site-footer__social-btn:hover {
  color: var(--orange);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.site-footer__social-btn--vk {
  color: #757575;
}

.site-footer__social-btn svg,
.site-footer__social-btn img {
  display: block;
}

.site-footer__copy {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 40px;
  color: var(--grey-600);
}

@media (max-width: 640px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer__nav {
    align-items: center;
  }

  .site-footer__links {
    justify-content: center;
    line-height: 1.4;
    gap: 12px 20px;
  }

  .site-footer__copy {
    line-height: 1.45;
  }
}