:root {
  --color-primary: #99ea48;
  --color-white: #ffffff;
  --color-black: #010205;

  --color-text: #111111;
  --color-muted: #6b7280;
  --color-border: rgba(17, 17, 17, 0.12);
  --color-bg: #ffffff;

  --ff-plus-jakarta:
    "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
  --ff-manrope:
    "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --ff-roboto:
    "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  --h1-size: 48px;
  --h1-lh: 1.1;
  --h1-weight: 600;

  --h2-size: 32px;
  --h2-lh: 1.2;
  --h2-weight: 600;

  --h3-size: 20px;
  --h3-lh: 1.3;
  --h3-weight: 600;

  --p-size: 16px;
  --p-lh: 1.5;
  --p-weight: 400;

  --container-w: 1200px;
  --container-pad: 20px;

  --radius: 999px;
  --shadow-sm: 0 6px 24px rgba(0, 0, 0, 0.08);
  --transition: 180ms ease;
}

html,
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--ff-plus-jakarta);
}

.container {
  width: min(var(--container-w), calc(100% - (var(--container-pad) * 2)));
  margin: 0 auto;
}

.h1 {
  font-size: var(--h1-size);
  line-height: var(--h1-lh);
  font-weight: var(--h1-weight);
}
.h2 {
  font-size: var(--h2-size);
  line-height: var(--h2-lh);
  font-weight: var(--h2-weight);
}
.h3 {
  font-size: var(--h3-size);
  line-height: var(--h3-lh);
  font-weight: var(--h3-weight);
}
.p {
  font-size: var(--p-size);
  line-height: var(--p-lh);
  font-weight: var(--p-weight);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header__logo img {
  height: 28px;
  width: auto;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1 1 auto;
  justify-content: center;
}

.nav__link {
  font-family: var(--ff-plus-jakarta);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text);
  opacity: 0.92;
  transition:
    opacity var(--transition),
    transform var(--transition);
  white-space: nowrap;
}

.nav__link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.lang-switch {
  height: 40px;
  padding: 4px;

  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-white);
}

.lang-switch__item {
  height: 100%;
  padding: 0 12px;
  border-radius: calc(var(--radius) - 4px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text);
  background: transparent;
  transition:
    background var(--transition),
    color var(--transition);
}

.lang-switch__item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.lang-switch__item.is-active {
  background: var(--color-primary);
  color: var(--color-black);
}

.lang-switch--wide {
  width: 100%;
  justify-content: center;
}

.lang-switch:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.lang-switch__text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn {
  height: 40px;
  padding: 0 16px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-black);
}

.btn--primary:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--ghost:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  background: var(--color-white);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.icon-btn:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.burger {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  background: var(--color-white);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.burger:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.burger__lines {
  width: 18px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 92vw);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__title {
  font-size: 14px;
  font-weight: 700;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.mobile-menu__link {
  height: 44px;
  border-radius: 12px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--color-text);
  transition: background var(--transition);
}

.mobile-menu__link:hover {
  background: rgba(17, 17, 17, 0.06);
}

.mobile-menu__bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn--wide,
.lang-switch--wide {
  width: 100%;
}

.btn-mobile {
  margin-top: 30px;
}

.hero {
  padding: 56px 0 40px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.hero__title {
  font-family: var(--ff-plus-jakarta);
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--color-text);
}

.hero__bold {
  font-weight: 800;
}

.hero__accent {
  color: var(--color-primary);
}

.hero__desc {
  margin-top: 18px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-muted);
}

.hero__cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero__btn {
  height: 52px;
  padding: 0 8px 0 22px;
  border-radius: 999px;
  font-size: 14px;
  gap: 12px;
}

.hero__arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
}

.hero__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity var(--transition);
}

.hero__link:hover {
  opacity: 0.8;
}

.hero__trusted {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
}

.hero__trusted-title {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--color-text);
}

.hero__logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__logo {
  font-size: 16px;
  font-weight: 800;
  color: rgba(17, 17, 17, 0.35);
}

.hero__right {
  display: grid;
  gap: 18px;
}

.hero__card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  width: 100%;
  height: 100%;
}

.hero__card--top {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.hero__img {
  max-width: 50%;
}

.hero__slider {
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.45);
}

.hero__card--bottom {
  min-height: 220px;
  background: var(--color-black);
  color: var(--color-white);
  padding: 22px;
  position: relative;
}

.hero__kicker {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  margin-bottom: 14px;
}

.hero__mini-title {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.15;
  font-weight: 800;
  max-width: 320px;
}

.hero__chart {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.hero__bar {
  width: 60px;
  border-radius: 8px 8px 0 0;
  background: var(--color-primary);
  opacity: 0.9;
}

.hero__bar:nth-child(1) {
  height: 70px;
}
.hero__bar:nth-child(2) {
  height: 110px;
  opacity: 0.8;
}
.hero__bar:nth-child(3) {
  height: 150px;
  opacity: 0.7;
}

.faq {
  padding: 44px 0;
}

.faq__wrap {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: clamp(18px, 3vw, 64px);
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: clamp(18px, 3vw, 44px);
}

.faq__title {
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.1;
  font-weight: 800;
}

.faq__subtitle {
  margin-top: 14px;
  max-width: 420px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-muted);
}

.faq__actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.faq__contact-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity var(--transition);
}

.faq__contact-link:hover {
  opacity: 0.85;
}

.faq__right {
  min-width: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item__head {
  width: 100%;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 16px;
  align-items: center;
  text-align: left;
  background: transparent;
}

.faq-item__q {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--color-text);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.faq-item__a {
  padding: 0 0 18px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--color-muted);
  max-width: 640px;
}

.faq-item.is-open .faq-item__body {
  max-height: 220px;
}

.footer {
  padding: 36px 0 56px;
}

.footer-cta {
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-cta__title {
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.15;
  font-weight: 800;
  max-width: 720px;
}

.footer-cta__btn {
  background: var(--color-white);
  color: var(--color-black);
  height: 44px;
  padding: 0 10px 0 18px;
  border-radius: 999px;
  gap: 12px;
}

.footer-cta__btn:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.footer-cta__arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
}

.footer__grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 26px;
  align-items: start;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__logo img {
  height: 28px;
  width: auto;
  display: block;
}

.footer__desc {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-muted);
  max-width: 360px;
}

.footer__social {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__social-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  background: var(--color-white);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
  font-weight: 700;
  font-size: 12px;
}

.footer__social-btn:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.footer__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 12px;
}

.footer__list {
  display: grid;
  gap: 10px;
}

.footer__link {
  font-size: 13px;
  color: var(--color-muted);
  transition:
    color var(--transition),
    opacity var(--transition);
}

.footer__link:hover {
  color: var(--color-text);
  opacity: 0.9;
}

.footer__contact {
  display: grid;
  gap: 12px;
}

.footer__contact-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
}

.footer__icon {
  font-size: 14px;
  line-height: 1;
  opacity: 0.8;
}

.footer__muted {
  font-size: 13px;
  color: var(--color-muted);
}

.work {
  padding: 44px 0;
}

.work__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  align-items: start;
  margin-bottom: 22px;
}

.work__title {
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 800;
}

.work__text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-muted);
  max-width: 520px;
  justify-self: end;
}

.work__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.55fr;
  gap: 18px;
  align-items: stretch;
}

.work-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  min-width: 0;
}

.work-card--stats {
  background: var(--color-black);
  color: var(--color-white);
  padding: 22px;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
}

.work-card__shine {
  position: absolute;
  inset: -30%;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(255, 255, 255, 0.18),
    transparent 55%
  );
  pointer-events: none;
}

.work-card__content {
  position: relative;
  width: 100%;
}

.work-card__num {
  font-size: clamp(54px, 6vw, 78px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.work-card__plus {
  color: var(--color-primary);
}

.work-card__desc {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 320px;
}

.work-card__avatars {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.work-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transform: translateZ(0);
  transition: transform var(--transition);
}

.work-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-card__avatar:hover {
  transform: scale(1.08);
}

.work-card__more {
  margin-left: 6px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
}

.work-card--video {
  min-height: 320px;
}

.work-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.25) 60%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

.work-card__video-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 800;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.2vw, 34px);
  text-align: center;
  white-space: nowrap;
}

.work-card__play {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.work-card__play:hover {
  transform: scale(1.04);
}

.work-card__play-icon {
  width: 0;
  height: 0;
  border-left: 18px solid var(--color-black);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.video-modal.is-open {
  display: block;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.video-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(980px, 92vw);
  background: var(--color-black);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.video-modal__close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
}

.video-modal__frame {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.hero__left,
.hero__right {
  min-width: 0;
}

.hero__slider.hero__card {
  min-width: 0;
  width: 100%;
  overflow: hidden;
}

.heroFacts {
  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: hidden;
}

.heroFacts .swiper-wrapper {
  min-width: 0;
}

.heroFacts .swiper-slide {
  width: 100% !important;
  height: 100%;
}

.fact-card {
  width: 100%;
  height: 100%;
  padding: 22px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

.fact-card__num {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 900;
  line-height: 1;
  color: var(--color-black);
}

.fact-card__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-muted);
  max-width: 260px;
}

.fact-card__line {
  margin-top: auto;
  height: 4px;
  width: 100%;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.fact-card__bar {
  display: block;
  height: 100%;
  width: 70%;
  background: var(--color-black);
}

.heroFacts.swiper {
  overflow: hidden;
}

.heroFacts .swiper-slide {
  width: 100% !important;
}

.reviews__box {
  overflow: hidden;
}

.reviewsSwiper {
  width: 100%;
  overflow: hidden;
}

.review {
  padding: clamp(22px, 4vw, 48px);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.review__text {
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.35;
  font-weight: 700;
  color: var(--color-text);
  max-width: 980px;
}

.review__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.review__person {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}

.review__avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
}

.review__name {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text);
}

.review__role {
  margin-top: 4px;
  font-size: 12px;
  color: var(--color-muted);
}

.review__controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review__nav {
  width: 64px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  color: var(--color-text);
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.review__nav:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.review__nav--next {
  background: var(--color-black);
  color: var(--color-white);
  border-color: rgba(0, 0, 0, 0.2);
}

.review__count {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-width: 62px;
  justify-content: center;
}

.review__current {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cases {
  padding: 44px 0;
}

.cases__wrap {
  background:
    radial-gradient(
      circle at 70% 10%,
      rgba(255, 255, 255, 0.12),
      transparent 55%
    ),
    var(--color-black);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 46px);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.cases__title {
  text-align: center;
  font-size: clamp(18px, 2.4vw, 30px);
  line-height: 1.25;
  font-weight: 800;
  max-width: 920px;
  margin: 0 auto;
}

.cases__tabs {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cases__tab {
  height: 38px;
  padding: 0 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cases__tab:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.cases__tab.is-active {
  background: var(--color-primary);
  color: var(--color-black);
  border-color: transparent;
}

.cases__count {
  opacity: 0.9;
}

.cases__slider {
  margin-top: 22px;
  position: relative;
  min-width: 0;
}

.casesSwiper {
  width: 100%;
  overflow: hidden;
}

.casesSwiper .swiper-wrapper {
  min-width: 0;
}

.cases__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
  z-index: 2;
}

.cases__nav:hover {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-sm);
  transform: translateY(-50%) scale(1.03);
}

.cases__nav--prev {
  left: 10px;
}
.cases__nav--next {
  right: 10px;
}

.case-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 320px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-sm);
}

.case-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
  transform: scale(1.02);
}

.case-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.case-card__meta {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  backdrop-filter: blur(6px);
}

.case-card__bottom {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
}

.case-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 440px;
  margin-bottom: 8px;

  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.case-card__title {
  font-size: 16px;
  font-weight: 900;
  color: var(--color-white);
}

.case-card:hover .case-card__desc {
  opacity: 1;
  transform: translateY(0);
}

.casesSwiper .swiper-slide {
  width: auto;
}

/*adaptive*/

@media screen and (max-width: 980px) {
  .case-card {
    height: 300px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

@media screen and (max-width: 900px) {
  .work__top {
    grid-template-columns: 1fr;
  }

  .work__text {
    justify-self: start;
    max-width: 100%;
  }

  .work__grid {
    grid-template-columns: 1fr;
  }

  .work-card__video-text {
    white-space: normal;
    letter-spacing: 0.18em;
    padding: 0 16px;
  }
}

@media screen and (max-width: 768px) {
  .cases__nav {
    display: none;
  }
  .case-card {
    height: 280px;
  }

  .review__controls {
    width: 100%;
    justify-content: flex-start;
  }

  .review__nav {
    width: 56px;
  }

  .hero {
    padding: 40px 0 28px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__trusted {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cta__btn {
    width: 100%;
    justify-content: space-between;
  }

  .btn-notifications {
    display: none;
  }

  .faq__wrap {
    grid-template-columns: 1fr;
  }

  .faq__subtitle {
    max-width: 100%;
  }
}

@media screen and (max-width: 540px) {
  .cases__tabs {
    gap: 10px;
  }
  .cases__tab {
    height: 36px;
    padding: 0 14px;
  }
  .case-card {
    height: 260px;
  }

  .review__person {
    min-width: 100%;
  }

  .review__controls {
    width: 100%;
    justify-content: space-between;
  }

  .work-card__play {
    width: 82px;
    height: 82px;
    right: 16px;
    bottom: 16px;
  }

  .work-card__play-icon {
    border-left-width: 16px;
    border-top-width: 10px;
    border-bottom-width: 10px;
  }

  .work-card__avatar {
    width: 40px;
    height: 40px;
  }

  .hero__img {
    display: none;
  }
  .hero__cta {
    gap: 14px;
  }

  .hero__btn {
    width: 100%;
    justify-content: space-between;
  }

  .hero__link {
    width: 100%;
    text-align: center;
  }

  .hero__bar {
    width: 46px;
  }

  .footer {
    padding: 26px 0 44px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__desc {
    max-width: 100%;
  }

  .header__inner {
    height: 64px;
    gap: 12px;
  }

  .header__nav {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .icon-btn[aria-label="Notifications"] {
    display: none;
  }

  .header__inner {
    justify-content: space-between;
  }

  .header__actions {
    gap: 10px;
  }

  .faq__actions .btn {
    width: 100%;
  }

  .faq__contact-link {
    width: 100%;
    text-align: center;
  }

  .faq-item__q {
    font-size: 15px;
  }
}
