/* SaleScout Landing — Анимации и стили */
:root {
  --color-primary: #F04634;
  --color-primary-hover: #ff6b5a;
  --color-primary-light: #fff5f4;
  --color-primary-dark: #d41900;
  --color-bg: #f8f9fc;
  --color-white: #ffffff;
  --color-text: #1a1a2e;
  --color-text-secondary: #4a4a68;
  --color-text-muted: #6b6b80;
  --color-header: #1a1a2e;
  --color-success: #10b981;
  --color-success-light: #d1fae5;
  --font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 2px 8px rgba(97, 114, 243, 0.08);
  --shadow-md: 0 8px 24px rgba(97, 114, 243, 0.12);
  --shadow-lg: 0 16px 48px rgba(97, 114, 243, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  background: linear-gradient(180deg, #f8f9fc 0%, #eef4ff 50%, #f8f9fc 100%);
  color: var(--color-text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(97, 114, 243, 0.3);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(97, 114, 243, 0);
  }
}

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

@keyframes checkPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
  opacity: 0;
  animation: slideUp 0.7s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

/* Header */
.header {
  background: var(--color-header);
  padding: 10px 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #e8e8e8;
  transition: var(--transition);
}

.logo:hover {
  color: var(--color-white);
  transform: translateX(2px);
}

.logo:active {
  transform: scale(0.98);
}

.logo__icon {
  width: 28px;
  height: 28px;
  transition: var(--transition);
}

.logo:hover .logo__icon {
  color: var(--color-primary);
}

.logo__text {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Main */
.main {
  flex: 1;
  padding: 28px 16px 36px;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 28px;
}

.hero__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.hero__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.hero__kaspi {
  display: inline-block;
  padding: 1px 3px;
  background: #e31e24;
  color: #fff;
  border-radius: 0;
  font-weight: 800;
}

.hero__note {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 12px 0 0;
  line-height: 1.45;
  font-weight: 400;
}

/* Подпись под кнопкой: чёрный текст, мелкий шрифт, одинаковые отступы сверху и снизу */
.cta-section .hero__note {
  margin: 28px 0 28px 0;
  font-size: 0.8rem;
  color: #000;
  font-weight: 400;
}

/* Не разрывать «e-commerce» на мобилке */
.hero__note-nowrap {
  white-space: nowrap;
}

.hero__note-link {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 400;
}

.hero__note-link:hover {
  color: #1d4ed8;
}

/* Отдельный блок: статистика продаж под подписью */
.cta-section__stats {
  margin: 24px 0 24px 0;
  font-size: 0.8rem;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
}

/* Число в статистике: синий, крупный, жирный */
.cta-section__stats-num {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0066ff;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

/* Плюс в том же стиле */
.cta-section__stats-plus {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0066ff;
  letter-spacing: -0.02em;
}

/* Блок статистики над «Лидеры доверяют нам» */
.page-stats {
  text-align: center;
  padding: 16px 16px 24px;
}

.page-stats .cta-section__stats {
  margin: 0 auto;
  text-align: center;
}

/* Лидеры доверяют нам — ровная сетка, отступы сверху/снизу от заголовка одинаковые */
.brands {
  --brand-logo-height: 64px;
  --brand-cell-size: 100px;
  background: transparent;
  padding: 24px 20px 64px;
  overflow: hidden;
}

.brands__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  box-sizing: border-box;
}

.brands__title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: var(--brand-cell-size);
  gap: 24px 32px;
  align-items: stretch;
  justify-items: stretch;
  max-width: 640px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .page-stats {
    padding-bottom: 12px;
  }
  .brands {
    padding-top: 12px;
  }
  .brands__title {
    margin-bottom: 24px;
  }
  .brand--bf {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
  }
  .brand--bf img {
    display: none !important;
  }
  .brands__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 96px;
    gap: 20px 24px;
  }
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: var(--brand-cell-size);
  padding: 12px;
  box-sizing: border-box;
  overflow: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

@media (max-width: 600px) {
  .brand {
    min-height: 96px;
  }
}

.brand:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Один размер для всех логотипов, по центру ячейки */
.brand img {
  height: var(--brand-logo-height);
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  flex-shrink: 0;
}

.brand--bf img {
  height: 88px;
  width: 100%;
  max-width: 100%;
  max-height: var(--brand-cell-size);
  object-fit: contain;
  object-position: center;
  filter: contrast(1.12);
}

@media (max-width: 600px) {
  .brand--bf img {
    height: 96px;
    max-height: 96px;
    width: 100%;
  }
}

/* Excel preview — серая таблица, раскрывается при загрузке, остальное в блюре */
.excel-preview {
  margin-bottom: 24px;
}

.excel-preview__window {
  background: #f1f3f5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  animation: excel-unfold 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
}

@keyframes excel-unfold {
  from {
    opacity: 0;
    max-height: 40px;
  }
  to {
    opacity: 1;
    max-height: 320px;
  }
}

.excel-preview__row {
  display: grid;
  grid-template-columns: 40px 1fr 1fr 95px 72px;
  gap: 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  min-height: 48px;
}

.excel-preview__row:last-child {
  border-bottom: none;
}

.excel-preview__row span {
  padding: 12px 14px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  line-height: 1.4;
  word-break: break-word;
}

.excel-preview__row span:last-child {
  border-right: none;
}

.excel-preview__cell--num {
  justify-content: center;
  text-align: center;
}

.excel-preview__row--header {
  background: #e9ecef;
  font-weight: 700;
  color: #495057;
}

.excel-preview__row--header span {
  white-space: nowrap;
}

.excel-preview__row--visible {
  background: #f8f9fa;
  color: #495057;
}

.excel-preview__row--blur-light {
  filter: blur(2px);
  opacity: 0.8;
  background: #f1f3f5;
  color: #6b7280;
  pointer-events: none;
}

.excel-preview__row--blur-strong {
  filter: blur(6px);
  opacity: 0.4;
  background: #f1f3f5;
  color: #9ca3af;
  pointer-events: none;
}

.excel-preview__blur {
  filter: blur(5px);
  opacity: 0.65;
  pointer-events: none;
}

.excel-preview__blur .excel-preview__row {
  background: #f1f3f5;
  color: #868e96;
}

@media (max-width: 480px) {
  .excel-preview__row {
    grid-template-columns: 36px 1fr 1fr 80px 68px;
    font-size: 0.85rem;
    min-height: 44px;
  }

  .excel-preview__row span {
    padding: 10px 12px;
  }
}

/* Benefits — список без отдельного квадрата */
.benefits {
  margin-bottom: 24px;
}

.benefits--plain {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
}

.benefits--plain:hover {
  box-shadow: none;
}

.benefits__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--color-text);
}

.benefits__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.benefits__item:last-child {
  border-bottom: none;
}

.benefits__item:hover {
  color: var(--color-text);
  padding-left: 6px;
}

.benefits__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--color-success);
  border-radius: 50%;
  margin-top: 2px;
  position: relative;
  transition: var(--transition);
}

.benefits__check::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 700;
}

.benefits__item:hover .benefits__check {
  background: var(--color-primary);
  transform: scale(1.1);
}

/* CTA Section — нижний отступ задаётся у .hero__note для ровных интервалов */
.cta-section {
  text-align: center;
  margin-bottom: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--color-white) !important;
  background: #F04634;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(240, 70, 52, 0.35);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ff6b5a;
  opacity: 0;
  transition: var(--transition);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(240, 70, 52, 0.45);
}

.cta-button:hover::before {
  opacity: 1;
}

.cta-button:active {
  transform: translateY(-1px) scale(0.98);
}

.cta-button__icon {
  display: block;
  flex-shrink: 0;
}

.cta-button__text {
  position: relative;
  z-index: 1;
}

/* Client Benefits */
.client-benefits {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, #e8edff 100%);
  border-radius: 14px;
  padding: 20px 20px;
  border: 1px solid rgba(97, 114, 243, 0.2);
  transition: var(--transition);
}

.client-benefits:hover {
  border-color: rgba(97, 114, 243, 0.3);
  box-shadow: var(--shadow-sm);
}

.client-benefits__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--color-text);
}

.client-benefits__content {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.client-benefits__content p {
  margin: 0 0 10px;
}

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

/* Popups */
@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.popup--open {
  opacity: 1;
  visibility: visible;
}

.popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.5);
  backdrop-filter: blur(4px);
}

.popup__container {
  position: relative;
  width: 100%;
  max-width: 380px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 24px 22px;
  animation: popupIn 0.35s ease-out;
}

.popup__container--small {
  max-width: 320px;
}

.popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 50%;
}

.popup__close:hover {
  color: var(--color-text);
  background: var(--color-primary-light);
}

.popup__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--color-text);
}

.popup__subtitle {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0 0 18px;
}

.popup__content--centered {
  text-align: center;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group .required {
  color: #dc2626;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(97, 114, 243, 0.15);
}

.form-group input::placeholder {
  color: var(--color-text-muted);
}

.form-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  background: rgba(97, 114, 243, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(97, 114, 243, 0.15);
  margin: 0;
  line-height: 1.4;
}

.form-note__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #25D366;
}

.form-note__text {
  font-weight: 500;
}

.form-group__error {
  font-size: 0.75rem;
  color: #dc2626;
  margin: 0;
  min-height: 1.2em;
}

.form-group input.form-group__input--error {
  border-color: #f87171 !important;
  background: #fef2f2;
}

.form-group input.form-group__input--error:focus {
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.2);
}

.popup__submit {
  width: 100%;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--color-white);
  background: #F04634;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(240, 70, 52, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.popup__submit-icon {
  flex-shrink: 0;
  display: block;
}

.popup__submit:hover:not(:disabled) {
  background: #d41900;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 70, 52, 0.5);
}

.popup__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Popup оплаты Kaspi — белый фон, карта снизу */
.popup__container--payment {
  max-width: 90vw;
  width: 400px;
  max-height: none;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #e8e8e8;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.popup__container--payment .popup__close {
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  font-size: 18px;
  color: #616161;
  background: #fff;
  border: 1px solid #e8e8e8;
  z-index: 2;
}

.popup__container--payment .popup__close:hover {
  color: #212121;
  background: #fafafa;
  border-color: #e0e0e0;
}

.popup__content--payment {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
}

/* kaspi-pay-view — как на втором скрине, без редиректа */
.kaspi-pay-view {
  padding: 40px 24px 42px;
  display: grid;
  justify-content: center;
  justify-items: center;
  background-color: #fff;
}

.kaspi-pay-view__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.kaspi-pay-view__brand img {
  display: block;
}

.kaspi-pay-view__price {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 60px;
  text-align: center;
  padding: 16px 0;
  color: #212121;
}

.kaspi-pay-view__qr-box {
  width: 200px;
  height: 200px;
  position: relative;
}

.kaspi-pay-view__qr-image {
  width: 200px;
  height: 200px;
}

.kaspi-pay-view__qr-image img,
.kaspi-pay-view__qr-image canvas {
  display: block;
  width: 200px !important;
  height: 200px !important;
}

.kaspi-pay-view__qr-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.kaspi-pay-view__qr-logo img {
  display: block;
}

.kaspi-pay-view__methods-label {
  font-size: 0.95rem;
  color: #616161;
  padding: 12px 0 8px;
}

.kaspi-pay-view__methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.kaspi-pay-view__methods img {
  display: block;
}

.kaspi-pay-view__hint {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: #616161;
}

.success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-success);
  border-radius: 50%;
}

/* Thank you page */
.thank-you-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  padding: 32px 24px;
}

.thank-you-card {
  max-width: 400px;
  width: 100%;
  text-align: center;
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px 40px;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.5s ease-out;
}

.thank-you-card .success-icon {
  margin: 0 auto 24px;
}

.thank-you__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 24px;
}

.thank-you__text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin: 0 0 24px;
  line-height: 1.5;
}

.thank-you__help {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 420px) {
  .thank-you__help {
    white-space: nowrap;
  }
}

.thank-you__link {
  color: var(--color-text-muted);
  text-decoration: underline;
  font-weight: 500;
  transition: var(--transition);
}

.thank-you__link:hover {
  color: var(--color-text-secondary);
}

.thank-you__btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.thank-you__btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.thank-you__btn:active {
  transform: translateY(0);
}

.thank-you__btn--secondary {
  background: #9ca3af;
  color: var(--color-white);
}

.thank-you__btn--secondary:hover {
  background: #6b7280;
}

/* Footer */
.footer {
  padding: 18px 16px;
  text-align: center;
  background: var(--color-white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer__text {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin: 0 0 6px;
}

.footer__link {
  font-size: 0.75rem;
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

.footer__link:hover {
  text-decoration: underline;
  color: var(--color-primary-dark);
}

/* Mobile */
@media (max-width: 768px) {
  .main {
    padding: 28px 20px 40px;
  }

  .hero {
    margin-bottom: 28px;
  }

  .excel-preview {
    margin-bottom: 28px;
  }

  .cta-section {
    margin-bottom: 0;
  }

  .hero__label {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .hero__title {
    font-size: 1.25rem;
  }

  .benefits {
    padding: 0 16px 16px 16px;
    margin-bottom: 20px;
    border-radius: 12px;
  }

  .benefits__title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .benefits__item {
    font-size: 0.95rem;
    padding: 8px 0;
  }

  .benefits__check {
    width: 16px;
    height: 16px;
  }

  .benefits__check::after {
    font-size: 10px;
  }

  .benefits {
    margin-bottom: 0;
  }

  .cta-button {
    width: 100%;
    max-width: 100%;
    padding: 16px 24px;
    font-size: 1.05rem;
    border-radius: 0;
  }

  .client-benefits {
    padding: 16px 16px;
    border-radius: 12px;
  }

  .client-benefits__content {
    font-size: 0.9rem;
  }

  .footer {
    padding: 16px 12px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 8px 12px;
  }

  .logo {
    gap: 8px;
  }

  .logo__icon {
    width: 24px;
    height: 24px;
  }

  .logo__text {
    font-size: 1rem;
  }

  .hero__title {
    font-size: 1.2rem;
  }

  .benefits__item:hover {
    padding-left: 4px;
  }
}

@media (max-width: 480px) {
  .popup {
    padding: 10px;
  }

  .popup__container {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .popup__title {
    font-size: 1.2rem;
  }

  .popup__subtitle {
    font-size: 0.9rem;
  }

  .form-group input {
    padding: 10px 12px;
  }

  .form-note {
    padding: 10px 12px;
    gap: 10px;
    font-size: 0.88rem;
  }

  .form-note__icon {
    width: 20px;
    height: 20px;
  }

  .popup__container--payment {
    width: calc(100% - 20px);
    max-width: 100%;
    border-radius: 16px;
  }
}

/* Уменьшаем анимации для пользователей с prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}
