/* ==================================================
   ОЧИЩЕНА ТА ВПОРЯДКОВАНА ВЕРСІЯ STYLES.CSS

   Що зроблено:
   - відформатовано структуру файлу;
   - уніфіковано коментарі українською;
   - логіку стилів не змінено навмисно, щоб не ламати верстку.

   Примітка:
   у файлі все ще можуть лишатися повтори правил, якщо вони
   були потрібні для перевизначення стилів нижче по коду.
================================================== */

/* Скидання базових стилів */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Базові стилі сторінки */
body {
  font-family: Arial, sans-serif;
  background-color: #f3f3f3;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 220px 220px;
  color: #000;
}

/* =========================
   Шапка сайту / меню
========================= */

.header {
  padding-top: 12px;
  margin-bottom: 44px;
}

.floww {
  padding-left: 20px;
  width: 110px;
  height: 46px;
  filter: brightness(0) saturate(100%) invert(47%) sepia(95%) saturate(1678%) hue-rotate(183deg) brightness(100%) contrast(102%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  max-width: 1180px;
  margin: 0 auto;

  background: #fff;
  border: 2px solid #e6e6e6;
  border-radius: 999px;
  padding: 14px 18px;
}

.logo {
  text-decoration: none;
  color: #000;
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
  margin-right: 60px;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 58px;
  margin-left: auto;
  margin-right: auto;
}

.nav-list a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.nav-list a:hover {
  opacity: 0.65;
}

.nav-btn {
  text-decoration: none;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 18px 30px;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* =========================
   Перший екран
========================= */

.hero {
  padding-bottom: 20px;
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 760px) 420px;
  align-items: center;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.hero-content {
  padding-top: 20px;
  max-width: 760px;
  margin-left: 40px;
}

.hero-title {
  font-size: 50px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 24px;

  opacity: 0;
  animation: fadeRight 0.9s ease 0.15s forwards;
}

@media (max-width: 1200px) {
  .hero-content {
    margin-left: 40px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    margin-left: 0;
  }
}


.hero-text {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  max-width: 700px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.hero-btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn-dark {
  background: #000;
  color: #fff;
}

.hero-btn-light {
  color: #000;
  border: 4px solid #000;
  background: transparent;
}

/* =========================
   Партнери
========================= */

.partners {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.partner-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: #f8f8f8;
  border: 2px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}

.partner-info h3 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 800;
}

.partner-info p {
  font-size: 15px;
  font-weight: 700;
}

/* =========================
   Перший екран VISUAL
========================= */

.hero-visual {
  position: relative;
  width: 360px;
  min-width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cube-shadow {
  position: absolute;
  width: 230px;
  height: 230px;
  background: rgba(0, 0, 0, 0.45);
  filter: blur(34px);
  border-radius: 50%;
  bottom: 26px;
  z-index: 0;
}

.cube {
  position: relative;
  width: 250px;
  height: 250px;
  transform: rotate(-8deg);
  z-index: 1;
}

.cube-face {
  position: absolute;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5fb 100%);
  border: 2px solid rgba(219, 229, 239, 0.9);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.cube-face-top {
  width: 200px;
  height: 108px;
  top: 0;
  left: 46px;
  transform: skewX(-35deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
}

.cube-face-front {
  width: 182px;
  height: 205px;
  left: 12px;
  top: 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 16px 14px;
}

.cube-face-side {
  width: 155px;
  height: 205px;
  right: 0;
  top: 64px;
  padding: 24px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart {
  font-size: 62px;
  text-align: center;
  margin-top: 8px;
}

.cube-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid #dce8f2;
  border-radius: 16px;
  padding: 14px 12px;
}

.cube-bottom strong {
  font-size: 21px;
}

.brand-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 21px;
  font-weight: 700;
  color: #234;
}

.cube-profit {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.cube-profit small {
  font-size: 16px;
  font-weight: 800;
  color: #34c59a;
}

.cube-profit strong {
  font-size: 21px;
  font-weight: 900;
  color: #20364f;
}

/* =========================
   Адаптація для планшетів
========================= */

@media (max-width: 1200px) {
  .nav {
    max-width: 100%;
  }

  .nav-list {
    gap: 34px;
  }

  .hero-container {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-visual {
    width: 320px;
    min-width: 320px;
    height: 320px;
  }

  .cube {
    transform: scale(0.88) rotate(-8deg);
  }
}
.partner-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.hero-content {
  max-width: 700px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-phone {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}

@media (max-width: 1200px) {
  .nav {
    max-width: 100%;
  }

  .nav-list {
    gap: 34px;
  }

  .hero-container {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-visual {
    width: auto;
    min-width: 0;
    height: auto;
  }

  .hero-phone {
    max-width: 320px;
  }
}

/* Скидання базових стилів */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   Анімації
========================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatPhone {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}

@keyframes gridMove {
  0% {
    background-position:
      0 0,
      0 0;
  }
  100% {
    background-position:
      220px 0,
      0 220px;
  }
}

/* Базові стилі сторінки */

/* Контейнер */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

/* =========================
   Шапка сайту / меню
========================= */

.header {
  margin-bottom: 60px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  max-width: 1180px;
  margin: 0 auto;

  background: #fff;
  border: 2px solid #e6e6e6;
  border-radius: 999px;
  padding: 14px 18px;

  animation: fadeUp 0.8s ease both;
}

.logo {
  text-decoration: none;
  color: #000;
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
  margin-right: 60px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.logo:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 58px;
  margin-left: auto;
  margin-right: auto;
}

.nav-list a {
  position: relative;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.nav-list a:hover {
  opacity: 0.8;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #000;
  border-radius: 999px;
  transition: width 0.3s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-btn {
  text-decoration: none;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 18px 36px;
  border-radius: 999px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-btn:hover {
  opacity: 0.96;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.nav-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transition: left 0.7s ease;
}

.nav-btn:hover::before {
  left: 140%;
}

/* =========================
   Перший екран
========================= */

.hero {
  padding-bottom: 20px;
}



.hero-text {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  max-width: 700px;
  margin-bottom: 28px;

  opacity: 0;
  animation: fadeRight 0.9s ease 0.3s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  flex-wrap: wrap;

  opacity: 0;
  animation: fadeRight 0.9s ease 0.45s forwards;
}

.hero-btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transition: left 0.7s ease;
}

.hero-btn:hover::before {
  left: 140%;
}

.hero-btn-dark {
  background: linear-gradient(135deg, #2fa4ff 0%, #148bff 100%);
  color: #fff;
}

.hero-btn-light {
  color: #0e4fa6;
  border: 3px solid #2fa4ff;
  background: #eaf4ff;
}

.hero-btn-light:hover {
  background: linear-gradient(135deg, #2fa4ff 0%, #148bff 100%);
  color: #fff;
  border-color: #2fa4ff;
}

.btn-arrow-icon {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-left: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translateY(1px);
  transition: transform 0.2s ease;
}

.hero-btn:hover .btn-arrow-icon,
.cases-main-btn:hover .btn-arrow-icon,
.contact-cta-btn:hover .btn-arrow-icon {
  transform: rotate(45deg) translate(2px, -1px);
}

/* =========================
   Партнери
========================= */

.partners {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;

  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
}

.partner-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: #f8f8f8;
  border: 2px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.partner-card:hover .partner-icon {
  transform: rotate(-6deg) scale(1.06);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.partner-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.partner-info h3 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 800;
}

.partner-info p {
  font-size: 15px;
  font-weight: 700;
}

/* =========================
   Перший екран VISUAL
========================= */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;

  opacity: 0;
  animation: fadeLeft 1s ease 0.35s forwards;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  filter: blur(12px);
  z-index: 0;
  animation: pulseGlow 4s ease-in-out infinite;
}

.hero-phone-wrap {
  position: relative;
  z-index: 1;
  animation: floatPhone 4.8s ease-in-out infinite;
  transition: transform 0.25s ease;
  will-change: transform;
}

.hero-phone {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}

/* =========================
   Поява елементів під час прокрутки
========================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Адаптація для планшетів
========================= */

@media (max-width: 1200px) {
  .nav {
    max-width: 100%;
  }

  .nav-list {
    gap: 34px;
  }

  .hero-container {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-visual {
    width: auto;
    min-width: 0;
    height: auto;
  }

  .hero-phone {
    max-width: 320px;
  }
}

/* =========================
   Адаптація для мобільних
========================= */

@media (max-width: 900px) {
  .nav {
    border-radius: 28px;
    padding: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo {
    margin-right: 0;
  }

  .nav-list {
    width: 100%;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 8px 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-content {
    margin-left: 0;
    padding-top: 10px;
    text-align: center;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-text {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .partners {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-phone {
    max-width: 280px;
  }
}

/* =========================
   Режим зі зменшеним рухом
========================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal.active,
  .hero-title,
  .hero-text,
  .hero-actions,
  .partners,
  .hero-visual {
    opacity: 1 !important;
    transform: none !important;
  }
}

.work-process {
  padding: 60px 0;
  margin-top: 120px; /* отступ от блока сверху */
}

.work-title {
  text-align: center;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 26px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.work-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.work-item {
  display: grid;
  grid-template-columns: 72px 1fr 1.25fr;
  align-items: center;
  gap: 16px;

  background: #f7f7f7;
  border: 2px solid #e7e7e7;
  border-radius: 22px;
  padding: 12px 14px;
}

.work-step {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #1e9bff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  flex-shrink: 0;
}

.work-name {
  font-size: 22px;
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}

.work-text {
  background: #1e9bff;
  color: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 800;
}

/* Анімація */
.reveal-item {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal-item.active {
  opacity: 1;
  transform: translateY(0);
}

.work-item.reveal-item:nth-child(1) {
  transition-delay: 0.05s;
}

.work-item.reveal-item:nth-child(2) {
  transition-delay: 0.12s;
}

.work-item.reveal-item:nth-child(3) {
  transition-delay: 0.19s;
}

.work-item.reveal-item:nth-child(4) {
  transition-delay: 0.26s;
}

/* =========================
   Ефекти наведення для блоку процесу
========================= */

.work-item {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.work-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: #dcdcdc;
}

/* Збільшення номера кроку */

.work-step {
  transition: transform 0.35s ease;
}

.work-item:hover .work-step {
  transform: scale(1.08);
}

/* Анімація текстового блока */

.work-text {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.work-item:hover .work-text {
  transform: translateX(6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

/* Назва */

.work-name {
  transition: transform 0.35s ease;
}

.work-item:hover .work-name {
  transform: translateX(4px);
}

/* =========================
   Окрема картка кейсу
========================= */
.case-single-section {
  padding: 70px 0;
  overflow: hidden;
}

.cases-title {
  margin: 0 0 40px;
  text-align: center;
  font-size: 64px;
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}
/* =========================
   Секція кейсів
   ========================= */

.cases-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.cases-scroll::-webkit-scrollbar {
  display: none;
}

.cases-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.case-single-card {
  flex: 0 0 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 20px;
  padding: 20px;
  border: 2px solid #e6e6e6;
  border-radius: 24px;
  background: #f5f5f5;
  box-sizing: border-box;
}

.case-single-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 18px;
}

.case-single-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Щоб картки зручно гортались по одній */
.cases-scroll {
  scroll-snap-type: x mandatory;
}

.case-single-card {
  scroll-snap-align: start;
}













.case-single-left {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.case-single-brand {
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.case-single-subtitle {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 10px;
}

.case-single-task {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(145deg, #1b73db 0%, #0e4fa6 100%);
  color: #fff;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.case-single-task h4 {
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  margin: 0 0 8px;
}

.case-single-task p {
  font-size: 11px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 5px;
}

.case-single-task p:last-child {
  margin-bottom: 0;
}

.case-single-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0 0 10px;
  max-width: 100%;
  padding: 0;
}

.case-single-list li {
  position: relative;
  padding-left: 18px;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 800;
}

.case-single-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.case-single-result {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(145deg, #165eb6 0%, #0b438e 100%);
  color: #fff;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px;
  margin-top: auto;
  box-sizing: border-box;
}

.case-single-result h4 {
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  margin: 0 0 8px;
}

.case-single-result-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 4px;
}

.case-single-result-row:last-child {
  margin-bottom: 0;
}

.case-single-result-row span,
.case-single-result-row strong {
  font-size: 11px;
  line-height: 1.2;
}

.case-single-result-row span {
  font-weight: 700;
}

.case-single-result-row strong {
  font-weight: 900;
  text-align: right;
}

.case-single-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
}

.case-single-image-wrap {
  overflow: hidden;
  border-radius: 16px;
  height: 70%;
  min-height: 0;
}

.case-single-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-single-btn {
  min-height: 46px;
  background: linear-gradient(135deg, #2fa4ff 0%, #1a7be6 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.65);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: none;
  text-align: center;
  padding: 0 10px;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  box-shadow: 0 10px 22px rgba(18, 93, 184, 0.35);
}

.case-single-btn:hover {
  transform: translateY(-2px);
  opacity: 1;
  border-color: #ffffff;
  box-shadow: 0 14px 26px rgba(18, 93, 184, 0.45);
}

.case-single-right .case-single-btn + .case-single-btn {
  background: #eaf4ff;
  color: #165eb6;
  border-color: #8bc6ff;
  box-shadow: 0 8px 16px rgba(47, 164, 255, 0.24);
}

.case-single-right .case-single-btn + .case-single-btn:hover {
  border-color: #2fa4ff;
  box-shadow: 0 12px 22px rgba(47, 164, 255, 0.3);
}

.cases-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.cases-main-btn {
  position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 78px;
  padding: 0 34px;
  border: 2px solid #1a7be6;
  border-radius: 999px;
  background: linear-gradient(135deg, #f1f8ff 0%, #d9ecff 100%);
  color: #0e4fa6;
  text-decoration: none;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  text-transform: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 1;
}

.cases-main-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2fa4ff 0%, #1a7be6 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}

.cases-main-btn .btn-arrow-icon {
  width: 14px;
  height: 14px;
  margin-left: 4px;
  border-width: 3px;
}

.cases-main-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(20, 114, 224, 0.35);
}

.cases-main-btn:hover::before {
  transform: scaleX(1);
}

.cases-main-btn:hover .btn-arrow-icon {
  color: #fff;
  transform: rotate(45deg) translate(4px, -1px);
}

@media (max-width: 1400px) {
  .cases-grid {
    grid-template-columns: repeat(2, minmax(320px, 1fr));
  }
}

@media (max-width: 991px) {
  .cases-title {
    font-size: 46px;
    margin-bottom: 30px;
  }

  .cases-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .case-single-card {
    aspect-ratio: auto;
    grid-template-columns: minmax(0, 1fr) 220px;
    padding: 16px;
  }

  .case-single-image-wrap {
    min-height: 320px;
    height: 100%;
  }

  .cases-main-btn {
    font-size: 22px;
    min-height: 68px;
    padding: 0 28px;
  }

  .cases-main-btn .btn-arrow-icon {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 767px) {
  .case-single-section {
    padding: 48px 0;
  }

  .container {
    padding: 0 16px;
  }

  .cases-title {
    font-size: 34px;
    line-height: 1;
    margin-bottom: 24px;
  }

  .cases-grid {
    gap: 16px;
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .case-single-card {
    max-width: 320px;
    padding: 12px;
    grid-template-columns: 1fr;
    gap: 12px;
    aspect-ratio: auto;
  }

  .case-single-right {
    order: -1;
    height: auto;
  }

  .case-single-image-wrap {
    min-height: 220px;
    height: auto;
  }

  .case-single-brand {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .case-single-subtitle {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .case-single-task {
    padding: 10px;
    border-radius: 14px;
  }

  .case-single-task h4,
  .case-single-result h4 {
    font-size: 15px;
  }

  .case-single-task p,
  .case-single-list li,
  .case-single-result-row span,
  .case-single-result-row strong {
    font-size: 11px;
  }

  .case-single-btn {
    min-height: 48px;
    font-size: 12px;
    border-radius: 14px;
  }

  .case-single-result {
    border-radius: 14px;
    padding: 10px;
  }

  .cases-bottom {
    margin-top: 28px;
  }

  .cases-main-btn {
    width: 100%;
    max-width: 320px;
    min-height: 58px;
    font-size: 16px;
    gap: 12px;
    padding: 0 18px;
  }

  .cases-main-btn .btn-arrow-icon {
    width: 11px;
    height: 11px;
    border-width: 2.5px;
  }
}

/* ===== SCROLL Анімації ===== */

.cases-title,
.cases-bottom,
.case-single-card {
  opacity: 0;
  transform: translateY(60px);
}

/* Заголовок */

.cases-title.show {
  animation: fadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* Картки */

.case-single-card.show {
  animation: fadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* Кнопка */

.cases-bottom.show {
  animation: fadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.6s;
}

/* Каскад появи карток */

.case-single-card:nth-child(1).show {
  animation-delay: 0.15s;
}
.case-single-card:nth-child(2).show {
  animation-delay: 0.3s;
}
.case-single-card:nth-child(3).show {
  animation-delay: 0.45s;
}
.case-single-card:nth-child(4).show {
  animation-delay: 0.6s;
}
.case-single-card:nth-child(5).show {
  animation-delay: 0.75s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Позиціонування бренду
========================= */

.brand-positioning-section {
  padding: 90px 0;
}

.brand-positioning-title {
  text-align: center;
  font-size: 58px;
  font-weight: 900;
  margin-bottom: 42px;
  letter-spacing: -1px;
}

.brand-positioning-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand-positioning-item {
  display: grid;
  grid-template-columns: 1.2fr 120px 1fr;
  align-items: center;
  gap: 18px;

  padding: 18px 22px;

  background: #f5f5f5;
  border: 2px solid #d7e7ff;
  border-radius: 26px;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.brand-positioning-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(28, 108, 204, 0.16);
  border-color: #b9d8ff;
}

/* LEFT */

.brand-positioning-item-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-positioning-item-heading {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.brand-positioning-item-index {
  display: none;
}

/* ICON */

.brand-positioning-item-icon {
  width: 96px;
  height: 96px;

  border-radius: 20px;

  background: linear-gradient(145deg, #f4f9ff 0%, #e9f3ff 100%);
  border: 2px solid #cbe0ff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 38px;

  transition: transform 0.35s ease;
}

.brand-positioning-item:hover .brand-positioning-item-icon {
  transform: rotate(-6deg) scale(1.05);
}

/* TEXT */

.brand-positioning-item-text {
  background: linear-gradient(135deg, #2fa4ff 0%, #148bff 100%);
  color: #fff;

  border-radius: 18px;

  padding: 18px 20px;

  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
}

.brand-positioning-item-text strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.brand-positioning-item-text p {
  margin: 0;
}

.brand-positioning-item-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(46%) sepia(99%) saturate(1601%) hue-rotate(183deg) brightness(99%) contrast(101%);
}

/* =========================
   Анімація появи блоку позиціонування
========================= */

.reveal-position-item {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-position-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* задержка каскада */

.reveal-position-item:nth-child(1) {
  transition-delay: 0.3s;
}
.reveal-position-item:nth-child(1) {
  transition-delay: 0.1s;
}
.reveal-position-item:nth-child(2) {
  transition-delay: 0.25s;
}
.reveal-position-item:nth-child(3) {
  transition-delay: 0.4s;
}

/* =========================
   Вітрина послуг
========================= */

.services-showcase-section {
  padding: 90px 0;
}

.services-showcase-title {
  margin: 0 0 34px;
  text-align: center;
  font-size: 58px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.services-showcase-card {
  position: relative;
  min-height: 280px;
  border-radius: 30px;
  padding: 22px 20px 20px;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.services-showcase-card--dark {
  background: #000;
  color: #fff;
  border: 2px solid #000;
}

.services-showcase-card--light {
  background: #f3f3f3;
  color: #000;
  border: 2px solid #1c1c1c;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.services-showcase-card-heading {
  margin: 0;
  font-size: 40px;
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -1px;
  max-width: 95%;
}

.services-showcase-card-description {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 22px;
  margin: 0;
  max-width: 82%;
  font-size: 15px;
  line-height: 1.05;
  font-weight: 800;
}

.services-showcase-card-cta-heading {
  font-size: 40px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: none;
  max-width: 90%;
}

.services-showcase-card-cta-arrow {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: auto;
}

.services-showcase-card-cta-arrow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.services-showcase-card--light:hover .services-showcase-card-cta-arrow span {
  transform: translate(6px, 4px);
}

/* =========================
   Поява карток послуг
========================= */

.reveal-services-item {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-services-item.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-services-item:nth-child(1) {
  transition-delay: 0.08s;
}
.reveal-services-item:nth-child(2) {
  transition-delay: 0.16s;
}
.reveal-services-item:nth-child(3) {
  transition-delay: 0.24s;
}
.reveal-services-item:nth-child(4) {
  transition-delay: 0.32s;
}
.reveal-services-item:nth-child(5) {
  transition-delay: 0.4s;
}
.reveal-services-item:nth-child(6) {
  transition-delay: 0.48s;
}

/* =========================
   Адаптація для планшетів
========================= */

@media (max-width: 1100px) {
  .services-showcase-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  .services-showcase-card {
    min-height: 250px;
  }

  .services-showcase-card-heading,
  .services-showcase-card-cta-heading {
    font-size: 38px;
  }

  .services-showcase-card-description {
    font-size: 15px;
    max-width: 86%;
  }
}

/* =========================
   Адаптація для мобільних
========================= */

@media (max-width: 767px) {
  .services-showcase-section {
    padding: 56px 0;
  }

  .services-showcase-title {
    font-size: 34px;
    margin-bottom: 22px;
  }

  .services-showcase-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 340px;
    margin: 0 auto;
  }

  .services-showcase-card {
    min-height: 220px;
    border-radius: 24px;
    padding: 18px 16px 16px;
  }

  .services-showcase-card-heading,
  .services-showcase-card-cta-heading {
    font-size: 28px;
    line-height: 0.98;
    letter-spacing: 0;
    max-width: 100%;
  }

  .services-showcase-card-description {
    left: 16px;
    right: 16px;
    bottom: 18px;
    max-width: 88%;
    font-size: 13px;
    line-height: 1.12;
  }

  .services-showcase-card-cta-arrow span {
    font-size: 54px;
  }
}

@media (hover: none) {
  .services-showcase-card:hover {
    transform: none;
    box-shadow: none;
  }

  .services-showcase-card--light:hover .services-showcase-card-cta-arrow span {
    transform: none;
  }
}

/* =========================
   Блок «Чому ми»
========================= */

.why-us-showcase-section {
  padding: 90px 0;
}

.why-us-showcase-layout {
  display: grid;
  grid-template-columns: minmax(320px, 430px) 1fr;
  gap: 28px 34px;
  align-items: start;
}

.why-us-showcase-content {
  grid-column: 1 / 2;
  grid-row: 2;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-top: 0;
}

.why-us-showcase-title {
  grid-column: 1 / -1;
  margin: 0 0 6px;
  text-align: center;
  font-size: 62px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: none;
}

.why-us-contact-form {
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(47, 164, 255, 0.16) 0%, rgba(20, 139, 255, 0.08) 100%);
  border: 2px solid rgba(47, 164, 255, 0.34);
}

.why-us-contact-field {
  display: block;
  margin-bottom: 12px;
}

.why-us-contact-field span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #12477f;
}

.why-us-contact-field input,
.why-us-contact-field textarea {
  width: 100%;
  border: 1.5px solid #bcd8ff;
  border-radius: 16px;
  background: #fff;
  color: #091a32;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  padding: 14px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.why-us-contact-field textarea {
  min-height: 104px;
  resize: vertical;
}

.why-us-contact-field input:focus,
.why-us-contact-field textarea:focus {
  border-color: #2fa4ff;
  box-shadow: 0 0 0 3px rgba(47, 164, 255, 0.16);
}

.why-us-contact-submit {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 999px;
  background: #2fa4ff;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.why-us-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(23, 104, 201, 0.25);
  opacity: 0.98;
}

.why-us-showcase-button {
  display: none;
  align-items: center;
  justify-content: center;
}

.why-us-showcase-cards {
  grid-column: 2 / 3;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.why-us-showcase-card {
  position: relative;
  background: linear-gradient(165deg, #2fa4ff 0%, #148bff 100%);
  color: #fff;
  border-radius: 34px;
  padding: 22px;
  overflow: hidden;
  min-height: 290px;
  border: 2px solid #1b95ff;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.why-us-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(23, 101, 191, 0.22);
}

.why-us-showcase-card--large {
  min-height: 310px;
}

.why-us-showcase-card--small {
  min-height: 250px;
  margin-top: 42px;
}

.why-us-showcase-card-icon-box {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: #eaf4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(13, 77, 156, 0.2);
}

.why-us-showcase-card-icon-image {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(45%) sepia(95%) saturate(1518%) hue-rotate(184deg) brightness(99%) contrast(102%);
}

.why-us-showcase-card-text-box {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.why-us-showcase-card-title {
  margin: 0;
  font-size: 32px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.why-us-showcase-card-description {
  margin: 0;
  max-width: 92%;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 800;
}

.why-us-showcase-card-description--metric {
  max-width: 90%;
}

/* =========================
   Анімація появи блоку «Чому ми»
========================= */

.reveal-why-us-item {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-why-us-item.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-why-us-item:nth-child(1) {
  transition-delay: 0.08s;
}
.reveal-why-us-item:nth-child(2) {
  transition-delay: 0.18s;
}
.reveal-why-us-item:nth-child(3) {
  transition-delay: 0.28s;
}
.reveal-why-us-item:nth-child(4) {
  transition-delay: 0.38s;
}

/* =========================
   Адаптація для планшетів
========================= */

@media (max-width: 1200px) {
  .why-us-showcase-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .why-us-showcase-content {
    grid-column: 1 / -1;
    grid-row: auto;
    max-width: 680px;
    margin: 0 auto;
  }

  .why-us-showcase-cards {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .why-us-showcase-title {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .why-us-showcase-title {
    font-size: 44px;
  }

  .why-us-showcase-cards {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .why-us-showcase-card {
    border-radius: 28px;
  }

  .why-us-showcase-card-description {
    font-size: 20px;
  }

  .why-us-contact-form {
    padding: 18px;
  }
}

/* =========================
   Адаптація для мобільних
========================= */

@media (max-width: 767px) {
  .why-us-showcase-section {
    padding: 56px 0;
  }

  .why-us-showcase-layout {
    gap: 24px;
  }

  .why-us-showcase-title {
    font-size: 34px;
    margin-bottom: 0;
  }

  .why-us-showcase-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 340px;
    margin: 0 auto;
  }

  .why-us-showcase-card,
  .why-us-showcase-card--large,
  .why-us-showcase-card--small {
    min-height: 220px;
    margin-top: 0;
    border-radius: 24px;
    padding: 18px;
  }

  .why-us-showcase-card-icon-box {
    top: 14px;
    right: 14px;
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .why-us-showcase-card-icon-image {
    width: 40px;
    height: 40px;
  }

  .why-us-showcase-card-text-box {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .why-us-showcase-card-title {
    font-size: 26px;
  }

  .why-us-showcase-card-description {
    max-width: 88%;
    font-size: 18px;
    line-height: 1.08;
  }

  .why-us-contact-form {
    padding: 16px;
    border-radius: 22px;
  }

  .why-us-contact-field input,
  .why-us-contact-field textarea {
    font-size: 14px;
    border-radius: 14px;
    padding: 12px;
  }

  .why-us-contact-submit {
    min-height: 50px;
    font-size: 14px;
  }
}

@media (hover: none) {
  .why-us-showcase-card:hover,
  .why-us-contact-submit:hover {
    transform: none;
    box-shadow: none;
  }
}

/* =========================
   Заголовок секції відгуків
========================= */

.reviews-title-section {
  padding: 80px 0 24px;
  background: transparent;
}

.reviews-main-title {
  margin: 0;
  text-align: center;
  font-size: 58px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #000;
}

.reviews-main-title-white {
  margin: 0;
  text-align: center;
  padding-bottom: 20px;
  font-size: 22px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #ffffff;
}

/* =========================
   Темна секція відгуків
========================= */

.reviews-dark-section {
  background: #000;
  color: #fff;
  padding: 0;
  margin: 0;
  width: 100%;
}

.reviews-dark-inner {
  background: #000;
  width: 100%;
  padding: 56px 0 80px;
}

.reviews-dark-section .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.reviews-dark-text-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 58px;
}

.reviews-dark-text-card {
  padding: 24px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.reviews-dark-text-card:last-child {
  border-right: none;
}

.reviews-dark-text-card-message {
  margin: 0 0 24px;
  color: #fff;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 700;
}

.reviews-dark-text-card-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reviews-dark-text-card-author-avatar {
  width: 82px;
  height: 82px;
  background: #111;
  overflow: hidden;
  flex-shrink: 0;
}

.reviews-dark-text-card-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviews-dark-text-card-author-name {
  color: #fff;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 900;
}

.reviews-dark-video-title {
  margin: 0 0 34px;
  text-align: center;
  font-size: 58px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #fff;
}

.reviews-dark-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.reviews-dark-video-card {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  background: #e9e9e9;
  aspect-ratio: 0.78 / 1;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.reviews-dark-video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.08);
}

.reviews-dark-video-card-poster {
  width: 100%;
  height: 100%;
}

.reviews-dark-video-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviews-dark-video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.reviews-dark-video-card-play-button {
  display: none !important;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02) 40%),
    rgba(5, 10, 18, 0.66);
  color: #fff;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.36),
    0 0 0 2px rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews-dark-video-card-play-button span {
  font-size: 29px;
  line-height: 1;
  margin-left: 4px;
}

.reviews-dark-video-card:hover .reviews-dark-video-card-play-button {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.42),
    0 0 0 2px rgba(47, 164, 255, 0.2) inset;
}

/* =========================
   Анімація появи відгуків
========================= */

.reveal-reviews-item {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-reviews-item.show {
  opacity: 1;
  transform: translateY(0);
}

.reviews-dark-text-grid .reveal-reviews-item:nth-child(1) {
  transition-delay: 0.08s;
}
.reviews-dark-text-grid .reveal-reviews-item:nth-child(2) {
  transition-delay: 0.16s;
}
.reviews-dark-text-grid .reveal-reviews-item:nth-child(3) {
  transition-delay: 0.24s;
}

.reviews-dark-video-grid .reveal-reviews-item:nth-child(1) {
  transition-delay: 0.08s;
}
.reviews-dark-video-grid .reveal-reviews-item:nth-child(2) {
  transition-delay: 0.16s;
}
.reviews-dark-video-grid .reveal-reviews-item:nth-child(3) {
  transition-delay: 0.24s;
}
.reviews-dark-video-grid .reveal-reviews-item:nth-child(4) {
  transition-delay: 0.32s;
}

/* =========================
   Адаптація для планшетів
========================= */

@media (max-width: 1100px) {
  .reviews-main-title,
  .reviews-dark-video-title {
    font-size: 46px;
  }

  .reviews-dark-text-card {
    padding: 20px;
    min-height: 340px;
  }

  .reviews-dark-text-card-message {
    font-size: 16px;
    line-height: 1.3;
  }

  .reviews-dark-text-card-author-name {
    font-size: 18px;
  }

  .reviews-dark-video-grid {
    gap: 22px;
  }
}

@media (max-width: 900px) {
  .reviews-dark-text-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reviews-dark-text-card {
    min-height: auto;
    padding: 18px;
    border-right: none;
    border-bottom: none;
  }

  .reviews-dark-text-card:last-child {
    padding-bottom: 18px;
  }

  .reviews-dark-video-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .reviews-dark-video-card {
    aspect-ratio: 0.72 / 1;
  }
}

/* =========================
   Адаптація для мобільних
========================= */

@media (max-width: 767px) {
  .reviews-title-section {
    padding: 56px 0 18px;
  }

  .reviews-main-title,
  .reviews-dark-video-title {
    font-size: 34px;
    margin-bottom: 22px;
  }

  .reviews-dark-inner {
    padding: 34px 0 52px;
  }

  .reviews-dark-text-grid {
    gap: 22px;
    margin-bottom: 40px;
  }

  .reviews-dark-text-card {
    padding: 16px;
    border-radius: 16px;
  }

  .reviews-dark-text-card-message {
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 14px;
  }

  .reviews-dark-text-card-author {
    gap: 12px;
  }

  .reviews-dark-text-card-author-avatar {
    width: 64px;
    height: 64px;
  }

  .reviews-dark-text-card-author-name {
    font-size: 15px;
  }

  .reviews-dark-video-grid {
    gap: 16px;
    max-width: 340px;
  }

  .reviews-dark-video-card {
    aspect-ratio: 0.74 / 1;
  }

  .reviews-dark-video-card-play-button {
    width: 60px;
    height: 60px;
  }

  .reviews-dark-video-card-play-button span {
    font-size: 24px;
    margin-left: 3px;
  }
}

@media (hover: none) {
  .reviews-dark-video-card:hover {
    transform: none;
    box-shadow: none;
  }

  .reviews-dark-video-card:hover .reviews-dark-video-card-play-button {
    transform: translate(-50%, -50%);
  }
}

.reviews-dark-section {
  position: relative;
  background: #000;
  overflow: hidden;
}

.reviews-dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 0;
}

.reviews-dark-inner,
.reviews-dark-section .container,
.reviews-main-title-white {
  position: relative;
  z-index: 1;
}

/* =========================
   Контактна форма
========================= */

.contact-card-section {
  padding: 90px 0;
  background: #000;
}

.contact-card-wrap {
  display: flex;
  justify-content: center;
}

.contact-card-form {
  width: 100%;
  max-width: 520px;
  background: #f3f3f3;
  border: 14px solid #e9e9e9;
  border-radius: 34px;
  padding: 46px 28px 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.contact-card-title {
  margin: 0 0 28px;
  text-align: center;
  font-size: 58px;
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.contact-pill {
  display: block;
  width: 100%;
  margin-bottom: 22px;
}

.contact-pill input,
.contact-pill textarea {
  width: 100%;
  border: 4px solid #000;
  border-radius: 999px;
  background: transparent;
  outline: none;
  box-shadow: none;

  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;

  padding: 0 42px;
}

.contact-pill input {
  min-height: 88px;
}

.contact-pill textarea {
  min-height: 88px;
  resize: none;
  border-radius: 44px;
  padding-top: 22px;
  padding-bottom: 18px;
  overflow: hidden;
}

.contact-pill input::placeholder,
.contact-pill textarea::placeholder {
  color: #000;
  opacity: 1;
}

.contact-pill input:focus,
.contact-pill textarea:focus {
  background: #fff;
}

.contact-card-divider {
  height: 4px;
  width: 100%;
  background: #000;
  margin: 28px 0 18px;
}

.contact-card-btn {
  width: 100%;
  min-height: 92px;
  border: none;
  border-radius: 999px;
  background: #000;
  color: #fff;
  cursor: pointer;

  font-family: Arial, sans-serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-card-btn:hover {
  opacity: 0.96;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.contact-card-btn:active {
  transform: translateY(0);
}

/* =========================
   Контактна форма Адаптація для мобільних
========================= */

@media (max-width: 768px) {
  .contact-card-section {
    padding: 56px 0;
  }

  .contact-card-form {
    max-width: 100%;
    border-width: 10px;
    border-radius: 28px;
    padding: 34px 16px 18px;
  }

  .contact-card-title {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .contact-pill {
    margin-bottom: 16px;
  }

  .contact-pill input,
  .contact-pill textarea {
    font-size: 14px;
    border-width: 3px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .contact-pill input {
    min-height: 58px;
  }

  .contact-pill textarea {
    min-height: 82px;
    padding-top: 16px;
    padding-bottom: 12px;
    border-radius: 28px;
  }

  .contact-card-divider {
    height: 3px;
    margin: 20px 0 14px;
  }

  .contact-card-btn {
    min-height: 62px;
    font-size: 24px;
  }
}

.contact-card-form {
  width: 100%;
  max-width: 420px; /* было 520 */
  background: #f3f3f3;
  border: 10px solid #e9e9e9; /* было 14 */
  border-radius: 28px;
  padding: 34px 22px 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.contact-card-title {
  margin: 0 0 20px;
  font-size: 42px; /* было 58 */
}

.contact-pill input,
.contact-pill textarea {
  font-size: 16px; /* было 20 */
  padding: 0 28px;
  border-width: 3px;
}

.contact-pill input {
  min-height: 64px; /* было 88 */
}

.contact-pill textarea {
  min-height: 72px;
  padding-top: 16px;
  padding-bottom: 12px;
}

.contact-card-divider {
  height: 3px;
  margin: 20px 0 14px;
}

.contact-card-btn {
  min-height: 64px; /* было 92 */
  font-size: 24px; /* было 38 */
}

/* =========================
   Анімація появи контактної форми
========================= */

.reveal-contact-section {
  opacity: 0;
  transform: translateY(80px) scale(0.96);
  transition:
    opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-contact-section.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-contact-section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================
   Слайдер креативів MKB
========================= */

.mkb-creatives-showcase {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.mkb-creatives-showcase__heading {
  text-align: center;
  font-size: 58px;
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 40px;
}

/* Плавна поява блоку */

.mkb-creatives-showcase--reveal {
  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.mkb-creatives-showcase--reveal.mkb-creatives-showcase--is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mkb-creatives-showcase--reveal .mkb-creatives-showcase__heading {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease 0.12s,
    transform 0.8s ease 0.12s;
}

.mkb-creatives-showcase--reveal .mkb-creatives-showcase__viewport {
  opacity: 0;
  transform: translateY(48px) scale(0.98);
  transition:
    opacity 1s ease 0.22s,
    transform 1s ease 0.22s;
}

.mkb-creatives-showcase--reveal.mkb-creatives-showcase--is-visible
  .mkb-creatives-showcase__heading,
.mkb-creatives-showcase--reveal.mkb-creatives-showcase--is-visible
  .mkb-creatives-showcase__viewport {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Область стрічки */

.mkb-creatives-showcase__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Плавні краї */
.mkb-creatives-showcase__viewport::before,
.mkb-creatives-showcase__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.mkb-creatives-showcase__viewport::before {
  left: 0;
  background: linear-gradient(
    to right,
    #f3f3f3 0%,
    rgba(243, 243, 243, 0) 100%
  );
}

.mkb-creatives-showcase__viewport::after {
  right: 0;
  background: linear-gradient(to left, #f3f3f3 0%, rgba(243, 243, 243, 0) 100%);
}

/* Сама рухома стрічка */

.mkb-creatives-showcase__scroller {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  animation: mkbCreativesAutoMarquee 28s linear infinite;
  will-change: transform;
}

@media (hover: none) and (pointer: coarse) {
  .mkb-creatives-showcase__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .mkb-creatives-showcase__viewport::-webkit-scrollbar {
    display: none;
  }

  .mkb-creatives-showcase__item {
    scroll-snap-align: start;
  }
}

@media (hover: hover) and (pointer: fine) {
  .mkb-creatives-showcase__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    cursor: grab;
    scrollbar-width: thin;
  }

  .mkb-creatives-showcase__viewport:active {
    cursor: grabbing;
  }

  .mkb-creatives-showcase__item {
    scroll-snap-align: start;
  }
}

.mkb-creatives-showcase__viewport.is-manual .mkb-creatives-showcase__scroller {
  animation-play-state: paused;
}

.mkb-creatives-showcase__item {
  flex: 0 0 auto;
  width: 240px;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.mkb-creatives-showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mkb-creatives-showcase__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.mkb-creatives-showcase__video {
  cursor: pointer;
}

.mkb-creatives-showcase__item:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.2);
}

@keyframes mkbCreativesAutoMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 9px));
  }
}

/* мобильная версия */

@media (max-width: 768px) {
  .mkb-creatives-showcase {
    padding: 56px 0;
  }

  .mkb-creatives-showcase__heading {
    font-size: 34px;
    margin-bottom: 24px;
  }

  .mkb-creatives-showcase__viewport::before,
  .mkb-creatives-showcase__viewport::after {
    width: 40px;
  }

  .mkb-creatives-showcase__scroller {
    gap: 12px;
    animation-duration: 20s;
  }

  .mkb-creatives-showcase__item {
    width: 160px;
    height: 300px;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mkb-creatives-showcase--reveal,
  .mkb-creatives-showcase--reveal .mkb-creatives-showcase__heading,
  .mkb-creatives-showcase--reveal .mkb-creatives-showcase__viewport {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .mkb-creatives-showcase__scroller {
    animation: none !important;
  }
}


/* =========================
   НОВА ШАПКА ПО РЕФЕРЕНСУ
========================= */

.nav-ref {
  gap: 16px;
  padding: 10px 18px;
  border: 1.5px solid #d6e1ef;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
}

.logo-ref {
  flex: 0 0 auto;
  margin-right: 0;
}

.logo-ref .floww {
  width: 120px;
  height: auto;
  padding-left: 0;
  display: block;
  filter: none;
}

.nav-divider {
  width: 1px;
  align-self: stretch;
  background: #e8e8e8;
  flex: 0 0 1px;
}

.nav-badge {
  max-width: 178px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
}

.nav-badge span {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f7f8fa 0%, #eef1f4 100%);
  border: 1px solid rgba(24, 31, 42, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 14px rgba(15, 20, 32, 0.08);
  color: #1f2a38;
}

.nav-social-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f3f3f3;
  border: 1.5px solid #e5e5e5;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-social-circle img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.nav-social-circle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.nav-social-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-social-text {
  font-size: 13px;
  line-height: 1.15;
  color: #5e6470;
  font-weight: 500;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f8fafc;
  color: #111;
  border: 1px solid #dbe3ef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-social-circle:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
}

.nav-contact-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 220px;
}

.nav-contact-caption {
  font-size: 12px;
  line-height: 1.1;
  color: #4f5a6d;
  font-weight: 600;
}

.nav-phone {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-btn-ref {
  background: #0f1114;
  color: #fff;
  padding: 0 20px;
  min-width: 246px;
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 800;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid #2fa4ff;
  box-shadow:
    0 0 0 2px rgba(47, 164, 255, 0.32),
    0 8px 18px rgba(23, 83, 170, 0.22);
  text-transform: none;
  line-height: 1;
  white-space: nowrap;
}

.nav-btn-ref::before {
  display: none;
}

.nav-btn-ref:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 3px rgba(47, 164, 255, 0.4),
    0 12px 24px rgba(23, 83, 170, 0.32);
}

.nav-menu-trigger {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  padding: 0;
  color: #2e2e2e;
}

.nav-menu-label {
  font-size: 12px;
  line-height: 1.05;
  color: #4f5560;
  text-align: right;
  font-weight: 500;
}

.nav-menu-burger {
  width: 26px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.nav-menu-burger span {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 999px;
  background: #222;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
}

.site-menu.is-open {
  display: block;
}

.site-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 16, 0.5);
  backdrop-filter: blur(3px);
}

.site-menu__panel {
  position: absolute;
  top: 14px;
  right: 14px;
  width: min(360px, calc(100% - 28px));
  max-height: calc(100% - 28px);
  overflow-y: auto;
  border-radius: 26px;
  padding: 20px 18px 18px;
  background: #ffffff;
  border: 1px solid rgba(20, 26, 36, 0.12);
  box-shadow:
    0 24px 54px rgba(7, 19, 38, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  opacity: 0;
  transform: translateX(12px) scale(0.985);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.site-menu.is-open .site-menu__panel {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.site-menu__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(18, 30, 52, 0.14);
  border-radius: 12px;
  background: #fff;
  color: #1a2230;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-menu__close:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 164, 255, 0.35);
  box-shadow: 0 8px 14px rgba(16, 34, 66, 0.14);
}

.site-menu__caption {
  margin: 0 44px 16px 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a8698;
}

.site-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-menu__link {
  display: block;
  position: relative;
  text-decoration: none;
  color: #0f1420;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  padding: 14px 44px 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  border: 1px solid rgba(18, 30, 52, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-menu__link::after {
  content: "→";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 900;
  color: #7a8698;
  transition: transform 0.2s ease, color 0.2s ease;
}

.site-menu__link:hover {
  transform: translateX(2px);
  border-color: rgba(47, 164, 255, 0.35);
  box-shadow: 0 10px 20px rgba(21, 53, 100, 0.12);
}

.site-menu__link:hover::after {
  transform: translate(3px, -50%);
  color: #2fa4ff;
}

.site-menu__actions {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-menu__btn {
  min-height: 50px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.site-menu__btn--primary {
  background: linear-gradient(135deg, #35adff 0%, #1f92ed 100%);
  color: #fff;
  border: 1px solid #2998ee;
  box-shadow: 0 10px 20px rgba(31, 146, 237, 0.28);
}

.site-menu__btn--ghost {
  background: #fff;
  color: #0f1420;
  border: 2px solid rgba(15, 20, 32, 0.9);
}

.site-menu__btn:hover {
  transform: translateY(-1px);
}

@media (min-width: 769px) {
  .site-menu {
    pointer-events: none;
  }

  .site-menu__backdrop {
    display: none;
  }

  .site-menu__panel {
    pointer-events: auto;
    top: 92px;
    right: 22px;
    width: min(390px, calc(100% - 44px));
    max-height: calc(100vh - 114px);
    border-radius: 28px;
    padding: 22px 18px 18px;
    background:
      radial-gradient(circle at 86% 8%, rgba(47, 164, 255, 0.1), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
    border: 1px solid rgba(47, 164, 255, 0.18);
    box-shadow:
      0 24px 62px rgba(11, 34, 69, 0.24),
      0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    transform: translateX(12px) scale(0.985);
  }

  .site-menu.is-open .site-menu__panel {
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 768px) {
  .site-menu__panel {
    top: 10px;
    right: 10px;
    width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    border-radius: 20px;
    padding: 18px 14px 14px;
    overflow-x: hidden;
  }

  .site-menu__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 22px;
    line-height: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  .site-menu__close:hover {
    transform: none;
  }

  .site-menu__caption {
    font-size: 11px;
    margin: 0 46px 10px 2px;
  }

  .site-menu__link {
    font-size: 16px;
    padding: 12px 38px 12px 12px;
  }

  .site-menu__btn {
    min-height: 46px;
    font-size: 15px;
  }
}

@media (max-width: 1280px) {
  .nav-ref {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 36px;
  }

  .nav-divider {
    display: none;
  }

  .nav-badge,
  .nav-social-block,
  .nav-contact-block {
    text-align: center;
  }

  .nav-contact-block {
    min-width: 0;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .nav-ref {
    padding: 16px;
    gap: 14px;
    border-radius: 28px;
    align-items: flex-start;
  }

  .logo-ref {
    width: 100%;
  }

  .logo-ref .floww {
    width: 112px;
  }

  .nav-badge,
  .nav-social-block,
  .nav-contact-block {
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    text-align: left;
  }

  .nav-social-block {
    flex-wrap: wrap;
  }

  .nav-social-text {
    width: calc(100% - 108px);
  }

  .nav-btn-ref,
  .nav-menu-trigger {
    width: 100%;
  }

  .nav-btn-ref {
    min-height: 60px;
    padding: 16px 18px;
    font-size: 15px;
  }

  .nav-menu-trigger {
    justify-content: space-between;
    padding-top: 2px;
  }

  .nav-menu-label {
    order: 1;
    text-align: left;
  }

  .nav-menu-burger {
    order: 2;
  }
}


/* =========================
   MODERN CONTACT FORM
========================= */

.contact-card-section {
  padding: 90px 0 40px;
  background:
    radial-gradient(circle at 20% 20%, rgba(47, 164, 255, 0.16), transparent 32%),
    radial-gradient(circle at 80% 100%, rgba(0, 255, 163, 0.10), transparent 28%),
    #050505;
}

.contact-card-wrap {
  display: flex;
  justify-content: center;
}

.contact-card-form--modern {
  position: relative;
  width: 100%;
  max-width: 980px;
  padding: 38px 38px 34px;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.98) 0%, rgba(4,4,4,1) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 34px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(47,164,255,0.06) inset,
    0 0 40px rgba(47,164,255,0.10);
}

.contact-card-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.9;
}

.contact-card-title--modern {
  margin: 0 0 28px;
  text-align: left;
  font-size: 58px;
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: none;
  color: #fff;
}

.contact-modern-field {
  display: block;
  margin-bottom: 24px;
}

.contact-modern-label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  font-weight: 700;
}

.contact-modern-field input,
.contact-modern-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 26px;
  background: rgba(255,255,255,0.22);
  color: #fff;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.contact-modern-field input {
  min-height: 82px;
  padding: 0 28px;
}

.contact-modern-field textarea {
  min-height: 210px;
  resize: vertical;
  padding: 24px 28px;
}

.contact-modern-field input::placeholder,
.contact-modern-field textarea::placeholder {
  color: rgba(255,255,255,0.58);
}

.contact-modern-field input:focus,
.contact-modern-field textarea:focus {
  border-color: rgba(47,164,255,0.9);
  background: rgba(255,255,255,0.18);
  box-shadow:
    0 0 0 4px rgba(47,164,255,0.14),
    0 0 24px rgba(47,164,255,0.18);
}

.contact-modern-submit {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.contact-modern-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.contact-modern-btn span:first-child {
  min-width: 350px;
  min-height: 110px;
  padding: 0 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #49ff14 0%, #30f15d 100%);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  box-shadow:
    0 0 30px rgba(73,255,20,0.28),
    0 18px 35px rgba(0,0,0,0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-modern-btn-arrow {
  width: 110px;
  height: 110px;
  margin-left: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #30ffd1 0%, #32f36a 100%);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 900;
  box-shadow:
    0 0 30px rgba(48,255,209,0.25),
    0 18px 35px rgba(0,0,0,0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-modern-btn:hover span:first-child,
.contact-modern-btn:hover .contact-modern-btn-arrow {
  transform: translateY(-3px);
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #050505;
  padding: 0 0 36px;
  color: #fff;
}

.site-footer .container {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 34px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.site-footer-logo {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}

.site-footer-logo span {
  color: #2FA4FF;
}

.site-footer-text {
  max-width: 340px;
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  line-height: 1.45;
}

.site-footer-title {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.site-footer-menu,
.site-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer-menu a,
.site-footer-contact a {
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  transition: color 0.25s ease;
}

.site-footer-menu a:hover,
.site-footer-contact a:hover {
  color: #2FA4FF;
}

.site-footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.site-footer-socials a {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(47,164,255,0.22);
  background: rgba(47,164,255,0.08);
  color: #fff;
}

.site-footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.48);
  font-size: 14px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .contact-card-section {
    padding: 56px 0 24px;
  }

  .contact-card-form--modern {
    padding: 26px 16px 24px;
    border-radius: 24px;
  }

  .contact-card-close {
    top: 10px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 34px;
  }

  .contact-card-title--modern {
    font-size: 34px;
    margin-bottom: 20px;
    padding-right: 36px;
  }

  .contact-modern-label {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .contact-modern-field {
    margin-bottom: 16px;
  }

  .contact-modern-field input,
  .contact-modern-field textarea {
    font-size: 15px;
    border-radius: 18px;
  }

  .contact-modern-field input {
    min-height: 58px;
    padding: 0 18px;
  }

  .contact-modern-field textarea {
    min-height: 140px;
    padding: 16px 18px;
  }

  .contact-modern-submit {
    margin-top: 2px;
  }

  .contact-modern-btn span:first-child {
    min-width: 220px;
    min-height: 76px;
    padding: 0 22px;
    font-size: 20px;
  }

  .contact-modern-btn-arrow {
    width: 76px;
    height: 76px;
    font-size: 34px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer-logo {
    font-size: 34px;
  }

  .site-footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* =========================
   CONTACT CTA — REF STYLE
========================= */

.contact-cta-section {
  padding: 80px 0 24px;
  background: #f3f3f3;
}

.contact-cta-section .container {
  max-width: 100%;
  padding: 0 22px;
}

.contact-cta-box {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(96deg, #2b79f0 0%, #2669dc 38%, #1d4ca6 100%);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  padding: 38px 34px 28px;
  box-shadow: 0 22px 48px rgba(23, 64, 141, 0.28);
}

/* мягкие пятна как на рефе */
.contact-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 35%, rgba(255,255,255,0.06), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.10), transparent 18%),
    radial-gradient(circle at 74% 64%, rgba(255,255,255,0.05), transparent 22%);
  pointer-events: none;
}

.contact-cta-box::after {
  content: "";
  position: absolute;
  left: 38%;
  bottom: -22%;
  width: 460px;
  height: 620px;
  border-radius: 48% 52% 42% 58%;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(10, 22, 58, 0.2), rgba(10, 22, 58, 0.52));
  filter: blur(1px);
  opacity: 0.32;
  pointer-events: none;
}

.contact-cta-left,
.contact-cta-right {
  position: relative;
  z-index: 1;
}

.contact-cta-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 560px;
}

.contact-cta-title {
  margin: 0 0 24px;
  color: #fff;
  font-size: 52px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.contact-cta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 470px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-cta-list li {
  position: relative;
  padding-left: 30px;
  color: #fff;
  font-size: 15px;
  line-height: 1.27;
  font-weight: 600;
}

.contact-cta-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(255,255,255,0.95);
  color: #2a67d4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.contact-cta-brand {
  display: inline-block;
  margin-top: auto;
  padding-top: 26px;
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.5px;
}

.contact-cta-brand span {
  font-weight: 500;
  opacity: 0.85;
}

/* правая колонка */
.contact-cta-right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
}

.contact-cta-formbox {
  width: 100%;
  max-width: 400px;
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.contact-cta-formtitle {
  margin: 0 0 8px;
  color: #fff;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
}

.contact-cta-formtext {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.92);
  font-size: 20px;
  line-height: 1.35;
  max-width: 330px;
}

.contact-cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-cta-form input {
  width: 100%;
  height: 60px;
  border: none;
  outline: none;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.30);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-cta-form input::placeholder {
  color: rgba(255,255,255,0.88);
}

.contact-cta-form input:focus {
  background: rgba(255,255,255,0.4);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.24);
}

.contact-cta-btn {
  margin-top: 2px;
  height: 62px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.contact-cta-btn .btn-arrow-icon {
  width: 10px;
  height: 10px;
  margin-left: 6px;
}

.contact-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

/* footer после блока */
.site-footer {
  background: #f3f3f3;
  padding: 34px 0 40px;
}

.site-footer .container {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 26px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.site-footer-logo {
  text-decoration: none;
  color: #111;
  font-size: 36px;
  font-weight: 300;
}

.site-footer-logo span {
  font-weight: 600;
}

.site-footer-text,
.site-footer-menu a,
.site-footer-contact a,
.site-footer-bottom {
  color: rgba(0,0,0,0.62);
}

.site-footer-menu,
.site-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer-menu a,
.site-footer-contact a {
  text-decoration: none;
  font-size: 15px;
}

.site-footer-title {
  margin: 0 0 10px;
  font-size: 16px;
  color: #111;
  font-weight: 800;
}

.site-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.site-footer-socials a {
  text-decoration: none;
  color: #fff;
  background: #19876d;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.site-footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
}

.mobile-section-cta {
  display: none;
}

/* =========================
   LEAD FORM MODAL
========================= */

.lead-form-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.lead-form-modal.is-open {
  display: flex;
}

.lead-form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 18, 0.7);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.lead-form-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: min(88vh, 680px);
  overflow-y: auto;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #07090e;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(72, 255, 48, 0.1) inset;
  padding: 24px 22px 20px;
  z-index: 1;
}

.lead-form-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.88;
}

.lead-form-modal__title {
  color: #fff;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  margin: 0 36px 14px 0;
}

.lead-form-modal__label {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 22px;
  line-height: 1.1;
  margin: 0 0 8px;
  font-weight: 600;
}

.lead-form-modal__input,
.lead-form-modal__textarea {
  width: 100%;
  border: 1px solid #5a5d63;
  background: #3c3e44;
  color: #fff;
  border-radius: 20px;
  padding: 0 20px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 500;
  outline: none;
  margin-bottom: 16px;
}

.lead-form-modal__input {
  min-height: 64px;
}

.lead-form-modal__textarea {
  min-height: 160px;
  padding-top: 14px;
  padding-bottom: 12px;
  resize: vertical;
}

.lead-form-modal__input::placeholder,
.lead-form-modal__textarea::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

.lead-form-modal__input:focus,
.lead-form-modal__textarea:focus {
  border-color: #2fa4ff;
  box-shadow: 0 0 0 3px rgba(47, 164, 255, 0.18);
}

.lead-form-modal__actions {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lead-form-modal__submit {
  flex: 1;
  min-height: 62px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #2fa4ff 0%, #148bff 100%);
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  cursor: pointer;
  box-shadow:
    0 0 24px rgba(47, 164, 255, 0.26),
    0 14px 30px rgba(0, 0, 0, 0.36);
}

.lead-form-modal__arrow {
  width: 62px;
  height: 62px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #2fa4ff 0%, #148bff 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 0 18px rgba(47, 164, 255, 0.24),
    0 10px 24px rgba(0, 0, 0, 0.36);
}

.lead-form-modal__arrow .btn-arrow-icon {
  width: 13px;
  height: 13px;
  margin-left: 0;
  border-width: 3px;
  transform: rotate(45deg) translate(-1px, 0);
}

.creative-video-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.creative-video-modal.is-open {
  display: flex;
}

.creative-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 18, 0.78);
  backdrop-filter: blur(3px);
}

.creative-video-modal__dialog {
  position: relative;
  width: min(900px, 100%);
  border-radius: 20px;
  background: #05070b;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px;
  z-index: 1;
}

.creative-video-modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.creative-video-modal__player {
  width: 100%;
  max-height: 76vh;
  border-radius: 14px;
  background: #000;
}

@media (max-width: 1200px) {
  .contact-cta-box {
    grid-template-columns: 1fr 1fr;
  }
}

/* mobile */
@media (max-width: 900px) {
  .contact-cta-section .container {
    padding: 0 14px;
  }

  .contact-cta-box {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 26px 18px 22px;
    gap: 24px;
    border-radius: 24px;
  }

  .contact-cta-title {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .contact-cta-list {
    max-width: 100%;
  }

  .contact-cta-right {
    justify-content: flex-start;
    padding-top: 0;
  }

  .contact-cta-formbox {
    max-width: 100%;
    padding: 18px 14px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-logo {
    font-size: 30px;
  }

  .site-footer-bottom {
    flex-direction: column;
  }

  .lead-form-modal__dialog {
    max-width: 100%;
    border-radius: 20px;
    padding: 18px 14px 16px;
  }

  .lead-form-modal__title {
    font-size: 32px;
    margin-right: 34px;
  }

  .lead-form-modal__label {
    font-size: 18px;
  }

  .lead-form-modal__input {
    min-height: 62px;
  }

  .lead-form-modal__input,
  .lead-form-modal__textarea {
    font-size: 18px;
    border-radius: 14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .lead-form-modal__textarea {
    min-height: 140px;
    padding-top: 12px;
  }

  .lead-form-modal__submit {
    min-height: 54px;
    font-size: 20px;
  }

  .lead-form-modal__arrow {
    width: 54px;
    height: 54px;
    font-size: 26px;
  }
}


