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

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #181717;
  background: #fff;
}

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

.smn-v3-page {
  min-height: 100vh;
}

.smn-v3-audience {
  padding: 120px 0 0;
}

.smn-v3-audience__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.smn-v3-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px 6px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 60px;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.smn-v3-badge__icon {
  width: 16px;
  height: 16px;
}

.smn-v3-badge__text {
  font-size: 14px;
  line-height: 1.4;
}

.smn-v3-audience__title {
  margin: 24px auto 80px;
  max-width: 739px;
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
}

.smn-v3-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 320px;
  height: 320px;
  padding: 24px;
  overflow: visible;
  border-radius: 12px;
  background: linear-gradient(278.1deg, rgba(186, 190, 163, 0.6) 7.69%, rgba(186, 190, 163, 0.06) 40.67%);
}

.smn-v3-card--supplier {
  overflow: hidden;
}

.smn-v3-card--carrier {
  width: 100%;
  background: linear-gradient(280.57deg, rgba(186, 190, 163, 0.6) 7.91%, rgba(186, 190, 163, 0.06) 64.77%);
}

.smn-v3-card--carrier .smn-v3-card__content,
.smn-v3-card--carrier .smn-v3-card__text-group,
.smn-v3-card--carrier .smn-v3-card__title,
.smn-v3-card--carrier .smn-v3-card__desc,
.smn-v3-card--carrier .smn-v3-card__list,
.smn-v3-card--carrier .smn-v3-card__list li {
  text-align: left;
}

.smn-v3-card__content {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.smn-v3-card__title {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
  color: rgba(24, 23, 23, 0.7);
}

.smn-v3-card__desc {
  margin: 0 0 24px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(24, 23, 23, 0.7);
}

.smn-v3-card__list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  font-size: 16px;
  line-height: 1.4;
}

.smn-v3-card__actions {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.smn-v3-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid #fb8c27;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.smn-v3-arrow img {
  width: 20px;
  height: 20px;
}

.smn-v3-arrow:hover {
  box-shadow: 0 8px 20px rgba(251, 140, 39, 0.28);
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.smn-v3-arrow:active {
  transform: translateY(0);
  filter: brightness(0.9);
}

.smn-v3-arrow:focus-visible {
  outline: 2px solid #fb8c27;
  outline-offset: 2px;
}

.smn-v3-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid #fb8c27;
  background: #fb8c27;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, filter 0.2s ease;
}

.smn-v3-cta:hover {
  box-shadow: 0 8px 20px rgba(251, 140, 39, 0.28);
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.smn-v3-cta:active {
  transform: translateY(0);
  filter: brightness(0.9);
}

.smn-v3-cta:focus-visible {
  outline: 2px solid #fb8c27;
  outline-offset: 2px;
}

.smn-v3-card__image {
  position: absolute;
  pointer-events: none;
}

.smn-v3-card__image--supplier {
  width: min(95%, 630px);
  max-width: 100%;
  right: 0;
  top: -25px;
  left: auto;
}

.smn-v3-card__image--customer {
  width: min(68%, 400px);
  max-width: 100%;
  right: 0;
  bottom: 0;
  left: auto;
  top: auto;
}

.smn-v3-card__image--carrier {
  width: 596px;
  max-width: none;
  right: 44px;
  top: 40px;
  border-radius: 10px 0 12px 0;
}

.smn-v3-grid-bottom {
  margin-top: 24px;
}

@media (max-width: 1100px) {
  .smn-v3-audience {
    padding: 88px 0 56px;
  }

  .smn-v3-audience__title {
    margin-bottom: 56px;
    font-size: 34px;
  }

  .smn-v3-card {
    width: 100%;
    height: auto;
    min-height: 320px;
  }

  .smn-v3-card__image--supplier {
    width: min(64%, 380px);
    right: 0;
    top: 0;
  }

  .smn-v3-card__image--customer {
    width: min(48%, 280px);
    right: 0;
    bottom: 0;
    top: auto;
  }

  .smn-v3-card__image--carrier {
    width: min(52%, 420px);
    right: 0;
    top: 36px;
  }

  .smn-v3-grid-bottom {
    margin-top: 16px;
  }
}

@media (max-width: 1331px) {
  .smn-v3-card__image--customer,
  .smn-v3-card__image--supplier {
    display: none;
  }
}

@media (max-width: 1149px) {
  .smn-v3-card__image--carrier {
    display: none;
  }
}

@media (max-width: 768px) {
  .smn-v3-audience {
    padding: 64px 0 48px;
  }

  .smn-v3-audience__container {
    width: min(1320px, calc(100% - 24px));
  }

  .smn-v3-audience__title {
    margin: 20px auto 36px;
    font-size: 28px;
  }

  .smn-v3-card {
    min-height: auto;
    height: auto;
    padding: 20px;
  }

  .smn-v3-card__title {
    font-size: 28px;
  }

  .smn-v3-card__desc,
  .smn-v3-card__list {
    font-size: 15px;
  }

  .smn-v3-card__image--supplier {
    display: none;
  }

  .smn-v3-card__image--customer {
    display: none;
  }

  .smn-v3-card__image--carrier {
    position: relative;
    width: min(100%, 420px);
    right: auto;
    bottom: auto;
    margin-top: 10px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .smn-v3-audience__title {
    font-size: 24px;
  }

  .smn-v3-card__title {
    font-size: 24px;
  }

  .smn-v3-card__actions {
    width: 100%;
  }

  .smn-v3-cta {
    flex: 1;
  }
}
