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

/* Анимация появления секций */
section {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

section.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Исключаем intro секцию из анимации */
section.intro {
  opacity: 1;
  transform: none;
}

.hero-cases {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 40%, #eef2ff 100%);
  border-radius: 20px;
  padding: clamp(6px, 1vw, 10px);
  margin-bottom: clamp(8px, 1.5vw, 14px);
}

.hero-cases__cards {
  display: flex;
  gap: clamp(16px, 2.4vw, 22px);
}

.hero-cases__card {
  flex: 1 1 0;
  border-radius: 16px;
  padding: clamp(16px, 2.2vw, 20px);
  border: 1px solid #16a34a;
  background: #ffffff;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  position: relative;
}

.hero-cases__card--primary {
  box-shadow: 0 10px 26px rgba(22, 163, 74, 0.18);
}

.hero-cases__text {
  margin: 0;
  font-size: clamp(14px, 1.9vw, 16px);
  color: var(--ink);
  line-height: 1.6;
}

.hero-cases__money {
  color: #16a34a;
  font-weight: 700;
}

.hero-cases__company {
  font-weight: 800;
  color: #111827;
}

@media (max-width: 768px) {
  .hero-cases__cards {
    flex-direction: column;
  }

  .hero-cases__card {
    opacity: 0;
    transform: translateX(0);
    animation-duration: 0.9s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: forwards;
  }

  .hero-cases__card:first-child {
    animation-name: heroCaseInLeft;
    animation-delay: 0.2s;
  }

  .hero-cases__card:last-child {
    animation-name: heroCaseInRight;
    animation-delay: 0.45s;
  }
}

@keyframes heroCaseInLeft {
  0% {
    opacity: 0;
    transform: translateX(-24px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroCaseInRight {
  0% {
    opacity: 0;
    transform: translateX(24px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(80px, 12vw, 100px);
}

html:focus-within {
  scroll-behavior: smooth;
}

:root {
  --ink: #0d0f14;
  --muted: #606777;
  --line: #e9edf4;
  --paper: #fff;
  --bg: #f6f7fb;
  --brand: #2a37b6;
  --brand-2: #5f7bff;
  --primary: #2a37b6;
  --primary-700: #1f2a8f;
  --grad: linear-gradient(135deg, #2a37b6 0%, #4c6dff 45%, #7fb1ff 100%);
  --dark: #0f1218;
  --container: min(1240px, 92vw);
  --s1: 8px;
  --s2: 12px;
  --s3: 16px;
  --s4: 20px;
  --s5: 24px;
  --s6: 32px;
  --s7: 40px;
  --s8: 48px;
  --s9: 64px;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Ubuntu,
    Cantarell,
    'Noto Sans',
    'Helvetica Neue',
    Arial;
  line-height: 1.5;
  color: #0e0f12;
  background: #f3f4f6;
  overflow-x: hidden;
}

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

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

ul {
  padding-left: 20px;
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s6);
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(26px, 3.3vw, 36px);
  line-height: 1.15;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  background: var(--grad);
  color: #fff;
  border: none;
  box-shadow: 0 6px 18px rgba(44, 77, 255, 0.25);
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  filter: brightness(0.98);
  transform: scale(1.035);
}

.btn-ghost {
  border: 2px solid var(--brand);
  background: #fff;
  color: var(--brand);
  box-shadow:
    0 3px 12px rgba(42, 55, 182, 0.12),
    0 1px 4px rgba(42, 55, 182, 0.08);
  white-space: nowrap;
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 700;
  padding: 0 clamp(18px, 2.2vw, 22px);
  height: clamp(44px, 5vw, 48px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 55, 182, 0.08) 0%,
    rgba(95, 123, 255, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-ghost:hover {
  background: linear-gradient(135deg, #f6f8ff 0%, #ffffff 100%);
  box-shadow:
    0 5px 20px rgba(42, 55, 182, 0.2),
    0 2px 10px rgba(42, 55, 182, 0.15);
  transform: translateY(-2px);
  border-color: var(--brand-2);
}

.btn-ghost:hover::before {
  opacity: 1;
}

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

.btn-dark {
  background: linear-gradient(135deg, #0f1218 0%, #1a1d26 100%);
  color: #fff;
  font-size: clamp(14px, 1.8vw, 16px);
  padding: 0 clamp(22px, 2.8vw, 30px);
  height: clamp(44px, 5vw, 48px);
  font-weight: 700;
  box-shadow:
    0 4px 18px rgba(15, 18, 24, 0.3),
    0 2px 8px rgba(15, 18, 24, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-dark:hover {
  background: linear-gradient(135deg, #1a1d26 0%, #252932 100%);
  box-shadow:
    0 6px 24px rgba(15, 18, 24, 0.4),
    0 3px 12px rgba(15, 18, 24, 0.25);
  transform: translateY(-2px);
}

.btn-dark:hover::before {
  opacity: 1;
}

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

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
  animation: phoneVibrate 1s ease-in-out infinite;
}

.btn--whatsapp:hover {
  background: #20ba5a;
  filter: brightness(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  animation: none;
}

@keyframes phoneVibrate {
  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(-1px) rotate(-0.3deg);
  }
  50% {
    transform: translateX(1px) rotate(0.3deg);
  }
  75% {
    transform: translateX(-0.5px) rotate(-0.2deg);
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233, 237, 244, 0.8);
  box-shadow:
    0 4px 24px rgba(42, 55, 182, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Отступ для прокрутки к якорям с учетом фиксированного header */
section[id],
[id] {
  scroll-margin-top: clamp(80px, 12vw, 100px);
}

header.scrolled {
  box-shadow:
    0 6px 32px rgba(42, 55, 182, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.99);
  border-bottom-color: rgba(233, 237, 244, 1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: clamp(16px, 2.5vw, 20px);
  position: relative;
  gap: clamp(16px, 3vw, 40px);
  min-height: 64px;
}

@media (max-width: 768px) {
  .nav {
    padding-block: clamp(14px, 3vw, 18px);
    gap: clamp(12px, 2vw, 16px);
    min-height: 60px;
  }
}

.nav__brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .nav__brand {
    display: none;
  }
}

.nav__logo {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 900;
  color: var(--ink);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.02em;
  position: relative;
  line-height: 1.2;
}

.nav__logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

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

.nav__logo:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav__links {
  display: none;
  gap: clamp(16px, 2.5vw, 24px);
  align-items: center;
  flex: 1;
  justify-content: center;
}

@media (min-width: 960px) {
  .nav__links {
    display: flex;
  }
}

.nav__links a {
  color: var(--ink);
  font-weight: 600;
  font-size: clamp(14px, 1.6vw, 16px);
  padding: clamp(10px, 1.5vw, 12px) clamp(14px, 2vw, 18px);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.nav__links a::before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__links a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 55, 182, 0.08) 0%,
    rgba(95, 123, 255, 0.05) 100%
  );
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.nav__links a:hover {
  color: var(--brand);
  transform: translateY(-1px);
}

.nav__links a:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.nav__links a:hover::after {
  opacity: 1;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 14px);
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .nav__right {
    gap: clamp(8px, 2vw, 12px);
  }
}

.trust {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: var(--s9);
}

.trust__header {
  text-align: center;
  margin-bottom: var(--s7);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.trust__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--s2);
  line-height: 1.2;
}

.trust__subtitle {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.trust__row {
  display: grid;
  gap: var(--s4);
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-items: center;
}

@media (min-width: 640px) {
  .trust__row {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }
}

@media (min-width: 1000px) {
  .trust__row {
    grid-template-columns: repeat(6, 1fr);
    justify-items: center;
  }
}

.trust__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s3);
  height: 100%;
}

.trust__logo img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

.trust__logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 639px) {
  .trust__logo img {
    filter: grayscale(0%);
    opacity: 1;
  }

  .trust__row {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}

.why {
  background: linear-gradient(180deg, #0f1218 0%, #1a1d26 100%);
  color: #fff;
  padding-block: var(--s9);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .why .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-inline: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

.why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(42, 55, 182, 0.5),
    transparent
  );
}

.why__intro {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 56px);
  position: relative;
}

.why__intro-text {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .why__intro-text {
    font-size: clamp(20px, 5vw, 26px);
    line-height: 1.4;
  }
}

.why__content {
  max-width: 1100px;
  margin: 0 auto clamp(48px, 7vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 28px);
}

@media (min-width: 900px) {
  .why__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why__content-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 32px);
  position: relative;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 768px) {
  .why__content-card {
    padding: clamp(20px, 4vw, 28px);
    border-radius: 16px;
  }
}

.why__content-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.why__content-card--left {
  border-left: 3px solid rgba(255, 107, 107, 0.5);
}

.why__content-card--right {
  border-left: 3px solid rgba(37, 211, 102, 0.5);
}

.why__content-icon {
  font-size: clamp(32px, 5vw, 40px);
  margin-bottom: clamp(16px, 2.5vw, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.why__paragraph {
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: left;
  width: 100%;
}

@media (max-width: 768px) {
  .why__paragraph {
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.6;
  }
}

.why__title-wrapper {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 56px);
  position: relative;
}

.why__title {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 900;
  margin: 0 0 clamp(16px, 2.5vw, 24px);
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .why__title {
    font-size: clamp(26px, 5.5vw, 34px);
    margin-bottom: clamp(14px, 3vw, 20px);
  }
}

.why__title-decoration {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  margin: 0 auto;
  border-radius: 2px;
}

.why__list {
  display: grid;
  gap: clamp(18px, 2.8vw, 26px);
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .why__list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 28px);
  }
}

.why__list-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: clamp(24px, 3.5vw, 32px);
  display: flex;
  gap: clamp(16px, 2.5vw, 24px);
  align-items: center;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why__list-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why__list-item:hover::before {
  opacity: 1;
}

@media (max-width: 768px) {
  .why__list-item {
    padding: clamp(20px, 4vw, 26px);
    border-radius: 14px;
    gap: clamp(14px, 3vw, 20px);
  }
}

.why__list-item:hover {
  transform: translateY(-4px) translateX(4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(42, 55, 182, 0.15);
}

.why__list-number {
  flex-shrink: 0;
  width: clamp(44px, 6vw, 56px);
  height: clamp(44px, 6vw, 56px);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: clamp(18px, 2.8vw, 24px);
  color: #fff;
  box-shadow: 0 4px 16px rgba(42, 55, 182, 0.3);
}

@media (max-width: 768px) {
  .why__list-number {
    width: clamp(40px, 6vw, 48px);
    height: clamp(40px, 6vw, 48px);
    font-size: clamp(16px, 3.5vw, 20px);
    border-radius: 10px;
  }
}

.why__list-content {
  flex: 1;
}

.why__list-content p {
  margin: 0;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 768px) {
  .why__list-content p {
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.6;
  }
}

.cases {
  padding-block: clamp(40px, 5vw, 60px);
  background: #fff;
}

@media (max-width: 768px) {
  .cases .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-inline: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

.cases__section-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 clamp(32px, 5vw, 48px) 0;
  line-height: 1.2;
}

.cases__cards {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3.5vw, 32px);
}

.cases__card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: clamp(16px, 2.5vw, 24px);
  box-shadow: 0 4px 16px rgba(20, 30, 60, 0.06);
}

@media (max-width: 768px) {
  .cases__card {
    padding: clamp(14px, 3vw, 18px);
    border-radius: 12px;
  }
}

.cases__header {
  margin-bottom: clamp(12px, 2vw, 16px);
}

.cases__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: clamp(11px, 1.5vw, 13px);
  margin-bottom: clamp(8px, 1.5vw, 12px);
  box-shadow: 0 2px 8px rgba(42, 55, 182, 0.2);
}

.cases__title {
  margin: 0;
  color: var(--brand);
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.3;
}

.cases__content {
  color: var(--ink);
}

.cases__content p {
  margin: clamp(8px, 1.2vw, 12px) 0 clamp(4px, 0.8vw, 6px) 0;
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.6;
}

.cases__field {
  margin: clamp(10px, 1.5vw, 14px) 0 clamp(4px, 0.8vw, 6px) 0;
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.6;
}

.cases__field:first-child {
  margin-top: 0;
}

.cases__field strong {
  color: var(--brand);
  font-weight: 700;
}

.cases__subtitle {
  margin: clamp(10px, 1.5vw, 14px) 0 clamp(4px, 0.8vw, 6px) 0;
  font-size: clamp(16px, 2.3vw, 18px);
  font-weight: 700;
  color: var(--ink);
}

.cases__list {
  margin: clamp(6px, 1vw, 10px) 0;
  padding-left: 0;
  list-style: none;
}

.cases__list li {
  position: relative;
  margin-bottom: clamp(5px, 1vw, 8px);
  padding-left: clamp(20px, 2.5vw, 24px);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  color: var(--muted);
}

.cases__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 900;
  font-size: 1.1em;
}

.cases__list li:last-child {
  margin-bottom: 0;
}

/* ========== TRUST BLOCK ========== */
.trust-block {
  padding-block: clamp(50px, 6vw, 80px);
  background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
  position: relative;
}

@media (max-width: 768px) {
  .trust-block .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-inline: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

.trust-block__intro {
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 50px);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.trust-block__title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--brand);
  margin: 0 0 clamp(12px, 2vw, 20px) 0;
  line-height: 1.3;
}

.trust-block__subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  margin: 0 0 clamp(16px, 2.5vw, 24px) 0;
}

.trust-block__highlight {
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(135deg, #eef1ff 0%, #fff 100%);
  padding: clamp(16px, 2.5vw, 24px);
  border-radius: 16px;
  border: 2px solid var(--brand);
  margin: 0;
  line-height: 1.6;
}

.trust-block__result {
  max-width: 900px;
  margin: 0 auto clamp(40px, 5vw, 60px) auto;
  text-align: center;
  padding: clamp(20px, 3vw, 32px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(42, 55, 182, 0.1);
}

.trust-block__result p {
  margin: 0;
  font-size: clamp(16px, 2.3vw, 19px);
  line-height: 1.7;
  color: var(--ink);
}

.trust-block__result strong {
  color: var(--brand);
  font-weight: 800;
}

.trust-block__worries {
  margin-bottom: clamp(40px, 5vw, 60px);
}

.trust-block__worries-title {
  text-align: center;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 clamp(24px, 3.5vw, 36px) 0;
}

.trust-block__worry-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: clamp(18px, 3vw, 28px);
  margin-bottom: clamp(16px, 2.5vw, 24px);
  display: flex;
  gap: clamp(16px, 2.5vw, 24px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(20, 30, 60, 0.06);
}

.trust-block__worry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 55, 182, 0.12);
  border-color: var(--brand);
}

.trust-block__worry-card--main {
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  border-color: #ff6b6b;
  border-width: 2px;
}

.trust-block__worry-icon {
  font-size: clamp(32px, 5vw, 48px);
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.trust-block__worry-content {
  flex: 1;
}

.trust-block__worry-content h4 {
  margin: 0 0 clamp(10px, 1.5vw, 14px) 0;
  font-size: clamp(16px, 2.3vw, 20px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}

.trust-block__worry-content p {
  margin: 0 0 clamp(8px, 1.2vw, 12px) 0;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  color: var(--muted);
}

.trust-block__worry-question {
  margin: clamp(10px, 1.5vw, 14px) 0 0 0 !important;
  font-weight: 700 !important;
  color: var(--brand) !important;
  font-style: italic;
}

@media (max-width: 768px) {
  .trust-block__worry-card {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .trust-block__worry-icon {
    align-self: center;
    width: 100%;
    text-align: center;
  }
}

.trust-block__understanding {
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(40px, 5vw, 60px) auto;
  padding: clamp(24px, 3.5vw, 40px);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(42, 55, 182, 0.3);
}

.trust-block__understanding-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  margin: 0 0 clamp(16px, 2.5vw, 24px) 0;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.trust-block__understanding-text {
  font-size: clamp(16px, 2.3vw, 19px);
  margin: 0 0 clamp(12px, 2vw, 18px) 0;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  font-weight: 500;
}

.trust-block__understanding-bold {
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 700;
  margin: 0;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.trust-block__about {
  margin-bottom: clamp(40px, 5vw, 60px);
}

.trust-block__about-title {
  text-align: center;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 clamp(24px, 3.5vw, 36px) 0;
}

.trust-block__about-content {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: clamp(24px, 3.5vw, 40px);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(20, 30, 60, 0.08);
}

.trust-block__about-content p {
  margin: 0 0 clamp(14px, 2vw, 18px) 0;
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
  color: var(--ink);
}

.trust-block__about-content p:last-of-type {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.trust-block__about-content strong {
  color: var(--brand);
  font-weight: 800;
}

.trust-block__about-note {
  background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
  padding: clamp(16px, 2.5vw, 24px);
  border-radius: 12px;
  border-left: 4px solid var(--brand);
  margin-top: clamp(20px, 3vw, 28px);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  color: var(--ink);
}

.trust-block__about-note strong {
  color: var(--brand);
}

.trust-block__why {
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(40px, 5vw, 60px) auto;
}

.trust-block__why-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 clamp(16px, 2.5vw, 24px) 0;
}

.trust-block__why-text {
  font-size: clamp(16px, 2.3vw, 19px);
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 clamp(12px, 2vw, 16px) 0;
}

.trust-block__benefits {
  margin-bottom: clamp(40px, 5vw, 60px);
}

.trust-block__benefits-title {
  text-align: center;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 clamp(24px, 3.5vw, 36px) 0;
}

.trust-block__benefits-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: clamp(12px, 2vw, 16px);
}

.trust-block__benefit-item {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: clamp(16px, 2.5vw, 24px);
  display: flex;
  gap: clamp(12px, 2vw, 18px);
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(20, 30, 60, 0.04);
}

.trust-block__benefit-item:hover {
  transform: translateX(4px);
  border-color: var(--brand);
  box-shadow: 0 4px 16px rgba(42, 55, 182, 0.12);
}

.trust-block__benefit-num {
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 800;
  color: var(--brand);
  flex-shrink: 0;
  width: clamp(28px, 4vw, 36px);
  text-align: right;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.trust-block__benefit-text {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
}

.trust-block__benefits-result {
  max-width: 900px;
  margin: clamp(28px, 4vw, 40px) auto 0 auto;
  text-align: center;
  padding: clamp(20px, 3vw, 28px);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(42, 55, 182, 0.25);
}

.trust-block__benefits-result p {
  margin: 0;
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02em;
}

.trust-block__benefits-result p strong {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 800;
}

.trust-block__cta {
  max-width: 900px;
  margin: 0 auto clamp(40px, 5vw, 60px) auto;
  text-align: center;
  padding: clamp(28px, 4vw, 48px);
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
  border-radius: 20px;
  border: 2px solid var(--brand);
  box-shadow: 0 8px 24px rgba(42, 55, 182, 0.15);
}

.trust-block__cta-intro {
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 clamp(20px, 3vw, 28px) 0;
}

.trust-block__cta-title {
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 clamp(20px, 3vw, 28px) 0;
}

.trust-block__cta-list {
  text-align: left;
  max-width: 700px;
  margin: 0 auto clamp(28px, 4vw, 36px) auto;
  display: grid;
  gap: clamp(12px, 2vw, 16px);
}

.trust-block__cta-item {
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
  color: var(--ink);
  padding: clamp(12px, 2vw, 16px);
  background: #fff;
  border-radius: 10px;
  border-left: 3px solid var(--brand);
}

.trust-block__cta-text {
  font-size: clamp(16px, 2.3vw, 19px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 clamp(12px, 2vw, 16px) 0;
}

.trust-block__cta-description {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 clamp(24px, 3.5vw, 32px) 0;
}

.trust-block__cta-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0;
  font-size: clamp(16px, 2.5vw, 18px) !important;
  padding: clamp(16px, 2.5vw, 20px) clamp(36px, 6vw, 56px) !important;
  background: #25d366 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  text-align: center !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35) !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  animation: phoneVibrate 1.5s ease-in-out infinite !important;
  white-space: nowrap !important;
  width: auto !important;
}

.trust-block__cta-button:hover {
  background: #20ba5a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45) !important;
  animation: none !important;
}

.trust-block__cta-button:active {
  transform: translateY(0) !important;
}

.trust-block__note {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(20px, 3vw, 32px);
  background: linear-gradient(135deg, #fff8e1 0%, #fff 100%);
  border-radius: 16px;
  border: 2px solid #ffc107;
  box-shadow: 0 4px 16px rgba(255, 193, 7, 0.15);
}

.trust-block__note p {
  margin: 0 0 clamp(10px, 1.5vw, 14px) 0;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  color: var(--ink);
}

.trust-block__note p:last-child {
  margin-bottom: 0;
}

.trust-block__note strong {
  color: #f57c00;
  font-weight: 700;
}

.problems {
  padding-block: var(--s9);
  background: #fff;
  position: relative;
  z-index: 1;
}

.ps__tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  padding: clamp(16px, 2.5vw, 24px) clamp(16px, 3vw, 32px);
  margin: clamp(30px, 4vw, 50px) calc(-1 * clamp(16px, 3vw, 32px)) 0
    calc(-1 * clamp(16px, 3vw, 32px));
  box-shadow: 0 2px 8px rgba(20, 30, 60, 0.08);
  border-radius: 0 0 12px 12px;
}

@media (max-width: 768px) {
  .ps__tabs {
    padding: clamp(12px, 2vw, 16px) 16px;
    margin: clamp(24px, 3vw, 32px) -16px 0 -16px;
    top: 0;
  }
}

.btn-tab {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  color: var(--primary);
  cursor: pointer;
}

.btn-tab.active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

.ps__wrap {
  margin-top: var(--s7);
}

.ps__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ps__viewport {
  overflow: hidden;
  flex: 1;
  border-radius: 18px;
}

.ps__grid {
  display: grid;
  gap: var(--s6);
  transition: transform 0.45s ease;
  will-change: transform;
}

@media (min-width: 1024px) {
  .ps__grid {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    transform: none !important;
  }

  /* Центрируем третий блок (Проблема 3) для Jet Logistic */
  .ps__pair[data-case='jet']:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  /* Центрируем третий блок (Проблема 3) для MetallTrade - это 6-й элемент в общем списке */
  .ps__pair[data-case='metall']:nth-child(6) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .ps__carousel {
    display: block;
  }

  .ps__viewport {
    overflow: visible;
  }

  .ps__arrow {
    display: none;
  }

  .ps__dots {
    display: none;
  }
}

.ps__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--brand);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(20, 30, 60, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s ease;
  flex-shrink: 0;
}

.ps__arrow:hover {
  transform: translateY(-1px);
  background: var(--brand);
  color: #fff;
}

.ps__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.ps__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: #cfd6ea;
  cursor: pointer;
  transition: 0.2s ease;
  padding: 0;
}

.ps__dot--active {
  width: 14px;
  background: var(--brand);
}

.ps__pair {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  box-shadow: 0 10px 24px rgba(16, 20, 30, 0.08);
}

@media (min-width: 860px) {
  .ps__pair {
    grid-template-columns: 1fr 1fr;
  }
}

.ps__side {
  padding: clamp(28px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 220px;
  align-items: stretch;
}

.ps__side > * {
  width: 100%;
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 0;
}

/* Выравнивание контента в обеих колонках на одном уровне */
.ps__pair {
  display: grid;
  align-items: start;
}

/* Одинаковый padding в обеих колонках */
.ps__side--p,
.ps__side:not(.ps__side--p) {
  padding: clamp(28px, 4vw, 36px);
}

/* Убираем все лишние отступы сверху у первого элемента */
.ps__side > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.ps__side--p {
  background: #0f1218;
  color: #fff;
  border-right: 0;
}

/* Убеждаемся, что весь текст в черном блоке белый и читаемый */
.ps__side--p {
  color: #fff !important;
}

.ps__side--p * {
  color: inherit;
}

.ps__side--p .ps__title {
  color: #fff !important;
}

.ps__side--p .ps__title .pill {
  background: #2a3f5f !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ps__side--p .ps__title > span:last-child {
  color: #fff !important;
}

.ps__side--p ul {
  color: rgba(255, 255, 255, 0.98) !important;
}

.ps__side--p li {
  color: rgba(255, 255, 255, 0.98) !important;
}

.ps__side--p li::before {
  color: rgba(255, 255, 255, 0.95) !important;
}

.ps__side--p .ps__main-text {
  color: rgba(255, 255, 255, 0.98) !important;
}

.ps__side--p .ps__consequence {
  color: rgba(255, 255, 255, 0.98) !important;
  background: rgba(255, 255, 255, 0.08);
  border-left-color: #ff6b6b;
}

@media (min-width: 860px) {
  .ps__side--p {
    border-right: 1px solid #22293e;
  }
}

.ps__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.5vw, 14px);
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 800;
  margin: 0 0 clamp(20px, 3vw, 24px) 0;
  padding: 0;
  text-align: center;
  width: 100%;
  line-height: 1.3;
  height: auto;
  min-height: 0;
  justify-content: flex-start;
  flex-shrink: 0;
}

.ps__title .pill {
  margin: 0 auto 0 auto;
  order: 1;
  flex-shrink: 0;
}

.ps__title > span:last-child {
  width: 100%;
  white-space: normal;
  line-height: 1.5;
  text-align: center;
  font-size: clamp(15px, 2vw, 18px);
  order: 2;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.ps__side ul {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(18px, 2.8vw, 22px) 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.8vw, 16px);
}

.ps__side li {
  position: relative;
  padding-left: clamp(24px, 3.2vw, 32px);
  line-height: 1.65;
  font-size: clamp(14px, 1.9vw, 16px);
  width: 100%;
  display: block;
  text-align: left;
  margin: 0;
  padding-right: 0;
}

.ps__side li:last-child {
  margin-bottom: 0;
}

.ps__side li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(20px, 2.8vw, 24px);
  color: inherit;
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1.65;
  opacity: 0.85;
  text-align: left;
}

.ps__main-text {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  margin: 0 0 clamp(18px, 2.8vw, 22px) 0;
  padding: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: left;
}

.ps__side--p .ps__main-text {
  color: rgba(255, 255, 255, 0.95);
}

.ps__side .ps__main-text {
  color: var(--ink);
}

.ps__consequence {
  margin: clamp(6px, 1vw, 10px) 0 0 0;
  padding: clamp(18px, 2.8vw, 22px);
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid #ff6b6b;
  border-radius: 8px;
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.pill {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
}

.pill--p {
  background: #1b2238;
  color: #fff;
}

.pill--s {
  background: #eef1ff;
  color: var(--primary);
}

.ps__hide {
  display: none;
}

/* Строгий контроль отступов для ровного вида - убираем все лишние отступы */
.ps__side > *:first-child {
  margin-top: 0 !important;
}

.ps__side > .ps__title {
  margin-bottom: clamp(20px, 3vw, 24px) !important;
  margin-top: 0 !important;
}

.ps__side > .ps__main-text {
  margin-top: 0 !important;
  margin-bottom: clamp(18px, 2.8vw, 22px) !important;
}

.ps__side > ul {
  margin-top: 0 !important;
  margin-bottom: clamp(18px, 2.8vw, 22px) !important;
}

.ps__side > .ps__consequence {
  margin-top: clamp(6px, 1vw, 10px) !important;
  margin-bottom: 0 !important;
}

/* Когда заголовок без подзаголовка, сразу идет список */
.ps__side > .ps__title:not(:has(span:last-child)) + ul,
.ps__side > .ps__title:has(span:last-child:empty) + ul,
.ps__side > .ps__title:not(:has(span:last-child)) + .ps__main-text,
.ps__side > .ps__title:has(span:last-child:empty) + .ps__main-text {
  margin-top: 0 !important;
}

/* Убираем лишние отступы между элементами */
.ps__side > .ps__title + .ps__main-text {
  margin-top: 0 !important;
}

.ps__side > .ps__main-text + ul {
  margin-top: 0 !important;
}

/* Стили для блоков кейсов */
.case-project {
  margin-top: clamp(40px, 5vw, 60px);
}

.case-project--hidden {
  display: none;
}

.case-project__intro {
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 50px);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.case-project__case-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--brand);
  margin: 0 0 clamp(24px, 3.5vw, 36px) 0;
}

.case-project__before-after {
  display: grid;
  gap: clamp(16px, 2.5vw, 24px);
  margin-bottom: clamp(24px, 3.5vw, 32px);
  text-align: left;
}

.case-project__before,
.case-project__after {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: clamp(18px, 2.5vw, 24px);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.7;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(20, 30, 60, 0.06);
}

.case-project__before strong,
.case-project__after strong {
  color: var(--brand);
  font-weight: 800;
  display: block;
  margin-bottom: clamp(8px, 1.2vw, 12px);
}

.case-project__result {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border: none;
  border-radius: 16px;
  padding: clamp(18px, 2.5vw, 24px);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.7;
  color: #fff;
  box-shadow: 0 4px 16px rgba(42, 55, 182, 0.25);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.case-project__result strong {
  color: #fff;
  font-weight: 800;
  display: block;
  margin-bottom: clamp(8px, 1.2vw, 12px);
}

.case-project__carousel-hint {
  font-size: clamp(15px, 2.2vw, 17px);
  color: var(--muted);
  margin: clamp(20px, 3vw, 28px) 0 0 0;
  font-style: italic;
}

.case-project__final-result {
  padding: clamp(24px, 3.5vw, 36px);
  background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
  border-radius: 20px;
  border: 2px solid var(--brand);
  box-shadow: 0 6px 20px rgba(42, 55, 182, 0.15);
}

.case-project__final-result-title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: var(--brand);
  margin: 0 0 clamp(16px, 2.5vw, 24px) 0;
  text-align: center;
}

.case-project__final-result-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(10px, 1.5vw, 14px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.case-project__final-result-list li {
  position: relative;
  padding-left: clamp(24px, 3.5vw, 32px);
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
  color: var(--ink);
}

.case-project__final-result-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(20px, 3vw, 24px);
  height: clamp(20px, 3vw, 24px);
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(12px, 1.8vw, 14px);
}

.case-project__final-result p {
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
  text-align: center;
}

.case-project__results-cta {
  margin-top: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3.5vw, 32px);
}

.case-project__guarantee {
  padding: clamp(24px, 3.5vw, 36px);
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  border-radius: 20px;
  border: 2px solid #ff6b6b;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.15);
  text-align: center;
}

.case-project__guarantee-title {
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 800;
  color: #d63031;
  margin: 0 0 clamp(16px, 2.5vw, 24px) 0;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.case-project__guarantee-text {
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 clamp(14px, 2vw, 18px) 0;
  font-weight: 700;
}

.case-project__guarantee p {
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.case-project__cta-block {
  text-align: center;
  padding: clamp(28px, 4vw, 40px);
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
  border-radius: 20px;
  border: 2px solid var(--brand);
  box-shadow: 0 6px 20px rgba(42, 55, 182, 0.12);
}

.case-project__cta-intro {
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 clamp(14px, 2vw, 18px) 0;
  font-weight: 600;
}

.case-project__cta-main {
  font-size: clamp(17px, 2.4vw, 20px);
  line-height: 1.6;
  color: var(--brand);
  margin: 0 0 clamp(16px, 2.5vw, 24px) 0;
  font-weight: 700;
}

.case-project__cta-description {
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 clamp(24px, 3.5vw, 32px) 0;
}

.case-project__cta-button {
  margin: 0 auto;
  display: inline-flex;
}

.case-project__cta {
  margin-top: clamp(40px, 5vw, 60px);
  text-align: center;
  padding: clamp(28px, 4vw, 40px);
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
  border-radius: 20px;
  border: 2px solid var(--brand);
  box-shadow: 0 6px 20px rgba(42, 55, 182, 0.12);
}

.case-project__cta p {
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 clamp(16px, 2.5vw, 24px) 0;
}

.case-project__cta p:last-of-type {
  margin-bottom: clamp(24px, 3.5vw, 32px);
}

.case-project__cta-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0;
  font-size: clamp(16px, 2.5vw, 18px) !important;
  padding: clamp(16px, 2.5vw, 20px) clamp(36px, 6vw, 56px) !important;
  background: #25d366 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  text-align: center !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35) !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  animation: phoneVibrate 1.5s ease-in-out infinite !important;
  white-space: nowrap !important;
  width: auto !important;
}

.case-project__cta-button:hover {
  background: #20ba5a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45) !important;
  animation: none !important;
}

.case-project__cta-button:active {
  transform: translateY(0) !important;
}

.case-project--hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .problems .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-inline: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .case-project__before-after {
    text-align: center;
  }
}

.process {
  padding-top: 0;
  padding-bottom: clamp(60px, 8vw, 100px);
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
  position: relative;
}

.process h2 {
  color: var(--ink);
  font-weight: 800;
  margin-bottom: clamp(12px, 2vw, 16px);
}

.process p {
  color: var(--muted);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.6;
}

.steps {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  grid-template-columns: 1fr;
  max-width: 100%;
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }

  .step {
    align-self: start;
  }

  .step:nth-child(12) {
    grid-column: 2;
    max-width: 100%;
    margin: 0;
    justify-self: stretch;
  }
}

@media (max-width: 859px) {
  .process .container {
    padding-inline: clamp(16px, 4vw, 24px);
  }

  .steps {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.step {
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  align-self: start;
  height: fit-content;
  box-shadow:
    0 4px 20px rgba(20, 30, 60, 0.06),
    0 1px 3px rgba(20, 30, 60, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(42, 55, 182, 0.12),
    0 2px 8px rgba(42, 55, 182, 0.08);
  border-color: rgba(42, 55, 182, 0.3);
}

.step__header {
  display: flex;
  gap: clamp(12px, 2vw, 16px);
  align-items: center;
  padding: clamp(18px, 2.5vw, 24px);
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.step__header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 0 4px 4px 0;
}

.step__num {
  min-width: clamp(44px, 5vw, 52px);
  width: clamp(44px, 5vw, 52px);
  height: clamp(44px, 5vw, 52px);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: clamp(16px, 2.2vw, 20px);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(42, 55, 182, 0.25);
}

.step__text {
  flex: 1;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  min-width: 0;
}

.step__content {
  padding: clamp(20px, 3vw, 28px);
  background: #ffffff;
}

.step__content p {
  margin: 0 0 clamp(14px, 2vw, 18px) 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: clamp(15px, 2vw, 16px);
}

.step__content p:last-child {
  margin-bottom: 0;
}

.step__content p strong {
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(16px, 2.2vw, 17px);
  display: block;
  margin-bottom: clamp(10px, 1.5vw, 12px);
}

.step__content ul {
  margin: clamp(12px, 2vw, 16px) 0;
  padding-left: clamp(20px, 3vw, 24px);
  color: var(--muted);
}

.step__content li {
  margin-bottom: clamp(8px, 1.5vw, 10px);
  line-height: 1.7;
  font-size: clamp(15px, 2vw, 16px);
}

.step__content li:last-child {
  margin-bottom: 0;
}

.step__content li::marker {
  color: var(--brand);
}

@media (max-width: 859px) {
  .step__header {
    padding: clamp(16px, 3vw, 20px);
  }

  .step__num {
    min-width: 40px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .step__text {
    font-size: clamp(15px, 2.5vw, 17px);
  }

  .step__content {
    padding: clamp(18px, 3vw, 24px);
  }

  .step__content p {
    font-size: clamp(14px, 2.2vw, 15px);
    line-height: 1.65;
    margin-bottom: clamp(12px, 2vw, 16px);
  }

  .step__content p strong {
    font-size: clamp(15px, 2.2vw, 16px);
  }

  .step__content ul {
    margin: clamp(10px, 2vw, 14px) 0;
    padding-left: clamp(18px, 3vw, 22px);
  }

  .step__content li {
    font-size: clamp(14px, 2.2vw, 15px);
    margin-bottom: clamp(6px, 1.5vw, 8px);
  }
}

.fit {
  padding-block: var(--s9);
  background: #fff;
}

.fit__grid {
  display: grid;
  gap: var(--s6);
  grid-template-columns: 1fr;
}

@media (min-width: 1100px) {
  .fit__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.fit__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: var(--s7);
  box-shadow:
    0 4px 20px rgba(16, 20, 30, 0.08),
    0 1px 3px rgba(16, 20, 30, 0.04);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.fit__card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px rgba(16, 20, 30, 0.12),
    0 2px 6px rgba(16, 20, 30, 0.06);
}

.fit__card h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--s5);
  color: var(--ink);
}

.fit__card--accent {
  background: linear-gradient(180deg, #0f1218, #172033);
  color: #fff;
  border: 0;
}

.fit__card--accent h2 {
  color: #fff;
}

.fit__list {
  display: grid;
  gap: 14px;
  margin-top: 0;
  list-style: none;
  padding: 0;
}

.fit__list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
  font-size: 16px;
  color: var(--ink);
}

.fit__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: var(--grad);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.fit__card--accent .fit__list li {
  color: rgba(255, 255, 255, 0.95);
}

.fit__card--accent .fit__list li::before {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.fit__card p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.fit__card--accent p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .fit__card p,
  .fit__card--accent p {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 760px) {
  .fit .container {
    padding-inline: 0;
  }

  .fit__grid {
    padding-left: var(--s6);
    padding-right: var(--s6);
  }

  .fit__card {
    border-radius: 20px;
    padding: var(--s6);
  }

  .fit__card h2 {
    font-size: 24px;
    margin-bottom: var(--s4);
  }

  .fit__list {
    gap: 12px;
  }

  .fit__list li {
    font-size: 15px;
    padding-left: 26px;
    line-height: 1.5;
  }

  .fit__list li::before {
    width: 18px;
    height: 18px;
    font-size: 11px;
    top: 1px;
  }
}

/* ========== TIMELINE BENEFITS ========== */
.timeline-benefits {
  padding-block: clamp(50px, 6vw, 80px);
  background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
  position: relative;
}

@media (max-width: 768px) {
  .timeline-benefits .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-inline: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

.timeline-benefits__timeline {
  margin-bottom: clamp(50px, 6vw, 70px);
}

.timeline-benefits__timeline-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 clamp(30px, 4vw, 50px) 0;
}

.timeline-benefits__timeline-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 30px);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .timeline-benefits__timeline-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.timeline-benefits__timeline-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 3.5vw, 40px);
  text-align: center;
  box-shadow: 0 4px 20px rgba(20, 30, 60, 0.08);
  transition: all 0.3s ease;
}

.timeline-benefits__timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(42, 55, 182, 0.15);
  border-color: var(--brand);
}

.timeline-benefits__timeline-card--optimal {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-color: transparent;
  color: #fff;
}

.timeline-benefits__timeline-card--optimal:hover {
  border-color: transparent;
}

.timeline-benefits__timeline-badge {
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 700;
  color: var(--muted);
  margin-bottom: clamp(12px, 2vw, 16px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-benefits__timeline-card--optimal .timeline-benefits__timeline-badge {
  color: rgba(255, 255, 255, 0.9);
}

.timeline-benefits__timeline-time {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--brand);
  margin: clamp(8px, 1.5vw, 12px) 0;
  line-height: 1.2;
}

.timeline-benefits__timeline-card--optimal .timeline-benefits__timeline-time {
  color: #fff;
}

.timeline-benefits__timeline-desc {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--muted);
  line-height: 1.5;
}

.timeline-benefits__timeline-card--optimal .timeline-benefits__timeline-desc {
  color: rgba(255, 255, 255, 0.95);
}

.timeline-benefits__benefits {
  margin-bottom: clamp(50px, 6vw, 70px);
}

.timeline-benefits__benefits-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 clamp(40px, 5vw, 60px) 0;
}

.timeline-benefits__benefits-list {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-benefits__benefit-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 3.5vw, 36px);
  display: flex;
  gap: clamp(20px, 3vw, 28px);
  align-items: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(20, 30, 60, 0.06);
}

.timeline-benefits__benefit-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 28px rgba(42, 55, 182, 0.15);
  border-color: var(--brand);
}

.timeline-benefits__benefit-number {
  font-size: clamp(32px, 5vw, 48px);
  flex-shrink: 0;
  line-height: 1;
}

.timeline-benefits__benefit-content {
  flex: 1;
}

.timeline-benefits__benefit-title {
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 800;
  color: var(--brand);
  margin: 0 0 clamp(10px, 1.5vw, 14px) 0;
  line-height: 1.3;
}

.timeline-benefits__benefit-text {
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 768px) {
  .timeline-benefits__benefit-card {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .timeline-benefits__benefit-number {
    align-self: center;
  }
}

.timeline-benefits__cta {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(32px, 4.5vw, 52px);
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
  border-radius: 24px;
  border: 2px solid var(--brand);
  box-shadow: 0 8px 28px rgba(42, 55, 182, 0.15);
}

.timeline-benefits__cta-intro {
  font-size: clamp(16px, 2.3vw, 19px);
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 clamp(24px, 3.5vw, 32px) 0;
}

.timeline-benefits__cta-title {
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 clamp(24px, 3.5vw, 32px) 0;
}

.timeline-benefits__cta-list {
  text-align: left;
  max-width: 750px;
  margin: 0 auto clamp(32px, 4vw, 40px) auto;
  display: grid;
  gap: clamp(14px, 2vw, 18px);
}

.timeline-benefits__cta-item {
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
  color: var(--ink);
  padding: clamp(14px, 2vw, 18px);
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid var(--brand);
  box-shadow: 0 2px 8px rgba(20, 30, 60, 0.05);
}

.timeline-benefits__cta-text {
  font-size: clamp(16px, 2.3vw, 19px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 clamp(12px, 2vw, 16px) 0;
}

.timeline-benefits__cta-description {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 clamp(28px, 4vw, 36px) 0;
}

.timeline-benefits__cta-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0;
  font-size: clamp(16px, 2.5vw, 18px) !important;
  padding: clamp(16px, 2.5vw, 20px) clamp(36px, 6vw, 56px) !important;
  background: #25d366 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  text-align: center !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35) !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  animation: phoneVibrate 1.5s ease-in-out infinite !important;
  white-space: nowrap !important;
  width: auto !important;
}

.timeline-benefits__cta-button:hover {
  background: #20ba5a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45) !important;
  animation: none !important;
}

.timeline-benefits__cta-button:active {
  transform: translateY(0) !important;
}

.cta {
  background: linear-gradient(180deg, #0f1218 0%, #1a1d26 100%);
  color: #fff;
  padding-block: clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .cta .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-inline: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

.cta .container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 60px);
}

/* Проблемы */
.cta__problems {
  padding: clamp(28px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta__problems-intro {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 clamp(20px, 3vw, 28px) 0;
  line-height: 1.5;
}

.cta__problems-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 18px);
}

.cta__problems-list li {
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  padding-left: clamp(20px, 3vw, 28px);
  position: relative;
}

.cta__problems-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-size: 24px;
  line-height: 1;
}

/* Решения */
.cta__solutions {
  display: grid;
  gap: clamp(16px, 2.5vw, 20px);
}

.cta__solution-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 2vw, 16px);
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(42, 55, 182, 0.3);
  transition: all 0.3s ease;
}

.cta__solution-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand);
  transform: translateX(4px);
}

.cta__solution-check {
  flex-shrink: 0;
  font-size: clamp(20px, 3vw, 24px);
}

.cta__solution-item p {
  margin: 0;
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
  color: #fff;
}

/* Блок призыва к действию */
.cta__action-block {
  text-align: center;
  padding: clamp(32px, 5vw, 48px);
  background: linear-gradient(
    135deg,
    rgba(42, 55, 182, 0.2) 0%,
    rgba(95, 123, 255, 0.15) 100%
  );
  border-radius: 20px;
  border: 2px solid rgba(42, 55, 182, 0.4);
}

.cta__action-text {
  font-size: clamp(16px, 2.3vw, 19px);
  line-height: 1.7;
  color: #fff;
  margin: 0 0 clamp(24px, 4vw, 32px) 0;
}

.cta__action-hint {
  font-size: clamp(17px, 2.5vw, 20px);
  font-weight: 700;
  color: #fff;
  margin: clamp(20px, 3vw, 28px) 0 clamp(8px, 1.5vw, 12px) 0;
}

.cta__action-limited {
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin: 0;
}

/* Информация о звонке */
.cta__call-info {
  padding: clamp(28px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.cta__call-title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 clamp(24px, 4vw, 32px) 0;
  line-height: 1.4;
  text-align: left;
}

.cta__call-list {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(28px, 4vw, 36px) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 18px);
  text-align: left;
}

.cta__call-list li {
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  padding-left: clamp(20px, 3vw, 28px);
  position: relative;
}

.cta__call-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-size: 24px;
  line-height: 1;
}

/* Ограничение мест */
.cta__limit-info {
  text-align: center;
  padding: clamp(28px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(42, 55, 182, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta__limit-info p {
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 clamp(12px, 2vw, 16px) 0;
}

.cta__limit-info p:last-of-type {
  margin-bottom: clamp(24px, 4vw, 32px);
}

.cta__limit-info strong {
  color: #fff;
  font-weight: 700;
}

/* Преимущества */
.cta__benefits {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 48px);
}

.cta__benefits-title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

.cta__benefits-intro {
  font-size: clamp(16px, 2.3vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: center;
}

.cta__benefit-item {
  padding: clamp(28px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta__benefit-title {
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 clamp(16px, 2.5vw, 20px) 0;
  line-height: 1.4;
}

.cta__benefit-text {
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 clamp(12px, 2vw, 16px) 0;
}

.cta__benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(16px, 2.5vw, 20px) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vw, 12px);
}

.cta__benefit-list li {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  padding-left: clamp(20px, 3vw, 24px);
  position: relative;
}

.cta__benefit-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.cta__benefit-result {
  font-size: clamp(15px, 2.2vw, 17px);
  font-weight: 700;
  color: #fff;
  margin: clamp(12px, 2vw, 16px) 0 0 0;
  padding: clamp(14px, 2vw, 18px);
  background: rgba(42, 55, 182, 0.2);
  border-radius: 12px;
  border-left: 3px solid var(--brand);
}

/* Финальный блок */
.cta__final {
  text-align: center;
  padding: clamp(32px, 5vw, 48px);
  background: linear-gradient(
    135deg,
    rgba(42, 55, 182, 0.2) 0%,
    rgba(95, 123, 255, 0.15) 100%
  );
  border-radius: 20px;
  border: 2px solid rgba(42, 55, 182, 0.4);
}

.cta__final-title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 clamp(24px, 4vw, 32px) 0;
  line-height: 1.4;
}

.cta__final-list {
  list-style: none;
  padding: 0;
  margin: 0 auto clamp(24px, 4vw, 32px) auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 18px);
  text-align: left;
}

.cta__final-list li {
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  padding-left: clamp(20px, 3vw, 28px);
  position: relative;
}

.cta__final-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.cta__final-text {
  font-size: clamp(16px, 2.3vw, 19px);
  line-height: 1.7;
  color: #fff;
  margin: 0 0 clamp(16px, 2.5vw, 20px) 0;
  font-weight: 600;
}

.cta__final-description {
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 clamp(28px, 4vw, 36px) 0;
}

/* Кнопка */
.cta__button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
  font-size: clamp(16px, 2.5vw, 18px) !important;
  padding: clamp(16px, 2.5vw, 20px) clamp(36px, 6vw, 56px) !important;
  background: #25d366 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  text-align: center !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35) !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  animation: phoneVibrate 1.5s ease-in-out infinite !important;
  white-space: nowrap !important;
  width: auto !important;
}

.cta__button:hover {
  background: #20ba5a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45) !important;
  animation: none !important;
}

.cta__button:active {
  transform: translateY(0) !important;
}

@media (max-width: 768px) {
  .cta {
    padding-block: clamp(40px, 6vw, 60px);
  }

  .cta .container {
    gap: clamp(32px, 5vw, 48px);
  }

  .cta__problems,
  .cta__call-info,
  .cta__limit-info,
  .cta__benefit-item,
  .cta__action-block,
  .cta__final {
    padding: clamp(24px, 4vw, 32px);
  }
}

.form {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: var(--s5);
  color: var(--ink);
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 16px;
  outline: none;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--primary);
}

footer {
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-block: 16px;
}

.faq {
  padding-block: var(--s9);
  background: #fff;
}

.faq__list {
  max-width: 100%;
  width: 100%;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.faq summary {
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  transition: background-color 0.2s ease;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '▼';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--muted);
  transition:
    transform 0.3s ease,
    color 0.2s ease;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
  color: var(--primary);
}

.faq summary:hover {
  background-color: #f6f8ff;
}

.faq details > div {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 20px;
}

.faq details[open] > div {
  max-height: 500px;
  padding: 0 20px 16px 20px;
}

.faq details p {
  margin: 0;
  padding: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.3s ease 0.1s,
    transform 0.3s ease 0.1s;
}

.faq details[open] p {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .faq__list {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ===== INTRO SECTION ===== */
.intro {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
  padding: clamp(40px, 6vw, 80px) 0;
  isolation: isolate;
}

.intro__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 800px 600px at top right,
      rgba(42, 55, 182, 0.08),
      transparent 60%
    ),
    radial-gradient(
      ellipse 600px 500px at bottom left,
      rgba(95, 123, 255, 0.08),
      transparent 60%
    );
  opacity: 1;
  z-index: 0;
}

.intro__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
  max-width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 0 var(--s6);
}

@media (max-width: 768px) {
  .container.intro__container {
    padding-inline: 16px !important;
    margin-inline: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    gap: clamp(24px, 5vw, 32px);
  }
}

/* Trust badges - элементы доверия */
.intro__trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2vw, 16px);
  flex-wrap: wrap;
  margin-bottom: clamp(12px, 2vw, 18px);
}

.intro__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: clamp(16px, 3vw, 24px) clamp(20px, 4vw, 32px);
  box-shadow: 0 4px 16px rgba(20, 30, 60, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  min-width: 140px;
}

@media (max-width: 768px) {
  .intro__trust-badges {
    gap: clamp(8px, 2.5vw, 12px);
    margin-bottom: clamp(10px, 3vw, 16px);
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
  }

  .intro__badge {
    flex: 1 1 0;
    min-width: 0;
    padding: clamp(14px, 3vw, 18px) clamp(6px, 1.5vw, 10px);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.intro__badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(42, 55, 182, 0.15);
}

.intro__badge--highlight {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 6px 20px rgba(42, 55, 182, 0.25);
}

.intro__badge-number {
  font-weight: 800;
  font-size: clamp(24px, 4vw, 32px);
  color: var(--brand);
  line-height: 1.2;
  margin-bottom: 4px;
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 768px) {
  .intro__badge-number {
    font-size: clamp(20px, 5vw, 26px);
    margin-bottom: clamp(3px, 1vw, 5px);
    line-height: 1.1;
  }
}

.intro__badge--highlight .intro__badge-number {
  color: #fff;
}

.intro__badge-text {
  font-size: clamp(12px, 1.8vw, 14px);
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .intro__badge-text {
    font-size: clamp(10px, 2.5vw, 12px);
    line-height: 1.2;
  }
}

.intro__badge--highlight .intro__badge-text {
  color: rgba(255, 255, 255, 0.95);
}

/* Hero секция */
.intro__hero {
  text-align: center;
  margin-bottom: 0;
  position: relative;
}

.intro__title {
  margin: 0 0 clamp(16px, 2.5vw, 24px);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-size: clamp(32px, 6vw, 64px);
  background: linear-gradient(
    135deg,
    var(--ink) 0%,
    var(--brand) 50%,
    var(--brand-2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .intro__title {
    margin-bottom: clamp(14px, 3vw, 20px);
  }
}

.intro__title-accent {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.intro__title-accent::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(
    135deg,
    rgba(42, 55, 182, 0.2),
    rgba(95, 123, 255, 0.2)
  );
  border-radius: 4px;
  z-index: -1;
}

.intro__subtitle {
  margin: 0 0 clamp(24px, 4vw, 32px);
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.7;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

@media (max-width: 768px) {
  .intro__subtitle {
    margin-bottom: clamp(20px, 4vw, 28px);
  }
}

.intro__subtitle strong {
  color: var(--brand);
  font-weight: 700;
}

.intro__cta--hero {
  margin: 0 auto;
  display: inline-flex;
}

/* Секция проблем */
.intro__problems {
  background: linear-gradient(135deg, #fff 0%, #fef7f7 100%);
  border: 2px solid #ffebeb;
  border-radius: 20px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.08);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .intro__problems {
    padding: clamp(20px, 4vw, 28px);
    border-radius: 16px;
  }
}

.intro__problems::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
}

.intro__problems-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(18px, 3vw, 24px);
  gap: 16px;
}

@media (max-width: 768px) {
  .intro__problems-header {
    margin-bottom: clamp(16px, 4vw, 20px);
  }
}

.intro__section-title {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 32px);
}

.intro__icon-stop {
  font-size: clamp(32px, 5vw, 48px);
  flex-shrink: 0;
}

.intro__problems-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 16px);
}

.intro__problems-list li {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 2vw, 14px);
  padding: clamp(14px, 2vw, 18px);
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ffe0e0;
  color: var(--muted);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

@media (max-width: 768px) {
  .intro__problems-list li {
    padding: clamp(12px, 3vw, 16px);
  }
}

.intro__problems-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.1);
}

.intro__problem-icon {
  font-size: clamp(20px, 3vw, 24px);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Секция преимуществ */
.intro__benefits {
  display: grid;
  gap: clamp(12px, 2.5vw, 20px);
  grid-template-columns: 1fr;
}

@media (max-width: 768px) {
  .intro__benefits {
    gap: clamp(12px, 3vw, 16px);
  }
}

@media (min-width: 900px) {
  .intro__benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

.intro__benefit-item {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(18px, 2.5vw, 24px);
  display: flex;
  gap: clamp(10px, 2vw, 14px);
  align-items: flex-start;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(20, 30, 60, 0.04);
}

@media (max-width: 768px) {
  .intro__benefit-item {
    padding: clamp(16px, 3vw, 20px);
  }
}

.intro__benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 30, 60, 0.08);
}

.intro__checkmark {
  font-size: clamp(20px, 3vw, 24px);
  flex-shrink: 0;
  margin-top: 2px;
}

.intro__benefit-item p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(15px, 2vw, 16px);
  line-height: 1.6;
}

/* Секция результата */
.intro__result {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 32px rgba(42, 55, 182, 0.25);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .intro__result {
    padding: clamp(20px, 4vw, 28px);
    border-radius: 16px;
    min-height: auto;
  }
}

.intro__result::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
  will-change: transform;
  pointer-events: none;
}

@media (max-width: 768px) {
  .intro__result::before {
    top: -30%;
    right: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.1) 25%,
      transparent 65%
    );
    animation: rotate 18s linear infinite;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.intro__result-icon {
  font-size: clamp(48px, 7vw, 64px);
  margin-bottom: clamp(16px, 3vw, 24px);
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
  will-change: transform;
}

@media (max-width: 768px) {
  .intro__result-icon {
    font-size: clamp(36px, 7vw, 48px);
    margin-bottom: clamp(12px, 2.5vw, 16px);
    animation: bounce 2s ease-in-out infinite;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.intro__result-title {
  margin: 0 0 clamp(16px, 2.5vw, 24px);
  font-weight: 800;
  font-size: clamp(24px, 4vw, 36px);
  color: #fff;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .intro__result-title {
    font-size: clamp(20px, 4.5vw, 26px);
    margin-bottom: clamp(12px, 2.5vw, 16px);
  }
}

.intro__result-highlight {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  margin: 0 0 clamp(16px, 2.5vw, 24px);
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .intro__result-highlight {
    font-size: clamp(24px, 5.5vw, 36px);
    margin-bottom: clamp(12px, 2.5vw, 16px);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  }
}

.intro__result-text {
  margin: 0;
  font-size: clamp(18px, 2.8vw, 22px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

@media (max-width: 768px) {
  .intro__result-text {
    font-size: clamp(15px, 3.8vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.98);
    margin-top: 0;
  }
}

/* Секция кейсов */
.intro__cases {
  display: grid;
  gap: clamp(16px, 2.5vw, 24px);
  grid-template-columns: 1fr;
}

@media (max-width: 768px) {
  .intro__cases {
    gap: clamp(16px, 3vw, 20px);
  }
}

@media (min-width: 900px) {
  .intro__cases {
    grid-template-columns: repeat(2, 1fr);
  }
}

.intro__case {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 3.5vw, 32px);
  box-shadow: 0 6px 20px rgba(20, 30, 60, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
}

@media (max-width: 768px) {
  .intro__case {
    padding: clamp(20px, 4vw, 24px);
    border-radius: 16px;
  }
}

.intro__case:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(42, 55, 182, 0.15);
  border-color: var(--brand);
}

.intro__case-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: clamp(12px, 1.8vw, 14px);
  margin-bottom: clamp(16px, 2.5vw, 24px);
  box-shadow: 0 4px 12px rgba(42, 55, 182, 0.2);
}

.intro__case-title {
  margin: 0 0 clamp(16px, 2.5vw, 24px);
  color: var(--brand);
  font-weight: 800;
  font-size: clamp(20px, 3vw, 26px);
}

@media (max-width: 768px) {
  .intro__case-title {
    margin-bottom: clamp(14px, 3vw, 20px);
  }
}

.intro__case-stats {
  display: flex;
  gap: clamp(10px, 2vw, 16px);
  margin-bottom: clamp(16px, 2.5vw, 24px);
  flex-wrap: wrap;
}

.intro__case-stat {
  flex: 1;
  min-width: 100px;
  background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(16px, 2.5vw, 20px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.intro__case-stat-number {
  font-weight: 900;
  font-size: clamp(24px, 4vw, 32px);
  color: var(--brand);
  line-height: 1.2;
}

.intro__case-stat-label {
  font-size: clamp(12px, 1.8vw, 14px);
  color: var(--muted);
  font-weight: 600;
}

.intro__case p {
  margin: 0 0 clamp(14px, 2.2vw, 18px);
  color: var(--muted);
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.7;
}

.intro__case p:last-child {
  margin-bottom: 0;
}

/* Секция о себе */
.intro__about {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border: 2px solid var(--brand);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 8px 24px rgba(42, 55, 182, 0.12);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .intro__about {
    padding: clamp(24px, 4vw, 32px);
    border-radius: 16px;
  }
}

.intro__about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.intro__about-header {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 32px);
}

@media (max-width: 768px) {
  .intro__about-header {
    margin-bottom: clamp(20px, 4vw, 28px);
  }
}

.intro__about-avatar {
  width: clamp(120px, 18vw, 180px);
  height: clamp(120px, 18vw, 180px);
  border-radius: 50%;
  margin-bottom: clamp(16px, 2.5vw, 24px);
  display: inline-block;
  object-fit: cover;
  border: 2px solid var(--brand);
  box-shadow: 0 4px 20px rgba(42, 55, 182, 0.25);
}

@media (max-width: 768px) {
  .intro__about-avatar {
    border-width: 2px;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.intro__about-name {
  margin: 0 0 clamp(12px, 2vw, 16px);
  color: var(--ink);
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 42px);
  text-align: center;
  letter-spacing: -0.02em;
}

.intro__about-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(14px, 2vw, 16px);
  box-shadow: 0 4px 16px rgba(42, 55, 182, 0.25);
}

.intro__about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(12px, 2vw, 16px);
  grid-template-columns: 1fr;
}

@media (max-width: 768px) {
  .intro__about-list {
    gap: clamp(12px, 3vw, 14px);
  }
}

@media (min-width: 700px) {
  .intro__about-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.intro__about-list li {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 2vw, 14px);
  padding: clamp(14px, 2vw, 18px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(20, 30, 60, 0.04);
}

@media (max-width: 768px) {
  .intro__about-list li {
    padding: clamp(12px, 3vw, 16px);
  }
}

.intro__about-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(42, 55, 182, 0.1);
}

.intro__about-check {
  flex-shrink: 0;
  width: clamp(24px, 3.5vw, 28px);
  height: clamp(24px, 3.5vw, 28px);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(14px, 2vw, 16px);
  box-shadow: 0 4px 12px rgba(42, 55, 182, 0.25);
}

/* CTA кнопка */
.intro__cta-wrapper {
  text-align: center;
  margin-top: 0;
  padding: clamp(24px, 4vw, 32px);
  background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
  border-radius: 20px;
  border: 2px dashed var(--brand);
}

@media (max-width: 768px) {
  .intro__cta-wrapper {
    padding: clamp(20px, 4vw, 24px);
    border-radius: 16px;
  }
}

.intro__cta-text {
  margin: 0 0 clamp(14px, 2vw, 18px);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--ink);
}

@media (max-width: 768px) {
  .intro__cta-text {
    font-size: clamp(18px, 4vw, 22px);
    margin-bottom: clamp(12px, 3vw, 16px);
  }
}

.intro__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: clamp(56px, 7vw, 64px);
  padding: 0 clamp(32px, 5vw, 44px);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 70%);
  color: #fff;
  font-weight: 800;
  font-size: clamp(16px, 2.5vw, 20px);
  letter-spacing: 0.01em;
  box-shadow: 0 12px 32px rgba(42, 55, 182, 0.35);
  position: relative;
  transform: translateZ(0);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  animation: ctaPulse 2.5s ease-in-out infinite;
  max-width: 90%;
}

@media (max-width: 768px) {
  .intro__cta {
    height: clamp(52px, 8vw, 56px);
    padding: 0 clamp(24px, 4.5vw, 32px);
    font-size: clamp(15px, 4vw, 18px);
    max-width: 85%;
    width: auto;
    animation: ctaPulse 2.5s ease-in-out infinite;
  }

  .intro__cta::before {
    animation: ctaGlow 2.5s ease-in-out infinite;
  }
}

.intro__cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  z-index: -1;
  opacity: 0.5;
  filter: blur(12px);
  animation: ctaGlow 2.5s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.intro__cta:hover {
  transform: translateY(-2px) scale(1.03);
  animation: none;
  box-shadow: 0 14px 36px rgba(42, 55, 182, 0.4);
}

.intro__cta:hover::before {
  opacity: 0.7;
}

.intro__cta:active {
  transform: translateY(-1px) scale(1.01);
  animation: none;
}

.intro__cta-subtext {
  margin: clamp(14px, 2vw, 18px) 0 0;
  font-size: clamp(13px, 1.8vw, 15px);
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 768px) {
  .intro__cta-subtext {
    font-size: clamp(13px, 3vw, 14px);
    margin-top: clamp(12px, 3vw, 16px);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 12px 32px rgba(42, 55, 182, 0.35);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 14px 36px rgba(42, 55, 182, 0.4);
  }
}

/* ========== REVIEWS ========== */
.reviews {
  padding: clamp(38px, 5vw, 60px) 0;
  background: var(--bg);
}

.reviews__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.reviews__head {
  text-align: center;
  margin-bottom: 18px;
}

.reviews__title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: var(--ink);
}

.reviews__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews__viewport {
  overflow: hidden;
  flex: 1;
  border-radius: 18px;
}

.reviews__track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.reviews__slide {
  flex: 0 0 100%;
  padding: 6px;
  box-sizing: border-box;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.reviews__card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e6f1;
  padding: 6px;
  height: 320px;
  box-shadow: 0 6px 18px rgba(20, 30, 60, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}

.reviews__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  cursor: zoom-in;
}

.reviews__arrow {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: var(--brand);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(20, 30, 60, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s ease;
}

.reviews__arrow:hover {
  transform: translateY(-1px);
  background: var(--brand);
  color: #fff;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.reviews__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: #cfd6ea;
  cursor: pointer;
  transition: 0.2s ease;
}

.reviews__dot--active {
  width: 14px;
  background: var(--brand);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9999;
}

.lightbox--open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
  animation: lightboxZoom 0.25s ease;
}

@keyframes lightboxZoom {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  font-size: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  backdrop-filter: blur(4px);
  transition: 0.2s ease;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1100px) {
  .intro__bg {
    background-size: 1000px auto;
    background-position: right 50% top 46%;
  }
}

@media (max-width: 760px) {
  .nav__right {
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
  }

  .btn-ghost {
    padding: 0 14px;
    font-size: clamp(12px, 3vw, 14px);
    min-width: 0;
    flex: 1;
    max-width: none;
    height: clamp(42px, 6vw, 46px);
  }

  .btn {
    padding: 0 16px;
    font-size: clamp(13px, 3vw, 14px);
    height: clamp(42px, 6vw, 46px);
  }

  .btn-dark {
    font-size: clamp(14px, 3vw, 15px);
    padding: 0 clamp(18px, 4vw, 24px);
    height: clamp(42px, 6vw, 46px);
    flex: 1;
    max-width: none;
  }

  .intro {
    padding: 38px 0 18px;
  }

  .intro__bg {
    background-image: url('images/intro_bc.png');
    background-repeat: no-repeat;
    background-position: center top 40%;
    background-size: 1150px auto;
    opacity: 0.9;
  }

  .intro__cta {
    margin-top: 0;
  }

  .why__icon {
    text-align: center;
  }

  .why__item h3,
  .why__item p {
    text-align: center;
  }

  /* Слайдер для проблем и решений на мобильных */
  .problems .container {
    padding-inline: 0;
  }

  .problems .container > div:first-child,
  .problems .ps__tabs {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ps__wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
  }

  .ps__carousel {
    width: 100%;
    gap: 0;
    padding: 0;
    position: relative;
  }

  .ps__viewport {
    padding: 0;
    flex: 1;
    min-width: 0;
    width: 100%;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
  }

  .ps__viewport:active {
    cursor: grabbing;
  }

  .ps__grid {
    display: flex;
    gap: 0;
    width: 100%;
  }

  .ps__pair {
    flex: 0 0 100%;
    min-width: 0;
    scroll-snap-align: start;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(16, 20, 30, 0.06);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .ps__side {
    padding: clamp(20px, 3vw, 24px) clamp(16px, 2.5vw, 20px);
    min-height: auto;
    justify-content: flex-start;
    align-items: stretch;
  }

  .ps__side > * {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .ps__title {
    font-size: clamp(14px, 2vw, 16px);
    margin-bottom: clamp(16px, 2.5vw, 20px) !important;
    gap: clamp(8px, 1.2vw, 10px);
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ps__title .pill {
    margin: 0 auto;
  }

  .ps__title > span:last-child {
    font-size: clamp(13px, 1.8vw, 15px);
    line-height: 1.5;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .ps__side ul {
    font-size: clamp(12px, 1.7vw, 14px);
    line-height: 1.65;
    padding-left: 0;
    margin: 0 0 clamp(16px, 2.5vw, 20px) 0 !important;
    gap: clamp(10px, 1.5vw, 12px);
  }

  .ps__side li {
    padding-left: clamp(22px, 3vw, 28px);
    padding-right: 0;
    font-size: clamp(12px, 1.7vw, 14px);
    line-height: 1.65;
    margin: 0;
  }

  .ps__side li::before {
    font-size: 1.4em;
    top: 0;
    width: clamp(18px, 2.5vw, 22px);
  }

  .ps__main-text {
    font-size: clamp(13px, 1.8vw, 15px);
    line-height: 1.7;
    margin: 0 0 clamp(16px, 2.5vw, 20px) 0 !important;
    padding: 0;
    text-align: left;
  }

  .ps__consequence {
    padding: clamp(16px, 2.5vw, 20px);
    font-size: clamp(12px, 1.7vw, 14px);
    line-height: 1.7;
    margin: clamp(6px, 1vw, 10px) 0 0 0 !important;
    border-left-width: 3px;
    text-align: left;
  }

  .pill {
    height: clamp(20px, 2.5vw, 22px);
    padding: 0 clamp(8px, 1.2vw, 10px);
    font-size: clamp(10px, 1.4vw, 11px);
    flex-shrink: 0;
  }

  .ps__arrow {
    display: none;
  }

  .ps__dots {
    display: flex;
  }

  .ps__viewport {
    overflow: hidden;
    flex: 1;
    width: 100%;
    max-width: 100%;
  }

  .reviews__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .reviews__card {
    min-height: 130px;
  }
}

@media (max-width: 540px) {
  .reviews__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
  }

  .reviews__arrow--prev {
    left: 4px;
  }

  .reviews__arrow--next {
    right: 4px;
  }
}

@media (max-width: 520px) {
  .reviews__viewport {
    border-radius: 14px;
    height: 360px;
  }

  .reviews__grid {
    display: block;
  }

  .reviews__card {
    width: 100%;
    height: 360px;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    border: none;
    background: none;
  }

  .reviews__img {
    margin: 0 auto;
  }

  .reviews__slide {
    padding: 0;
  }

  .reviews__carousel {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .nav__right {
    gap: clamp(10px, 2vw, 14px);
    justify-content: center;
    width: 100%;
  }

  .nav__right .btn-ghost {
    flex: 1 1 0;
    min-width: 0;
    font-size: clamp(12px, 3vw, 14px);
    padding: 0 clamp(12px, 2.5vw, 16px);
    height: clamp(42px, 6vw, 46px);
    border-width: 2px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    box-shadow:
      0 3px 12px rgba(42, 55, 182, 0.15),
      0 1px 4px rgba(42, 55, 182, 0.1);
  }

  .nav__right .btn-dark {
    flex: 1 1 0;
    min-width: 0;
    font-size: clamp(12px, 3vw, 14px);
    padding: 0 clamp(14px, 2.5vw, 18px);
    height: clamp(42px, 6vw, 46px);
    box-shadow:
      0 4px 16px rgba(15, 18, 24, 0.3),
      0 2px 8px rgba(15, 18, 24, 0.2);
  }
}

@media (max-width: 480px) {
  .nav__right {
    gap: clamp(8px, 2vw, 12px);
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .nav__right .btn-ghost {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 clamp(10px, 2.5vw, 14px);
    font-size: clamp(11px, 2.8vw, 13px);
    height: clamp(42px, 6vw, 46px);
    border-width: 2px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    box-shadow:
      0 3px 12px rgba(42, 55, 182, 0.15),
      0 1px 4px rgba(42, 55, 182, 0.1);
  }

  .nav__right .btn-dark {
    flex: 1 1 0;
    min-width: 0;
    font-size: clamp(11px, 2.8vw, 13px);
    padding: 0 clamp(10px, 2.5vw, 14px);
    height: clamp(42px, 6vw, 46px);
    box-shadow:
      0 4px 16px rgba(15, 18, 24, 0.3),
      0 2px 8px rgba(15, 18, 24, 0.2);
  }

  .intro__bg {
    background-position: center top 30%;
    background-size: 950px auto;
  }
}

@media (max-width: 420px) {
  .intro__stats {
    grid-template-columns: 1fr;
  }

  .intro__bg {
    background-size: 800px auto;
  }
}

@media (max-width: 360px) {
  .intro__bg {
    background-position: center top 26%;
    background-size: 850px auto;
  }
}
