:root {
  --ink: #1a1a1a;
  --muted: #525252;
  --muted2: #717182;
  --page: #fafafa;
  --card: #f8f8f8;
  --line: #e8eaef;
  --hero-bottom: #0d0f14;
  --lime-a: #83ff8f;
  --lime-b: #c5f07f;
  --lime-tag: #83c440;
  --lime: var(--lime-a);
  --lime2: var(--lime-b);
  --radius: 24px;
  --radius-lg: 32px;
  --radius-xl: 32px;
  --max: 1312px;
  --shell: 1408px;
  --pad: clamp(16px, 4vw, 64px);
  --pad-x: var(--pad);
  --c-ink: var(--ink);
  --c-page: var(--page);
  --c-line: var(--line);
  --c-muted: var(--muted);
  --c-muted2: var(--muted2);
  --c-hero-bottom: var(--hero-bottom);
}

.wrapper.wrapper--mega-open {
  overflow: visible;
}
.header--at .header__container {
  padding-left: 0;
  padding-right: 0;
}
.header--at .header__body {
  align-items: stretch;
  flex-direction: column;
  gap: 0;
  padding: 0;
  position: relative;
}
.header--at .header__body:before {
  display: none;
}
.header--at .header__shell {
  position: relative;
  width: 100%;
}
.header--at .header__bar {
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09), 0 0 0 0 rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 8px 0px 16px;
  position: relative;
  z-index: 5;
}
.header--at .header__brand {
  align-items: center;
  color: #1a1a1a;
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}
.header--at .header__brand-img {
  display: block;
  height: auto;
  max-height: 32px;
  max-width: min(200px, 42vw);
  object-fit: contain;
  object-position: left center;
  width: auto;
}
.header--at .header__burger {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 40px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 40px;
  z-index: 50;
}
.header--at .header__burger span {
  background: #1a1a1a;
  border-radius: 1px;
  display: block;
  height: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease, width 0.22s ease;
  width: 22px;
}
.header--at.header--mobile-open .header__burger {
  gap: 0;
}
.header--at.header--mobile-open .header__burger span:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}
.header--at.header--mobile-open .header__burger span:nth-child(2) {
  opacity: 0;
}
.header--at.header--mobile-open .header__burger span:nth-child(3) {
  transform: translateY(-2px) rotate(-45deg);
}
.header--at .header__nav-center {
  align-items: center;
  display: none;
  flex: 1;
  gap: 2px;
  justify-content: center;
  min-width: 0;
}
.header--at .header__dropdown-wrap.is-open .header__nav-dd {
  background: #f4f4f5;
  color: #1a1a1a;
}
.header--at .header__dropdown-wrap.is-open .header__chev {
  transform: rotate(180deg);
}
.header--at .header__dropdown-wrap.is-open .header__chev path {
  stroke: #1a1a1a;
}
.header--at .header__nav-dd {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: #3f3f46;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--second-family);
  font-size: 14px;
  font-weight: 500;
  gap: 6px;
  height: 36px;
  justify-content: center;
  line-height: 20px;
  padding: 0 12px;
  white-space: nowrap;
}
.header--at .header__chev {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.header--at .header__nav-link {
  align-items: center;
  border-radius: 10px;
  color: #3f3f46;
  display: inline-flex;
  font-family: var(--second-family);
  font-size: 14px;
  font-weight: 400;
  height: 36px;
  line-height: 20px;
  padding: 0 12px;
  white-space: nowrap;
}
.header--at .header__nav-link:hover {
  background: #f4f4f5;
  color: #1a1a1a;
}
.header--at .header__nav-link.is-active {
  background: #f4f4f5;
  color: #1a1a1a;
}
.header--at .header__nav-dd:hover {
  background: #f4f4f5;
  color: #1a1a1a;
}
.header--at .header__nav-dd:hover .header__chev path {
  stroke: #1a1a1a;
}
.header--at .header__actions {
  align-items: center;
  display: none;
  flex-shrink: 0;
  gap: 8px;
}
.header--at .header__btn-text {
  align-items: center;
  border-radius: 10px;
  color: #3f3f46;
  display: inline-flex;
  font-family: var(--second-family);
  font-size: 14px;
  font-weight: 500;
  height: 36px;
  justify-content: center;
  line-height: 20px;
  min-width: 70px;
  padding: 0 12px;
}
.header--at .header__btn-text:hover {
  background: #f4f4f5;
  color: #1a1a1a;
}
.header--at .header__btn-outline {
  align-items: center;
  border: 1px solid #d4d4d8;
  border-radius: 10px;
  color: #1a1a1a;
  display: inline-flex;
  font-family: var(--second-family);
  font-size: 14px;
  font-weight: 400;
  height: 38px;
  justify-content: center;
  line-height: 20px;
  padding: 0 16px;
}
.header--at .header__btn-primary {
  align-items: center;
  background: linear-gradient(112.73deg, #83ff8f 6.86%, #c5f07f 95.33%);
  border-radius: 10px;
  color: #1a1a1a;
  display: inline-flex;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  height: 36px;
  justify-content: center;
  line-height: 20px;
  min-width: 120px;
  padding: 0 20px;
}
.header--at .header__btn-dashboard {
  align-items: center;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  color: #1a1a1a;
  display: inline-flex;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  height: 38px;
  line-height: 20px;
  padding: 0 16px 0 20px;
}
.header--at .header__user-wrap {
  position: relative;
}
.header--at .header__user-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  height: 40px;
  padding: 4px;
}
.header--at .header__avatar {
  align-items: center;
  background: linear-gradient(135deg, #83ff8f 0%, #c5f07f 100%);
  border-radius: 999px;
  color: #1a1a1a;
  display: flex;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 700;
  height: 32px;
  justify-content: center;
  line-height: 16px;
  width: 32px;
}
.header--at .header__user-dropdown {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.05);
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: 208px;
  z-index: 20;
}
.header--at .header__user-wrap.is-open .header__user-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.header--at .header__user-wrap.is-open .header__chev--user {
  transform: rotate(180deg);
}
.header--at .header__user-head {
  border-bottom: 1px solid #f0f0f0;
  padding: 12px 16px;
}
.header--at .header__user-name {
  color: #1a1a1a;
  font-family: var(--second-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.header--at .header__user-email {
  color: #71717a;
  font-family: var(--second-family);
  font-size: 12px;
  line-height: 16px;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header--at .header__user-links {
  padding: 8px;
}
.header--at .header__user-item {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  font-family: var(--second-family);
  font-size: 14px;
  gap: 10px;
  line-height: 20px;
  padding: 8px 12px;
  text-align: left;
  width: 100%;
}
.header--at .header__user-item:hover {
  background: #f4f4f5;
}
.header--at .header__user-item--logout {
  color: #FB2C36;
}
.header--at .header__user-item--logout:hover {
  background: #fef2f2;
  color: #FB2C36;
}
.header--at .header__user-foot {
  border-top: 1px solid #f0f0f0;
  padding: 8px;
}
.header--at .header__user-foot form {
  margin: 0;
}
.header--at .header__mega-layer {
  display: none;
  left: 0;
  margin-top: -10px;
  padding-top: 18px;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 8;
}
.header--at.header--mega-open .header__mega-layer {
  display: block;
}
.header--at .header__mega-panel {
  display: none;
  pointer-events: none;
}
.header--at .header__mega-panel.is-visible {
  display: block;
  pointer-events: auto;
}
.header--at .header__mega-inner {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.header--at .header__mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 318px;
}
.header--at .header__mega-col {
  border-right: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}
.header--at .header__mega-col:last-of-type {
  border-right: 0;
}
.header--at .header__mega-heading {
  color: #1a1a1a;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 16px;
  text-transform: uppercase;
}
.header--at .header__mega-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header--at .header__mega-item {
  align-items: flex-start;
  border-radius: 14px;
  color: inherit;
  display: flex;
  gap: 12px;
  min-height: 58px;
  padding: 12px;
  text-decoration: none;
}
.header--at .header__mega-item:hover {
  background: #fafafa;
}
.header--at .header__mega-item--tall {
  min-height: 78px;
}
.header--at .header__mega-ico {
  align-items: center;
  border-radius: 10px;
  display: flex;
  flex-shrink: 0;
  height: 32px;
  justify-content: center;
  width: 32px;
}
.header--at .header__mega-ico--g {
  background: #f0fdf4;
}
.header--at .header__mega-ico--p {
  background: #FDF4FF;
}
.header--at .header__mega-ico--b {
  background: #f0f9ff;
}
.header--at .header__mega-ico--y {
  background: #fffbeb;
}
.header--at .header__mega-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.header--at .header__mega-title {
  color: #1a1a1a;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.header--at .header__mega-desc {
  color: #71717a;
  font-family: var(--second-family);
  font-size: 12px;
  line-height: 16px;
}
.header--at .header__mega-more {
  align-items: center;
  color: #22c55e;
  display: inline-flex;
  font-family: var(--second-family);
  font-size: 12px;
  gap: 4px;
  line-height: 16px;
  margin-top: 4px;
  padding-left: 12px;
}
.header--at .header__mega-aside {
  background: #1a1a1a;
  border-radius: 16px;
  display: flex;
  grid-column: span 1;
  margin: 24px 24px 24px 0;
  min-height: 270px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}
.header--at .header__mega-aside-glow {
  background: radial-gradient(ellipse 120% 80% at 80% 20%, rgba(131, 255, 143, 0.22) 0%, rgba(66, 128, 72, 0.08) 30%, transparent 60%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.header--at .header__mega-aside-glow--alt {
  background: radial-gradient(circle at 50% 50%, rgba(131, 255, 143, 0.15) 0%, transparent 55%);
}
.header--at .header__mega-aside-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.header--at .header__mega-aside-ico {
  align-items: center;
  background: linear-gradient(135deg, #83ff8f 0%, #c5f07f 100%);
  border-radius: 14px;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.header--at .header__mega-aside-title {
  color: #fff;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 16px;
}
.header--at .header__mega-aside-text {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--second-family);
  font-size: 14px;
  line-height: 1.55;
  margin-top: 12px;
  max-width: 236px;
}
.header--at .header__mega-aside-btn {
  align-items: center;
  background: linear-gradient(112.73deg, #83ff8f 6.86%, #c5f07f 95.33%);
  border-radius: 14px;
  color: #1a1a1a;
  display: inline-flex;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  line-height: 20px;
  margin-top: auto;
  padding: 10px 20px;
}
.header--at .header__mega-foot {
  align-items: center;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  min-height: 41px;
  padding: 12px 32px;
}
.header--at .header__mega-trust {
  color: #a1a1aa;
  font-family: var(--second-family);
  font-size: 12px;
  line-height: 16px;
}
.header--at .header__mega-legal {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}
.header--at .header__mega-legal a {
  align-items: center;
  color: #71717a;
  display: inline-flex;
  font-family: var(--second-family);
  font-size: 12px;
  gap: 6px;
  line-height: 16px;
}
.header--at .header__mega-dot {
  background: #83ff8f;
  border-radius: 999px;
  flex-shrink: 0;
  height: 6px;
  width: 6px;
}
.header--at .header__mobile {
  -webkit-overflow-scrolling: touch;
  background: rgba(250, 250, 250, 0.97);
  backdrop-filter: blur(12px);
  inset: 0;
  opacity: 0;
  overflow: auto;
  padding: 86px 8px 0 8px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.28s ease;
  z-index: 4;
}
.header--at.header--mobile-open .header__mobile {
  opacity: 1;
  pointer-events: auto;
}
.header--at .header__mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: calc(100vh - 48px);
  margin: 0 auto;
  max-width: 420px;
}
.header--at .header__mobile-title {
  color: #a1a1aa;
  font-family: var(--second-family);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.header--at .header__mobile-acc {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  overflow: hidden;
}
.header--at .header__mobile-acc-summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  border-bottom: 1px solid #f0f0f0;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  justify-content: space-between;
  list-style: none;
  padding: 16px;
}
.header--at .header__mobile-acc-summary::-webkit-details-marker {
  display: none;
}
.header--at .header__mobile-acc-chev {
  color: #71717a;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.header--at .header__mobile-acc[open] .header__mobile-acc-chev {
  transform: rotate(180deg);
}
.header--at .header__mobile-acc-body {
  border-top: 1px solid #f0f0f0;
  padding: 8px 0 12px;
}
.header--at .header__mobile-acc-block {
  padding: 8px 16px 12px;
}
.header--at .header__mobile-acc-block + .header__mobile-acc-block {
  border-top: 1px solid #f6f6f6;
}
.header--at .header__mobile-acc-label {
  color: #a1a1aa;
  font-family: var(--second-family);
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.header--at .header__mobile-acc-link {
  border-radius: 10px;
  color: #3f3f46;
  display: block;
  font-family: var(--second-family);
  font-size: 15px;
  line-height: 1.35;
  margin: 2px 0;
  padding: 10px 10px;
  text-decoration: none;
}
.header--at .header__mobile-acc-link:active {
  background: #f4f4f5;
}
.header--at .header__mobile-acc-link.is-active {
  background: rgba(131, 255, 143, 0.15);
  color: #166534;
  font-weight: 600;
}
.header--at .header__mobile-acc-user {
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
  padding: 4px 16px 14px;
}
.header--at .header__mobile-acc-user-name {
  color: #1a1a1a;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
}
.header--at .header__mobile-acc-user-mail {
  color: #71717a;
  font-family: var(--second-family);
  font-size: 13px;
  word-break: break-all;
}
.header--at .header__mobile-list {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.header--at .header__mobile-row {
  border-bottom: 1px solid #f0f0f0;
  color: #1a1a1a;
  font-family: var(--second-family);
  font-size: 16px;
  padding: 16px 18px;
  text-decoration: none;
}
.header--at .header__mobile-row:last-child {
  border-bottom: 0;
}
.header--at .header__mobile-row.is-active {
  background: rgba(131, 255, 143, 0.12);
  box-shadow: inset 3px 0 0 #83ff8f;
  font-weight: 600;
}
.header--at .header__mobile-meta {
  align-items: center;
  background: rgba(250, 250, 250, 0.96);
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  justify-content: center;
  left: 50%;
  padding: 10px 14px;
  position: sticky;
  transform: translateX(-50%);
  width: fit-content;
  z-index: 3;
}
.header--at .header__mobile-meta a {
  color: #71717a;
  font-family: var(--second-family);
  font-size: 12px;
  text-decoration: none;
}
.header--at .header__mobile-meta-dot {
  background: #d4d4d8;
  border-radius: 999px;
  height: 3px;
  width: 3px;
}
.header--at .header__mobile-cta {
  align-items: center;
  background: linear-gradient(112.73deg, #83ff8f 6.86%, #c5f07f 95.33%);
  border-radius: 14px;
  color: #1a1a1a;
  display: flex;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
  margin-top: 4px;
  min-height: 52px;
  padding: 14px 20px;
  text-align: center;
  text-decoration: none;
}
.header--at .header__mobile-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 8px;
}
.header--at .header__mobile-btn {
  align-items: center;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  font-family: var(--second-family);
  font-size: 15px;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}
.header--at .header__mobile-btn--ghost {
  border: 1px solid #d4d4d8;
  color: #3f3f46;
}
.header--at .header__mobile-btn--outline {
  border: 1px solid #d4d4d8;
  color: #1a1a1a;
}
.header--at .header__mobile-btn--full {
  font-family: var(--font-family);
  font-weight: 600;
}
.header--at .header__mobile-logout {
  margin: 0;
  width: 100%;
}
@media (min-width: 62em) {
  .header--at .header__burger {
    display: none !important;
  }
  .header--at .header__nav-center {
    display: flex;
  }
  .header--at .header__actions {
    display: flex;
  }
  .header--at .header__mobile {
    display: none !important;
  }
}
@media (max-width: 61.99875em) {
  .header--at .header__burger {
    display: flex;
  }
  .header--at .header__nav-center {
    display: none !important;
  }
  .header--at .header__actions {
    display: none !important;
  }
  .header--at .header__mega-layer {
    display: none !important;
  }
  .header--at .header__brand-img {
    max-height: 28px;
    max-width: min(160px, 46vw);
  }
  .header--at.header--mega-open .header__mega-layer {
    display: none !important;
  }
}
@media (max-width: 74.99875em) {
  .header--at .header__mega-grid {
    grid-template-columns: 1fr 1fr;
  }
  .header--at .header__mega-aside {
    grid-column: span 2;
    margin: 0 16px 16px 16px;
  }
  .header--at .header__mega-col {
    border-bottom: 1px solid #f0f0f0;
    border-right: 0;
  }
}
@media (max-width: 47.99875em) {
  .header--at .header__mega-grid {
    grid-template-columns: 1fr;
  }
  .header--at .header__mega-aside {
    grid-column: span 1;
  }
}

/* Кастомные стили фронта  */
.hero__btn-secondary {
  background-color: #fff;
}

/* Адаптив hero для мобильной версии — кнопки одна под одну */
@media (max-width: 47.99875em) {
  .hero__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn_block {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
    width: 100%;
  }

  .hero-btn_block .btn,
  .hero-btn_block .btn-secondary {
    width: 100%;
    justify-content: center;
    max-width: none;
  }
}

.home_our_team {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    width: 100%;
}

.about__team {
  padding-right: 64px;
}

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

.person_card {
    position: relative;
    width: 297px;
    height: 364px;
    padding: 32px 23px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 42px;
    overflow: hidden;
    background-image:
        linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%),
        url("/dist/assets/img/1771338975075.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.4s ease;
}

/* лёгкий премиальный hover */
.person_card:hover {
    transform: translateY(-6px);
}

.person_info {
    color: #fff;
    z-index: 2;
}

.person_name {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    font-family: var(--font-family);
}

.person_position {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
}

.person_linkedin {
    position: absolute;
    bottom: 32px;
    right: 23px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.person_linkedin:hover {
    background: rgba(0,0,0,0.75);
}

.person_linkedin--empty {
    visibility: hidden;
}

.about__team-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    font-family: var(--font-family);
}

/* Team carousel */
.team-carousel {
    position: relative;
    overflow: hidden;
    padding-bottom: 32px;
    width: 100%;
}

.team-carousel .swiper-slide {
    height: auto;
}

.team-carousel .person_card {
    width: 100%;
    min-height: 320px;
    background-position: center top;
}

.team-carousel__prev,
.team-carousel__next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    color: #fff;
    backdrop-filter: blur(6px);
}

.team-carousel__prev::after,
.team-carousel__next::after {
    font-size: 18px;
}

.team-carousel__prev:hover,
.team-carousel__next:hover {
    background: rgba(0,0,0,0.7);
}

.team-carousel__pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
}

.team-carousel__pagination .swiper-pagination-bullet-active {
    background: #fff;
}

@media (max-width: 47.99875em) {
    .team-carousel .person_card {
        min-height: 280px;
    }

    .team-carousel__prev,
    .team-carousel__next {
        width: 36px;
        height: 36px;
    }
}

.marcus-video {
  align-items: center;
  background: #f8fffb;
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 24px;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  margin-top: 28px;
  padding: clamp(18px, 3vw, 28px);
  width: 100%;
}

.marcus-video__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 620px;
  min-width: 0;
}

.marcus-video__eyebrow,
.landing-video-stories__eyebrow {
  color: #16a34a;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.marcus-video__copy h3 {
  color: #101312;
  font-family: var(--font-family);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.04;
  margin: 0;
}

.marcus-video__copy p {
  color: #475569;
  font-family: var(--second-family);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  overflow-wrap: anywhere;
}

.marcus-video__cta {
  align-items: center;
  background: #101312;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
  width: fit-content;
}

.marcus-video__media {
  align-items: center;
  background:
    radial-gradient(circle at top center, rgba(131, 255, 143, 0.36), rgba(131, 255, 143, 0) 42%),
    linear-gradient(180deg, #effdf5 0%, #e8f6ff 100%);
  border-radius: 22px;
  display: flex;
  justify-content: center;
  min-height: 430px;
  overflow: hidden;
  padding: 18px;
}

.marcus-video__player {
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
  max-width: 270px;
  overflow: hidden;
  width: 100%;
}

.marcus-video__player video {
  background: #0f172a;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.landing-video-stories {
  margin: clamp(36px, 6vw, 72px) 16px 0;
}

.landing-video-stories__inner {
  background: #101812;
  border-radius: 32px;
  color: #fff;
  margin: 0 auto;
  max-width: 1650px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 64px);
}

.landing-video-stories__top {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  margin-bottom: clamp(24px, 4vw, 56px);
}

.landing-video-stories__title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-family);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
  margin: 20px 0 0;
}

.landing-video-stories__aside {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--second-family);
  font-size: 18px;
  line-height: 1.55;
  min-width: 0;
}

.landing-video-stories__aside p {
  margin: 0;
  overflow-wrap: anywhere;
}

.landing-video-stories__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.landing-video-stories__chip {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  padding: 10px 14px;
}

.landing-video-stories__chip--accent {
  border-color: rgba(131, 255, 143, 0.45);
  color: #83ff8f;
  font-weight: 800;
}

.landing-video-stories__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
}

.landing-video-stories__side {
  display: grid;
  gap: 20px;
}

.landing-vcard {
  aspect-ratio: 16 / 9;
  background: #0b0f0c;
  border-radius: 24px;
  min-height: 220px;
  overflow: hidden;
  position: relative;
}

.landing-vcard--feature {
  min-height: 440px;
}

.landing-vcard video {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.landing-vcard::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.64) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.landing-vcard__tag,
.landing-vcard__duration {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(16, 19, 18, 0.58);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  font-family: var(--second-family);
  font-size: 13px;
  font-weight: 700;
  min-height: 30px;
  padding: 0 13px;
  position: absolute;
  top: 18px;
  z-index: 2;
}

.landing-vcard__tag {
  left: 18px;
}

.landing-vcard__duration {
  gap: 7px;
  right: 18px;
}

.landing-vcard__duration span {
  background: #fb2c36;
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.landing-vcard__meta {
  align-items: end;
  bottom: 20px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  left: 20px;
  position: absolute;
  right: 20px;
  z-index: 2;
}

.landing-vcard__meta div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.landing-vcard__meta strong {
  color: #fff;
  font-family: var(--font-family);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1;
}

.landing-vcard__meta span {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--second-family);
  font-size: 13px;
}

.landing-vcard__amount {
  align-items: flex-end;
  text-align: right;
}

.landing-vcard__amount strong {
  color: #83ff8f;
}

.hero__btn--pulse {
  animation: heroCtaPulse 2.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(131, 255, 143, 0.56);
  position: relative;
}

.hero__btn--pulse::before {
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.58) 48%, transparent 100%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-110%);
}

.hero__btn--pulse:hover::before,
.hero__btn--pulse:focus-visible::before {
  animation: heroCtaShine 0.82s ease;
}

@keyframes heroCtaPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(131, 255, 143, 0.48);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(131, 255, 143, 0);
    transform: translateY(-1px);
  }
}

@keyframes heroCtaShine {
  0% {
    opacity: 0;
    transform: translateX(-110%);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(110%);
  }
}

.footer__hotline {
  align-items: center;
  background: linear-gradient(135deg, rgba(131, 255, 143, 0.16), rgba(224, 247, 255, 0.12));
  border: 1px solid rgba(131, 255, 143, 0.28);
  border-radius: 18px;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 28px;
  padding: 18px 20px;
}

.footer__hotline-copy {
  color: rgba(255, 255, 255, 0.74);
  display: flex;
  flex-direction: column;
  font-family: var(--second-family);
  font-size: 14px;
  gap: 4px;
  line-height: 1.35;
}

.footer__hotline-copy strong {
  color: #fff;
  font-family: var(--font-family);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
}

.footer__hotline-kicker {
  color: #83ff8f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__hotline-phone {
  align-items: center;
  background: #83ff8f;
  border-radius: 999px;
  color: #101312;
  display: inline-flex;
  flex-shrink: 0;
  font-family: var(--font-family);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  text-decoration: none;
  white-space: nowrap;
}

.floating-case-cta {
  align-items: center;
  background: linear-gradient(112.73deg, #83ff8f 6.86%, #c5f07f 95.33%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 12px 34px rgba(34, 197, 94, 0.28), 0 4px 12px rgba(0, 0, 0, 0.12);
  color: #101312;
  display: inline-flex;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
  min-height: 52px;
  opacity: 0;
  padding: 0 18px 0 22px;
  pointer-events: none;
  position: fixed;
  right: 18px;
  text-decoration: none;
  transform: translateY(18px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 60;
}

.floating-case-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-case-cta__icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  display: flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

@media (max-width: 47.99875em) {
  .about__team {
    padding-left: 16px;
    padding-right: 16px;
  }

  .marcus-video {
    grid-template-columns: 1fr;
    margin-top: 22px;
    padding: 16px;
  }

  .marcus-video__copy {
    gap: 10px;
  }

  .marcus-video__copy h3 {
    font-size: 28px;
  }

  .marcus-video__cta {
    width: 100%;
  }

  .marcus-video__media {
    min-height: auto;
    padding: 14px;
  }

  .marcus-video__player {
    max-width: 240px;
  }

  .landing-video-stories {
    margin: 32px 0 0;
  }

  .landing-video-stories__inner {
    border-radius: 24px;
    padding: 24px 14px;
  }

  .landing-video-stories__top,
  .landing-video-stories__grid {
    grid-template-columns: 1fr;
  }

  .landing-video-stories__top {
    align-items: start;
    margin-bottom: 22px;
  }

  .landing-video-stories__title {
    font-size: 38px;
    margin-top: 12px;
  }

  .landing-video-stories__aside {
    font-size: 15px;
  }

  .landing-video-stories__chips {
    gap: 8px;
    margin-top: 16px;
  }

  .landing-video-stories__chip {
    font-size: 12px;
    padding: 8px 10px;
  }

  .landing-video-stories__side {
    gap: 14px;
  }

  .landing-vcard,
  .landing-vcard--feature {
    border-radius: 18px;
    min-height: 218px;
  }

  .landing-vcard__tag,
  .landing-vcard__duration {
    font-size: 11px;
    min-height: 28px;
    top: 12px;
  }

  .landing-vcard__tag {
    left: 12px;
    max-width: 58%;
  }

  .landing-vcard__duration {
    right: 12px;
  }

  .landing-vcard__meta {
    bottom: 14px;
    left: 14px;
    right: 14px;
  }

  .landing-vcard__meta strong {
    font-size: 18px;
  }

  .landing-vcard__amount {
    display: none !important;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero,
  .hero * {
    box-sizing: border-box;
  }

  .hero {
    padding-bottom: 28px;
  }

  .hero__body {
    min-height: auto;
    padding-bottom: 22px;
  }

  .hero__title {
    margin-bottom: 18px;
  }

  .hero__bottom {
    gap: 18px;
    margin-top: 26px;
  }

  .hero__content,
  .hero__aside,
  .hero__text,
  .hero__bottom > div {
    flex-basis: auto;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .hero__container {
    max-width: 100vw;
    overflow: hidden;
  }

  .hero__title,
  .hero__text {
    max-width: calc(100vw - 30px);
    overflow-wrap: anywhere;
    text-align: left;
    white-space: normal;
  }

  .hero-btn_block {
    gap: 10px !important;
    max-width: calc(100vw - 30px);
  }

  .hero-btn_block .btn,
  .hero-btn_block .btn-secondary {
    max-width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    white-space: normal;
    width: min(100%, calc(100vw - 64px)) !important;
  }

  .hero-btn_block .btn > span:first-child,
  .hero-btn_block .btn-secondary > span:first-child {
    min-width: 0;
  }

  .footer__main {
    gap: 28px;
  }

  .footer__hotline {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
    padding: 16px;
  }

  .footer__hotline-phone {
    min-height: 52px;
    width: 100%;
  }

  .floating-case-cta {
    bottom: 14px;
    left: 14px;
    min-height: 54px;
    right: 14px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__btn--pulse {
    animation: none;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.hero,
.hero * {
  box-sizing: border-box;
}

.hero__content,
.hero__aside,
.hero__text,
.hero__bottom > div {
  min-width: 0;
}

.hero__text {
  max-width: min(380px, calc(100vw - 30px)) !important;
  overflow-wrap: anywhere;
  white-space: normal !important;
}

.hero-btn_block,
.hero-btn_block .btn,
.hero-btn_block .btn-secondary {
  max-width: min(100%, calc(100vw - 48px)) !important;
}

.hero-btn_block {
  width: min(100%, calc(100vw - 48px)) !important;
}
