/* ─────────────────────────────────────────────
   ПАЛИТРА (все цвета жёстко — без var(), для Tilda)
   Акцент оранжевый : #e05a1c  /  тёмный : #b84510
   Тёмно-зелёный фон: #00432c
   Текст на зелёном  : #f0f7f4 (основной), #a8ccbc (второстепенный)
   Светлый фон       : #faf9f7
   Тёмный текст      : #1a1a18
   Серый текст       : #7a7a74
───────────────────────────────────────────── */

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

body {
  background: #f4f2ee;
  color: #1a1a18;
  line-height: 1.6;
}

.dz-section { padding: 72px 0; }

.dz-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
table {
  border-collapse: collapse; /* чтобы не было двойных границ */
}

th,
td {
  padding-left: 3px;
  padding-right: 3px;
}
/* Гарантийная плашка */
.dz-hero-form-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0f8f4;
  border: 1px solid #c4e8d0;
  border-radius: 8px;
  padding: 11px 14px;
  margin-bottom: 20px;
}

.dz-hero-form-guarantee-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.dz-hero-form-guarantee-text {
  font-size: 12px;
  color: #1a5c2f;
  font-weight: 600;
  line-height: 1.4;
}

.dz-hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 20px;
  background: #00432c;
  border: 1px solid #c4e8d0;
  border-radius: 8px;
  padding: 11px 14px;
  margin-bottom: 20px;
}

.dz-hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e05a1c;
  animation: dz-blink 2s ease-in-out infinite;
}

/* ════════════════════════════════════════════
   ТОП-БАР — СКИДКА
════════════════════════════════════════════ */

#dz-topbar {
  background: #00432c;
  border-bottom: 2px solid rgba(224,90,28,0.45);
  padding: 11px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

.dz-topbar-icon {
  font-size: 18px;
  flex-shrink: 0;
  animation: dz-pulse 2.2s ease-in-out infinite;
}

@keyframes dz-pulse {
  0%, 100% { transform: scale(1);   opacity: 1;    }
  50%       { transform: scale(1.18); opacity: 0.82; }
}

.dz-topbar-text {
  font-size: 14px;
  font-weight: 600;
  color: #f0f7f4;
  line-height: 1.4;
  text-align: center;
}

.dz-topbar-text strong {
  color: #ffffff;
  font-weight: 800;
}

.dz-topbar-text em {
  font-style: normal;
  color: #e05a1c;
  font-weight: 700;
}

.dz-topbar-progress-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.dz-topbar-bar {
  width: 110px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
}

.dz-topbar-fill {
  height: 100%;
  background: #e05a1c;
  border-radius: 3px;
  width: 0%;
  transition: width 1s linear;
}

.dz-topbar-pct {
  font-size: 13px;
  font-weight: 800;
  color: #e05a1c;
  min-width: 34px;
  text-align: left;
}

.dz-topbar-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(168,204,188,0.55);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.15s;
}

.dz-topbar-close:hover { color: #f0f7f4; }

/* Скрытое состояние топ-бара */
#dz-topbar.dz-topbar-hidden {
  display: none;
}

/* Карточка скидки в блоке возражений — выделенный стиль */
.dz-obj-card-accent {
  background: rgba(224,90,28,0.10);
  border: 1px solid rgba(224,90,28,0.30);
  border-radius: 12px;
  padding: 26px;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.dz-obj-card-accent::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #e05a1c;
  border-radius: 12px 12px 0 0;
}

.dz-obj-card-accent:hover {
  background: rgba(224,90,28,0.16);
  border-color: rgba(224,90,28,0.50);
}

.dz-obj-card-accent .dz-obj-q { color: #f0f7f4; }

.dz-obj-card-accent .dz-obj-a { color: #f0f7f4; }

.dz-obj-card-accent .dz-obj-a strong { color: #ffffff; }

/* Мини-прогресс-бар внутри карточки */
.dz-obj-progress-wrap {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dz-obj-bar {
  flex: 1;
  height: 7px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  overflow: hidden;
}

.dz-obj-bar-fill {
  height: 100%;
  background: #e05a1c;
  border-radius: 4px;
  width: 0%;
  transition: width 1s linear;
}

.dz-obj-bar-label {
  font-size: 12px;
  font-weight: 800;
  color: #e05a1c;
  min-width: 30px;
  text-align: right;
}

/* ════════════════════════════════════════════
   БЛОК 1 — ЦИФРЫ ДОВЕРИЯ
   Фон: #00432c  Текст: #f0f7f4 / #a8ccbc
════════════════════════════════════════════ */

#dz-block-stats {
  background: #00432c;
  padding: 72px 0;
}

#dz-block-stats .dz-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e05a1c;
  margin-bottom: 12px;
  display: block;
}

#dz-block-stats .dz-section-title {
  font-size: 38px;
  font-weight: 700;
  color: #f0f7f4;
  line-height: 1.2;
  margin-bottom: 16px;
}

#dz-block-stats .dz-section-sub {
  font-size: 17px;
  color: #a8ccbc;
  max-width: 560px;
  line-height: 1.65;
  margin: 0 auto;
}

.dz-stats-header {
  text-align: center;
  margin-bottom: 52px;
}

.dz-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.25);
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 700px) {
  .dz-stats-grid { grid-template-columns: 1fr 1fr; }
  #dz-block-stats .dz-section-title { font-size: 26px; }
}

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

.dz-stat-card {
  background: rgba(0,0,0,0.14);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: background 0.2s;
}

.dz-stat-card:hover { background: rgba(0,0,0,0.26); }

.dz-stat-icon { font-size: 28px; margin-bottom: 4px; }

.dz-stat-num {
  font-size: 52px;
  font-weight: 800;
  color: #e05a1c;
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline;
}

.dz-stat-unit {
  font-size: 22px;
  font-weight: 700;
  color: #e05a1c;
  display: inline;
}

.dz-stat-label {
  font-size: 14px;
  color: #a8ccbc;
  line-height: 1.45;
  max-width: 180px;
}

/* ════════════════════════════════════════════
   БЛОК 2 — ДО И ПОСЛЕ
   Фон: #faf9f7  Текст: #1a1a18 / #7a7a74
════════════════════════════════════════════ */

#dz-block-ba {
  background: #faf9f7;
  padding: 72px 0;
}

#dz-block-ba .dz-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e05a1c;
  margin-bottom: 12px;
  display: block;
}

#dz-block-ba .dz-section-title {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a18;
  line-height: 1.2;
  margin-bottom: 16px;
}

#dz-block-ba .dz-section-sub {
  font-size: 17px;
  color: #7a7a74;
  max-width: 560px;
  line-height: 1.65;
}

.dz-ba-header { margin-bottom: 48px; }

.dz-ba-pair {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

@media (max-width: 680px) {
  .dz-ba-pair { grid-template-columns: 1fr; }
  #dz-block-ba .dz-section-title { font-size: 26px; }
  .dz-ba-arrow { transform: rotate(90deg); }
}

.dz-ba-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.10);
  overflow: hidden;
}

.dz-ba-thumb {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
}

.dz-ba-thumb-before {
  background: linear-gradient(135deg, #fdf0e8 0%, #f9d8c4 100%);
}

.dz-ba-thumb-after {
  background: linear-gradient(135deg, #e8f5ec 0%, #c4e8d0 100%);
}

.dz-ba-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.dz-ba-badge-before { background: #fde8dc; color: #8c3a12; }
.dz-ba-badge-after  { background: #d4edda; color: #1a5c2f; }

.dz-ba-body { padding: 20px 22px; }

.dz-ba-type {
  font-size: 12px;
  font-weight: 700;
  color: #e05a1c;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.dz-ba-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a18;
  margin-bottom: 7px;
  line-height: 1.3;
}

.dz-ba-desc {
  font-size: 14px;
  color: #7a7a74;
  line-height: 1.55;
}

.dz-ba-result {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
}

.dz-ba-result-bad  { color: #8c3a12; background: #fde8dc; }
.dz-ba-result-good { color: #1a5c2f; background: #d4edda; }

.dz-ba-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dz-ba-arrow {
  width: 44px;
  height: 44px;
  background: #e05a1c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.dz-ba-cta {
  text-align: center;
  margin-top: 16px;
}

.dz-ba-cta p {
  font-size: 15px;
  color: #7a7a74;
  margin-bottom: 18px;
}

/* ════════════════════════════════════════════
   БЛОК 3 — ЗАКРЫТИЕ ВОЗРАЖЕНИЙ
   Фон: #00432c  Текст: #f0f7f4 / #a8ccbc
════════════════════════════════════════════ */

#dz-block-obj {
  background: #00432c;
  padding: 72px 0;
}

#dz-block-obj .dz-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e05a1c;
  margin-bottom: 12px;
  display: block;
}

#dz-block-obj .dz-section-title {
  font-size: 38px;
  font-weight: 700;
  color: #f0f7f4;
  line-height: 1.25;
  margin-bottom: 16px;
}

#dz-block-obj .dz-section-sub {
  font-size: 17px;
  color: #a8ccbc;
  max-width: 560px;
  line-height: 1.65;
}

.dz-obj-header { margin-bottom: 48px; }

.dz-obj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 860px) {
  .dz-obj-grid { grid-template-columns: 1fr 1fr; }
  #dz-block-obj .dz-section-title { font-size: 26px; }
}

@media (max-width: 540px) {
  .dz-obj-grid { grid-template-columns: 1fr; }
}

.dz-obj-card {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 26px;
  transition: background 0.2s, border-color 0.2s;
}

.dz-obj-card:hover {
  background: rgba(0,0,0,0.28);
  border-color: rgba(224,90,28,0.40);
}

.dz-obj-q {
  font-size: 14px;
  font-weight: 700;
  color: #a8ccbc;
  margin-bottom: 14px;
  line-height: 1.45;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.dz-obj-q-icon { font-size: 17px; flex-shrink: 0; margin-top: 1px; }

.dz-obj-line {
  width: 28px;
  height: 2px;
  background: #e05a1c;
  margin-bottom: 14px;
  border-radius: 2px;
}

.dz-obj-a {
  font-size: 14px;
  color: #f0f7f4;
  line-height: 1.65;
}

.dz-obj-a strong { color: #ffffff; }

.dz-obj-tag {
  display: inline-block;
  margin-top: 13px;
  font-size: 11px;
  font-weight: 700;
  color: #e05a1c;
  background: rgba(224,90,28,0.16);
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.dz-obj-cta {
  text-align: center;
  margin-top: 52px;
}

.dz-obj-cta p {
  color: #a8ccbc;
  font-size: 15px;
  margin-bottom: 20px;
}

.dz-obj-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════
   БЛОК 4 — B2B
   Фон: #faf9f7  Текст: #1a1a18 / #7a7a74
════════════════════════════════════════════ */

#dz-block-b2b {
  background: #faf9f7;
  padding: 72px 0;
}

#dz-block-b2b .dz-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e05a1c;
  margin-bottom: 12px;
  display: block;
}

#dz-block-b2b .dz-section-title {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a18;
  line-height: 1.2;
  margin-bottom: 16px;
}

#dz-block-b2b .dz-section-sub {
  font-size: 17px;
  color: #7a7a74;
  line-height: 1.65;
  margin-top: 12px;
}

.dz-b2b-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 780px) {
  .dz-b2b-inner { grid-template-columns: 1fr; gap: 36px; }
  #dz-block-b2b .dz-section-title { font-size: 26px; }
}

.dz-b2b-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.dz-b2b-tag {
  font-size: 13px;
  font-weight: 600;
  color: #3d3d3a;
  background: #eae8e2;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 7px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.dz-b2b-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e05a1c;
  flex-shrink: 0;
}

.dz-b2b-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.dz-b2b-list-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: #3d3d3a;
  line-height: 1.5;
}

.dz-b2b-list-item-arrow {
  color: #e05a1c;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.dz-b2b-list-header {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a18;
  margin-bottom: 14px;
}

.dz-b2b-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 12px;
  padding: 30px;
}

.dz-b2b-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a18;
  margin-bottom: 8px;
  line-height: 1.3;
}

.dz-b2b-card-sub {
  font-size: 14px;
  color: #7a7a74;
  margin-bottom: 22px;
  line-height: 1.55;
}

.dz-b2b-perks {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 24px;
}

.dz-b2b-perk {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.dz-b2b-perk-icon {
  width: 32px;
  height: 32px;
  background: #fdf0e8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.dz-b2b-perk-body { padding-top: 5px; }

.dz-b2b-perk-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a18;
  display: block;
  margin-bottom: 2px;
}

.dz-b2b-perk-desc {
  font-size: 13px;
  color: #7a7a74;
  line-height: 1.5;
}

.dz-b2b-fields {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
}

.dz-b2b-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 6px;
  font-size: 14px;
  color: #1a1a18;
  outline: none;
  font-family: inherit;
  background: #ffffff;
}

.dz-b2b-input:focus { border-color: #e05a1c; }

.dz-b2b-note {
  font-size: 12px;
  color: #7a7a74;
  text-align: center;
  margin-top: 10px;
}


/* ════════════════════════════════════════════
   ОБЩИЕ КНОПКИ
════════════════════════════════════════════ */

.dz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, opacity 0.15s;
  font-family: inherit;
  line-height: 1;
}

.dz-btn-primary,
.dz-btn-primary:link,
.dz-btn-primary:visited,
.dz-btn-primary:active {
  background: #e05a1c;
  color: #ffffff !important;
  text-decoration: none !important;
}

.dz-btn-primary:hover {
  background: #b84510;
  color: #ffffff !important;
  text-decoration: none !important;
}

.dz-btn-ghost-dark,
.dz-btn-ghost-dark:link,
.dz-btn-ghost-dark:visited,
.dz-btn-ghost-dark:active {
  background: rgba(255,255,255,0.10);
  color: #f0f7f4 !important;
  border: 1px solid rgba(255,255,255,0.22);
  text-decoration: none !important;
}

.dz-btn-ghost-dark:hover {
  background: rgba(255,255,255,0.17);
  color: #f0f7f4 !important;
  text-decoration: none !important;
}

.dz-btn-full { width: 100%; }

.dz-btn-link,
.dz-btn-link:link,
.dz-btn-link:visited,
.dz-btn-link:active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: #e05a1c !important;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  padding: 10px 0;
  font-family: inherit;
  transition: color 0.15s;
}

.dz-btn-link:hover {
  color: #b84510 !important;
  text-decoration: none !important;
}

.dz-btn-wa,
.dz-btn-wa:link,
.dz-btn-wa:visited,
.dz-btn-wa:active {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #25d366;
  color: #ffffff !important;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
}

.dz-btn-wa:hover {
  background: #1ead53;
  color: #ffffff !important;
  text-decoration: none !important;
}

.dz-btn-tg,
.dz-btn-tg:link,
.dz-btn-tg:visited,
.dz-btn-tg:active {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #0088cc;
  color: #ffffff !important;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
}

.dz-btn-tg:hover {
  background: #006fa3;
  color: #ffffff !important;
  text-decoration: none !important;
}

.dz-messengers {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}