@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

.pilp-content {
  width: 100%;
  padding: 20px 30px;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
  color: #1a1a1a;
}

/* секции */
.pilp-section {
  display: none;
  max-width: 800px;
}
.pilp-section.active {
  display: block;
}

/* заголовки */
.pilp-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: #111;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.pilp-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px 0;
  color: #111;
}

.pilp-content p {
  color: #444;
  line-height: 1.65;
  margin: 0 0 14px 0;
  font-size: 15px;
  font-weight: 300;
}

/* лид-абзац */
.pilp-lead {
  font-size: 17px !important;
  font-weight: 400 !important;
  color: #222 !important;
  border-left: 3px solid #111;
  padding-left: 16px;
  margin-bottom: 24px !important;
}

/* разделитель */
.pilp-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 24px 0;
}

/* статистические карточки */
.pilp-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0 24px 0;
}
.pilp-stat-card {
  flex: 1 1 140px;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 16px 18px;
}
.pilp-stat-card .stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #111;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.pilp-stat-card .stat-label {
  font-size: 12px;
  color: #666;
  font-weight: 400;
  line-height: 1.4;
  display: block;
}

/* список-иконки */
.pilp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.pilp-list li {
  font-size: 15px;
  color: #444;
/*  font-weight: 300; */
  font-weight: 400;
  padding: 7px 0 7px 22px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  line-height: 1.5;
}
.pilp-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #111;
  font-weight: 600;
  font-size: 13px;
}
.pilp-list li:last-child {
  border-bottom: none;
}

/* теги/бейджи */
.pilp-badge {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  margin: 0 4px 8px 0;
  text-transform: uppercase;
}
.pilp-badges {
  margin: 12px 0 20px 0;
}

/* блок с подсветкой */
.pilp-highlight {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 18px 20px;
  margin: 16px 0;
}
.pilp-highlight p {
  margin: 0;
}

/* таблица компонентов */
.pilp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px 0;
  font-size: 14px;
}
.pilp-table th {
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  padding: 8px 12px;
  border-bottom: 2px solid #111;
}
.pilp-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  color: #444;
/*  font-weight: 300; */
  font-weight: 400;
  line-height: 1.5;
}
.pilp-table td:first-child {
  font-weight: 600;
  color: #111;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  white-space: nowrap;
  width: 120px;
}

/* двухколоночный лэйаут */
.pilp-two-col {
  display: flex;
  gap: 24px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.pilp-two-col .col {
  flex: 1 1 200px;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 16px 18px;
}
.pilp-two-col .col h3 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #111;
}
.pilp-two-col .col p, .pilp-two-col .col li {
  font-size: 13px;
  color: #555;
/*  font-weight: 300; */
  font-weight: 400;
  line-height: 1.55;
}
.pilp-two-col .col ul {
  padding-left: 14px;
  margin: 0;
}
.pilp-two-col .col li {
  margin-bottom: 4px;
}

/* этапы/шаги */
.pilp-steps {
  margin: 16px 0 24px 0;
}
.pilp-step {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.pilp-step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
}
.pilp-step-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin: 4px 0 4px 0;
  color: #111;
}
.pilp-step-body p {
  margin: 0;
  font-size: 14px;
}

/* CTA */
.pilp-cta {
  margin-top: 20px;
  display: inline-block;
  padding: 11px 24px;
  background: #111;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}
.pilp-cta:hover {
  background: #333;
}
.pilp-cta-secondary {
  margin-top: 12px;
  display: inline-block;
  padding: 11px 24px;
  background: transparent;
  color: #111;
  border: 1.5px solid #111;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  margin-left: 10px;
}

/* метка секции */
.pilp-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
  display: block;
}

/* важно для Joomla/SP Builder */
.pilp-content * {
  box-sizing: border-box;
}

/* адаптив */
@media (max-width: 768px) {
  .pilp-content {
    padding: 15px 15px;
  }
  .pilp-content h1 {
    font-size: 26px;
  }
  .pilp-stats {
    gap: 10px;
  }
  .pilp-stat-card .stat-number {
    font-size: 22px;
  }
  .pilp-two-col {
    flex-direction: column;
  }
  .pilp-table td:first-child {
    white-space: normal;
  }
}

/***   ***/

