/* ===============================
   dogovor-check.ru — base styles
   Чистый, легкий, адаптивный UI
   =============================== */


/* ---------- HERO секция (верх страницы договора) ---------- */

/* УДАЛИ старый блок:
#hero,
#hero-arenda { ... }
#hero p,...
#hero ul,...
*/

#hero,
#hero-arenda {
  margin-top: 8px;
  margin-bottom: 32px;
  padding: 26px 22px 24px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background:
    radial-gradient(circle at top left, #e0f2fe 0, #e5edff 40%, #f9fafb 100%);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.10),
    0 0 0 1px rgba(255, 255, 255, 0.7);
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 18px 26px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Бейдж сверху слева: усиливаем ощущение продукта */
#hero::before,
#hero-arenda::before {
  content: "ИИ-проверка договоров за 10 секунд";
  position: absolute;
  top: 14px;
  left: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.10);
  color: #1d4ed8;
  border: 1px solid rgba(129, 140, 248, 0.5);
}

/* Лёгкий декоративный круг справа — чтобы выглядело «дороже» */
#hero::after,
#hero-arenda::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  right: -80px;
  top: -60px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.14), transparent 60%);
  pointer-events: none;
}

/* Левая колонка (заголовок, текст, кнопка) */
#hero h2,
#hero-arenda h2 {
  margin: 18px 0 8px 0; /* отступ вниз от бейджа */
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #0f172a;
}

#hero p,
#hero-arenda p {
  margin: 0 0 12px 0;
  color: #4b5563;
  font-size: 15px;
}

/* Подчёркивающая полоска под заголовком */
#hero h2::after,
#hero-arenda h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  margin-top: 10px;
  background: linear-gradient(to right, #2563eb, #22c55e);
}

/* Кнопка в Hero — чуть крупнее и по центру внимания */
#hero button,
#hero-arenda button {
  margin-top: 16px;
  padding-inline: 22px;
  font-size: 15px;
  width: 100%;
}

/* Правая колонка — список выгод как самостоятельная карточка */
#hero > ul,
#hero-arenda > ul {
  margin: 8px 0 0 0;
  padding: 14px 16px 14px;
  list-style: none;
  font-size: 14px;
  color: #1f2937;
  background: rgba(255, 255, 255, 0.90);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(6px);
}

#hero > ul li,
#hero-arenda > ul li {
  position: relative;
  padding-left: 22px;
  margin: 4px 0;
}

#hero > ul li::before,
#hero-arenda > ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(to right, #2563eb, #22c55e);
}

/* Адаптив для Hero */

@media (max-width: 900px) {
  #hero,
  #hero-arenda {
    grid-template-columns: 1fr;
    padding: 24px 18px 22px;
  }

  #hero::after,
  #hero-arenda::after {
    width: 200px;
    height: 200px;
    right: -60px;
    top: -40px;
  }

  #hero h2,
  #hero-arenda h2 {
    font-size: 23px;
  }

  #hero > ul,
  #hero-arenda > ul {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  #hero,
  #hero-arenda {
    margin-top: 4px;
    padding: 22px 14px 20px;
  }

  #hero::before,
  #hero-arenda::before {
    left: 12px;
    right: 12px;
    text-align: center;
  }

  #hero h2,
  #hero-arenda h2 {
    margin-top: 26px; /* бейдж выше, заголовок чуть ниже */
    font-size: 21px;
  }

  #hero h2::after,
  #hero-arenda h2::after {
    width: 52px;
  }

  #hero > ul,
  #hero-arenda > ul {
    padding: 12px 12px 12px;
    font-size: 13px;
  }
}


/* ---------- CSS reset / base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f7f9fc;
  color: #111827;
  line-height: 1.6;
}

/* Убираем горизонтальный скролл на всякий */
html, body {
  width: 100%;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---------- Layout: header / main / footer ---------- */

header {
  border-bottom: 1px solid #e5e7eb;
  background: #ffffffcc;
  backdrop-filter: blur(10px);
}

header h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

header h1 a {
  display: inline-block;
  padding: 16px 20px;
  color: #111827;
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

footer {
  border-top: 1px solid #e5e7eb;
  padding: 16px 20px 24px;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  background: #ffffff;
}

footer a {
  color: #4b5563;
}

/* ---------- Utility ---------- */

.text-center {
  text-align: center;
}

.muted {
  color: #6b7280;
}

/* Контейнер для секций с текстом под SEO */
.info-section {
  margin-top: 40px;
  padding: 24px 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.info-section h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 22px;
  line-height: 1.3;
  color: #111827;
}

.info-section h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.info-section p {
  margin: 4px 0 0 0;
  color: #4b5563;
  font-size: 14px;
}

/* ---------- Grids (steps / use cases / testimonials) ---------- */

.step-grid,
.use-case-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.step,
.use-case,
.testimonial {
  background: #f9fafb;
  border-radius: 12px;
  padding: 14px 14px 16px;
  border: 1px solid #e5e7eb;
}

.testimonial p strong {
  display: block;
  margin-bottom: 4px;
}


/* ---------- Кнопки (общий стиль) ---------- */

button {
  font-family: inherit;
}

.btn,
#scan-button,
#buy-button,
#share-button,
#scan-another-button,
#submit-email-button {
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.15s ease;
  background-image: linear-gradient(to right, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.btn:hover,
#scan-button:hover,
#buy-button:hover,
#share-button:hover,
#scan-another-button:hover,
#submit-email-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.32);
}

.btn:active,
#scan-button:active,
#buy-button:active,
#share-button:active,
#scan-another-button:active,
#submit-email-button:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.22);
}

/* Вторичные кнопки */

.btn-secondary,
#share-button,
#scan-another-button {
  background: #e5e7eb;
  color: #111827;
  box-shadow: none;
}

.btn-secondary:hover,
#share-button:hover,
#scan-another-button:hover {
  background: #d1d5db;
  box-shadow: none;
}

/* Отключенные кнопки */

button:disabled,
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
}

/* ---------- JurScan контейнер ---------- */

#jurscan-container {
  margin-top: 28px;
  padding: 24px 20px 28px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.06);
}

#jurscan-container > h2 {
  margin: 0 0 16px 0;
  font-size: 20px;
  color: #111827;
}

/* ---------- Блок выбора файла / текста ---------- */

#input-container {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

#drop-zone-container,
#text-input-container {
  flex: 1 1 20px;
}

/* Drop zone */

#drop-zone {
  border: 1.5px dashed #cbd5e1;
  border-radius: 14px;
  padding: 22px 14px;
  text-align: center;
  background: #f9fafb;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.08s ease;
}

#drop-zone:hover {
  border-color: #2563eb;
  background: #f3f4ff;
  transform: translateY(-1px);
}

#drop-zone.dragover {
  border-color: #1d4ed8;
  background: #e0ebff;
}

.upload-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

#drop-zone-text {
  font-size: 14px;
  color: #374151;
}

#file-name {
  margin-top: 8px;
  font-size: 13px;
  color: #4b5563;
}

/* Переключатели режима ввода */

#switch-to-text,
#switch-to-file {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: #2563eb;
  cursor: pointer;
}

#switch-to-text:hover,
#switch-to-file:hover {
  text-decoration: underline;
}

/* Поле для текста */

#text-input-container {
  display: none; /* изначально скрыто, включит JS */
}

#text-input-container p {
  margin: 0 0 6px 0;
  font-size: 14px;
  color: #374151;
}

#contract-text {
  width: 100%;
  min-height: 160px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

#contract-text:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px #2563eb33;
}

/* ---------- Бейдж доверия ---------- */

.trust-badge {
  margin-top: 18px;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
}

/* ---------- Кнопка запуска проверки ---------- */

#scan-button {
  margin-top: 18px;
  width: 100%;
}

/* ---------- Loader / ошибки ---------- */

#loader {
  margin-top: 16px;
  display: none;
  text-align: center;
  font-size: 14px;
  color: #4b5563;
}

#loader::after {
  content: "Анализируем договор…";
}

#error-output {
  margin-top: 12px;
  font-size: 13px;
  color: #b91c1c;
}

/* ---------- Блок результатов ---------- */

#result-output {
  display: none;
  margin-top: 28px;
}

#pdf-content-wrapper {
  background: #f9fafb;
  border-radius: 16px;
  padding: 20px 18px 22px;
  border: 1px solid #e5e7eb;
}

#pdf-content-wrapper h3 {
  margin: 0 0 14px 0;
  font-size: 18px;
}

/* Индикатор общего риска */

.risk-indicator {
  padding: 18px 14px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

/* Цвета уровней риска */

.risk-LOW {
  background: linear-gradient(to right, #22c55e, #16a34a);
}

.risk-MEDIUM {
  background: linear-gradient(to right, #f59e0b, #ea580c);
}

.risk-HIGH {
  background: linear-gradient(to right, #ef4444, #b91c1c);
}

/* Карточки рисков */

.risk-item {
  margin-top: 12px;
  padding: 14px 12px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.risk-item h4 {
  margin: 0 0 6px 0;
  font-size: 15px;
}

.risk-item p {
  margin: 0;
  font-size: 13px;
  color: #4b5563;
}

/* Список топ-рисков */

#top-risks-list {
  margin-top: 10px;
}

/* Текст перед заблюренными категориями */

#blurred-header {
  margin-top: 22px;
  font-size: 15px;
}

/* Область заблюренных категорий + оверлей-замок */

#blurred-categories-list-wrapper {
  position: relative;
  margin-top: 10px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px dashed #e5e7eb;
  background: #f3f4f6;
}

#blurred-categories-list {
  padding: 10px 150px 12px;
  filter: blur(3px);
  opacity: 0.85;
  min-height: 52px;
}

#blurred-categories-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.68), rgba(15, 23, 42, 0.82));
  color: #f9fafb;
  cursor: pointer;
}

#lock-icon {
  font-size: 22px;
  animation: lock-jiggle 2s infinite ease-in-out;
  display: inline-block;
}

#blurred-categories-overlay p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}

/* Плавное появление полного отчёта */

#full-report-details {
  display: none;
  margin-top: 24px;
}

/* Когда JS добавит .is-visible к full-report-details — скрываем paywall */
#full-report-details.is-visible + #buy-button {
  display: none;
}
#full-report-details.is-visible ~ #oferta-agreement-text {
  display: none;
}
#full-report-details.is-visible ~ #share-button {
  display: inline-flex;
}

/* Список полного отчёта */

#full-report-list {
  margin-top: 10px;
}

#summary-recommendations-list {
  margin-top: 8px;
  padding-left: 20px;
  font-size: 13px;
  color: #4b5563;
}

/* Кнопки под отчётом */

#buy-button {
  margin-top: 18px;
  width: 100%;
}

#oferta-agreement-text {
  margin-top: 8px;
  font-size: 12px;
  color: #6b7280;
}

#share-button,
#scan-another-button {
  margin-top: 12px;
  margin-right: 10px;
  padding-inline: 16px;
}

/* По умолчанию share скрыт, пока не откроют полный отчёт (JS поведение мы учли выше) */
#share-button {
  display: none;
}

/* ---------- Модальные окна (оплата / email) ---------- */

/* Оверлей модалки оплаты / e-mail */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: none;               /* по умолчанию скрыта */
  align-items: center;          /* центр по вертикали */
  justify-content: center;      /* центр по горизонтали */
  z-index: 1000;
  padding: 16px;
}

/* когда открыта — display:flex */
.modal-overlay.open {
  display: flex;
}

/* Контейнер контента модалки */
.modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.35);
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 32px);
  padding: 20px 18px;
  overflow-y: auto;
  margin: 0 auto;               /* гарантированный центр */
}



/* Крестик */

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 20px;
  cursor: pointer;
  color: #64748b;
}

.modal-close:hover {
  color: #4b5563;
}

/* Контейнер для виджета оплаты */

#payment-widget-container {
  margin-top: 14px;
  min-height: 180px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 12px 10px;
  background: #f9fafb;
}

/* Email форма */

#customer-email-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: inherit;
}

#email-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px #2563eb33;
}

#email-error {
  color: #dc2626;
  font-size: 12px;
  display: none;
  margin-top: 4px;
}

/* ---------- Анимации ---------- */

@keyframes lock-jiggle {
  0%, 100% { transform: translateY(0); }
  20% { transform: translateY(-2px) rotate(-3deg); }
  40% { transform: translateY(2px) rotate(3deg); }
  60% { transform: translateY(-1px) rotate(-2deg); }
  80% { transform: translateY(1px) rotate(2deg); }
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ---------- Адаптивность ---------- */

@media (max-width: 900px) {
  main {
    padding-inline: 12px;
  }

  .info-section {
    padding-inline: 16px;
  }
}

@media (max-width: 768px) {
  header h1 a {
    padding-inline: 14px;
  }

  #jurscan-container {
    padding-inline: 16px;
  }

  #input-container {
    flex-direction: column;
  }

  .step-grid,
  .use-case-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  #buy-button {
    position: sticky;
    bottom: 8px;
    z-index: 10;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
  }

  #pdf-content-wrapper {
    padding-bottom: 26px; /* чтобы sticky-кнопка не перекрывала текст */
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  
  .info-section {
    margin-top: 28px;
    padding: 18px 14px;
  }

  #jurscan-container {
    padding: 18px 14px 22px;
  }

  #scan-button,
  #buy-button {
    font-size: 14px;
  }
}
/* Общий контейнер лоадера */
#loader {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #f1f5f9;
  font-size: 14px;
  color: #475569;
  align-items: center;
  gap: 10px;
}

/* Когда активен */
#loader.active {
  display: flex;
}

/* Крутящийся кружок */
.loader-spinner {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 3px solid #cbd5e1;
  border-top-color: #3b82f6;
  animation: spin 0.8s linear infinite;
}

/* Бегающая полоска прогресса */
.loader-progress {
  margin-top: 8px;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.loader-progress-bar {
  height: 100%;
  width: 40%;
  border-radius: 999px;
  background-image: linear-gradient(to right, #3b82f6, #6366f1);
  animation: loading-bar 1.2s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes loading-bar {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(20%); }
  100% { transform: translateX(120%); }
}
@media (max-width: 600px) {
  .modal-overlay {
    padding: 0;
  }

  .modal-content {
    border-radius: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    padding: 16px 14px 24px;
  }

  #payment-widget-container iframe {
  display: block;
  width: 100% !important;
  margin: 0 auto;
}
}

/* Чтобы виджет тянулся на всю ширину */
#payment-widget-container iframe {
  width: 100% !important;
}
.report-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Одинаковый стиль для обеих кнопок под отчётом */
.report-actions .btn-outline,
.report-actions #share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  box-shadow: none;
  background-image: none; /* перекрываем градиент от .btn */
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.report-actions .btn-outline:hover,
.report-actions #share-button:hover {
  background: #e5f0ff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.report-actions .btn-outline:active,
.report-actions #share-button:active {
  transform: translateY(0);
  box-shadow: none;
}
@media print {
  /* Сначала скрываем всё */
  body * {
    visibility: hidden;
  }

  /* Показываем только сам отчёт */
  #pdf-content-wrapper,
  #pdf-content-wrapper * {
    visibility: visible;
  }

  /* Разворачиваем отчёт на всю страницу */
  #pdf-content-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 0 10mm; /* небольшие поля для читаемости */
  }

  /* Кнопки под отчётом и остальные интерактивные элементы не печатаем */
  .report-actions {
    display: none !important;
  }
}
/* =========================================
   ЧИСТЫЙ ДИЗАЙН (FINAL)
   ========================================= */

/* --- 1. Блок предложения (вместо старой кнопки) --- */
.clean-offer-block {
  margin-top: 25px;
  background: #f8fafc; /* Очень легкий серый фон */
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
}

/* Красный бейдж */
.offer-badge {
  display: inline-block;
  background: #fef2f2;
  color: #ef4444;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  border: 1px solid #fee2e2;
}

/* Заголовок блока */
.offer-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.4;
}

/* Список - УБИРАЕМ ТОЧКИ, ставим галочки */
.offer-list {
  list-style: none !important; /* Убирает стандартную точку */
  padding: 0;
  margin: 0 auto 20px auto;
  text-align: left;
  max-width: 400px;
}

.offer-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #475569;
  line-height: 1.4;
}

.offer-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e; /* Зеленая галочка */
  font-weight: bold;
}

/* Главная кнопка действия */
.btn-main-action {
  background: #2563eb;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-main-action:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.offer-footer {
  margin-top: 12px;
  font-size: 12px;
  color: #94a3b8;
}

/* --- 2. Модальное окно (Clean Modal) --- */
.clean-modal {
  padding: 30px 25px;
  border-radius: 20px;
  max-width: 420px;
  background: #fff;
  text-align: center;
}

.c-modal-title {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.c-modal-desc {
  margin: 0 0 20px 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.4;
}

.c-label {
  display: block;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
  margin-left: 2px;
}

.c-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  margin-bottom: 12px;
  outline: none;
  transition: border 0.2s;
}

.c-input:focus {
  border-color: #2563eb;
  background: #eff6ff;
}

.full-width {
  width: 100%;
}

.c-trust-row {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.c-legal-note {
  margin-top: 8px;
  font-size: 11px;
  color: #94a3b8;
}

/* Мобильный адаптив */
@media (max-width: 480px) {
  .clean-offer-block {
    padding: 20px 15px;
  }
  .clean-modal {
    padding: 25px 15px;
    width: 100%;
    height: auto;
    border-radius: 16px;
  }
  .c-modal-title {
    font-size: 18px;
  }
}