/* === H1–H6: Стили заголовков === */

/* 1. Заголовок с иконкой и подчеркиванием */
.icon-underline::before {
  content: "📘";
  margin-right: 8px;
}
.icon-underline {
  border-bottom: 2px solid #0073aa;
  padding-bottom: 4px;
}

/* 2. Заголовок с фоном и тенью */
.bg-shadow {
  background-color: #f0f0f0;
  padding: 10px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

/* 3. Заголовок с вертикальной линией слева */
.left-line {
  border-left: 4px solid #0073aa;
  padding-left: 10px;
}

/* 4. Градиентный заголовок */
.gradient-text {
  background: linear-gradient(to right, #0073aa, #00a0d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 5. Заголовок с иконкой информации */
.info-icon::after {
  content: " ℹ️";
  font-size: 0.8em;
  margin-left: 5px;
}

/* === UL/OL: Списки с кастомными стилями === */
.tabs-container {
  margin: 30px 0;
}

.tabs-nav {
  display: flex;
  border-bottom: 2px solid #ddd;
}

.tabs-nav button {
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.tabs-nav button.active {
  border-bottom: 3px solid #0073aa;
  color: #0073aa;
}

.tabs-content > div {
  display: none;
  padding: 20px 0;
}

.tabs-content > div.active {
  display: block;
}












/* Простейшие стили, если нет общего подключения */
.style-dark { background: #222; color: #fff; }
.style-gradient { background: linear-gradient(to right, #e0f7fa, #e8f5e9); }

.animate-fade { animation: fadeIn 0.5s ease-in; }
.animate-slide { animation: slideIn 0.5s ease-in-out; }

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

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}









/* 1. Список с Font Awesome иконками (требует подключения FA) */
.fa-ul {
  list-style-type: none;
  padding-left: 1.5em;
  position: relative;
}
.fa-ul li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: 0;
}

/* 2. Список с изображением-маркером */
ul.custom-marker {
  list-style-image: url('/wp-content/uploads/custom-marker.png'); /* заменить на актуальную иконку */
}

/* 3. Список с цветными маркерами */
ul.color-markers li::before {
  content: "•";
  color: #0073aa;
  margin-right: 8px;
  font-size: 1.2em;
  display: inline-block;
  width: 1em;
}

/* 4. Анимация при наведении */
ul.animated li:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* 5. Градиентный фон элементов списка */
ul.gradient-bg li {
  background: linear-gradient(to right, #f0f0f0, #d9d9d9);
  padding: 6px 12px;
  border-radius: 5px;
  margin-bottom: 5px;
}

/* === Blockquote: Стили цитат === */

/* 1. Левая цветная полоса */
blockquote.left-border {
  border-left: 4px solid #0073aa;
  padding-left: 10px;
  color: #555;
}

/* 2. Фон и кавычки */
blockquote.bg-quote {
  background-color: #f9f9f9;
  padding: 15px 20px;
  position: relative;
  font-style: italic;
  border-radius: 5px;
}
blockquote.bg-quote::before {
  content: "“";
  font-size: 2em;
  position: absolute;
  left: 10px;
  top: 5px;
  color: #ccc;
}

/* 3. Тень и скругления */
blockquote.shadow-rounded {
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  border-radius: 5px;
  padding: 10px 15px;
}

/* 4. Градиентная рамка */
blockquote.gradient-border {
  border: 2px solid;
  border-image: linear-gradient(to right, #0073aa, #00a0d2) 1;
  padding: 10px;
  border-radius: 6px;
}

/* 5. Иконка информации */
blockquote.info-icon::before {
  content: "ℹ️ ";
  font-size: 1.2em;
  margin-right: 5px;
}











.notice-block {
    padding: 16px 20px;
    border-radius: 8px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 1.1em;
    line-height: 1.5;
  }

.notice-block .icon {
  font-size: 1.5em;
  flex-shrink: 0;
  line-height: 2.1em;
  display: flex;
  align-items: center;
}

/* Встроенные иконки */
.notice-info .icon::before  { content: ""; }
.notice-warning .icon::before { content: ""; }
.notice-success .icon::before { content: ""; }
.notice-error .icon::before   { content: ""; }
.notice-tip .icon::before     { content: ""; }

/* Стили по типам */
.notice-info {
  background: #e7f3fe;
  color: #0c5460;
      margin: 20px 0 35px 0;
  border-left: 6px solid #17a2b8;
}
.notice-warning {
  background: #fff3cd;
  color: #856404;
  border-left: 6px solid #ffc107;
}
.notice-success {
  background: #d4edda;
  color: #155724;
  border-left: 6px solid #28a745;
}
.notice-error {
  background: #f8d7da;
  color: #721c24;
  border-left: 6px solid #dc3545;
}
.notice-tip {
  background: #fff3e0;
  color: #5d4037;
  border-left: 6px solid #ffa726;
}













.advantages-box {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.advantages-box .column {
  flex: 1;
  min-width: 250px;
  border-radius: 8px;
  padding: 15px 20px;
}

.advantages-box .pros {
  background: #e9f7ef;
  border-left: 4px solid #28a745;
}

.advantages-box .cons {
  background: #fdecea;
  border-left: 4px solid #dc3545;
}

.advantages-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.advantages-box li::before {
  margin-right: 8px;
}

.advantages-box .pros li::before {
  content: "✔️";
  color: #28a745;
}

.advantages-box .cons li::before {
  content: "❌";
  color: #dc3545;
}


/* Стили темы */
.advantages-box.style-light { background: #fff; }
.advantages-box.style-dark { background: #333; color: #fff; }
.advantages-box.style-gradient {
  background: linear-gradient(45deg, #e0f7fa, #e8f5e9);
}

/* Анимации */
.animate-fade { animation: fadeIn 0.6s ease-in-out; }
.animate-slide { animation: slideIn 0.5s ease-in-out; }

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

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}









.vote-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.vote-buttons button {
  background: #f0f0f0;
  border: none;
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vote-buttons button:hover {
  background: #e2e2e2;
}

.vote-buttons .like {
  color: #28a745;
}

.vote-buttons .dislike {
  color: #dc3545;
}



.faq-item {
  margin: 10px 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.faq-item summary {
  padding: 12px 16px;
  background: #f8f8f8;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-item[open] summary {
  background: #eef6ff;
}

.faq-item summary::marker {
  display: none;
}

.faq-item p {
  padding: 12px 16px;
  margin: 0;
}

.review-block {
  border: 1px solid #ddd;
  border-left: 4px solid #4caf50;
  background: #f9f9f9;
  padding: 16px 20px;
  border-radius: 8px;
  margin: 20px 0;
  position: relative;
  transition: all 0.5s ease;
}

.review-block.style-dark {
  background: #2f2f2f;
  color: #eee;
  border-left-color: #ffc107;
}

.review-block.style-dark .review-rating {
  color: #ffeb3b;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  display: block;
}

/* Анимации */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

.slide-in {
  transform: translateX(-30px);
  opacity: 0;
  animation: slideIn 0.6s ease forwards;
}
@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.zoom-in {
  transform: scale(0.8);
  opacity: 0;
  animation: zoomIn 0.6s ease forwards;
}
@keyframes zoomIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}



.tip-block {
  background: #fff3e0;
  border-left: 4px solid #ffa726;
  padding: 16px 20px;
  border-radius: 6px;
  margin: 20px 0;
  position: relative;
  font-size: 1rem;
  color: #5d4037;
  cursor: default;
}

.tip-block img {
  width: 1.5em;
  height: auto;
  vertical-align: middle;
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.4em;
  cursor: pointer;
  color: #888;
}


.feature-card {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
}
.feature-card .icon {
  font-size: 2.5em;
  color: #0073aa;
  margin-bottom: 12px;
}
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.3em;
}
.feature-card p {
  color: #555;
  font-size: 0.95em;
}

/* Сетка */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Основной стиль карточки */
.feature-card {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
  width: 280px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
}
.feature-card .icon {
  font-size: 2.5em;
  color: #0073aa;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-size: 1.3em;
  margin: 0 0 10px;
}
.feature-card p {
  font-size: 0.95em;
  color: #555;
}

/* Пресеты */
.feature-dark {
  background: #263238;
  color: #fff;
}
.feature-dark .icon { color: #4fc3f7; }
.feature-dark p { color: #ccc; }

.feature-light {
  background: #f9f9f9;
}

.feature-gradient {
  background: linear-gradient(135deg, #0073aa, #00a0d2);
  color: #fff;
}
.feature-gradient p { color: #e0f7fa; }

.feature-outlined {
  border: 2px dashed #0073aa;
}

/* Анимации */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

.animate-slide-up {
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.6s ease forwards;
}
@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}








.checklist {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
}

.checklist li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
  color: #4caf50;
}




.cta-block {
  background: linear-gradient(135deg, #0073aa, #00a0d2);
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 30px 0;
}

.cta-block h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.cta-block p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.cta-block a.cta-button {
  background: #fff;
  color: #0073aa;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-block a.cta-button:hover {
  background: #f5f5f5;
}










.cta-dark {
  background: #1e1e1e;
  color: #fff;
}
.cta-dark .cta-button {
  background: #fff;
  color: #1e1e1e;
}
.cta-dark .cta-button:hover {
  background: #e0e0e0;
}

.cta-minimal {
  background: transparent;
  color: #0073aa;
  border: 2px dashed #0073aa;
  padding: 20px;
}
.cta-minimal .cta-button {
  background: #0073aa;
  color: #fff;
}
.cta-minimal .cta-button:hover {
  background: #005c87;
}



.checklist li::before {
  content: var(--icon, "✅");
}
.checklist li {
  animation: fadeInUp 0.4s ease;
}

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






.tabs-container { margin: 30px 0; }
.tabs-nav {
  display: flex;
  border-bottom: 2px solid #ddd;
  margin-bottom: 10px;
}
.tab-btn {
  padding: 10px 20px;
  background: none;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
  border-bottom: 3px solid transparent;
}
.tab-btn.active {
  border-bottom: 3px solid #0073aa;
  color: #0073aa;
}
.tabs-content > div {
  display: none;
}
.tabs-content > div.active {
  display: block;
}
.table-scroll {
  overflow-x: auto;
  width: 100%;
}
.table-scroll table {
  min-width: 600px;
}




.tabs-container {
  margin: 30px 0;
}

.tabs-nav {
  display: flex;
  border-bottom: 2px solid #ddd;
}

.tabs-nav button {
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.tabs-nav button.active {
  border-bottom: 3px solid #0073aa;
  color: #0073aa;
}

.tabs-content > div {
  display: none;
  padding: 20px 0;
}

.tabs-content > div.active {
  display: block;
}

.cardListMainFILT{
    display: flex
}


.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.95em;
  border: 1px solid #ccc;
}

.comparison-table thead {
  background-color: #f1f1f1;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  border: 1px solid #ddd;
  text-align: center;
}

.comparison-table tr:hover {
  background-color: #f9f9f9;
}

.comparison-table .highlight {
  background-color: #e0f7fa;
  font-weight: bold;
}

.step-block {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
        margin: 20px 0 35px 0;
}

.step-item {
  flex: 1 1 250px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-left: 6px solid #2196f3;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  counter-increment: step-counter;
}

.step-item::before {
  content: "Шаг " counter(step-counter);
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 0.8em;
  background: #2196f3;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
}


.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.tag-item {
  background: #e0f7fa;
  color: #00796b;
  padding: 6px 12px;
  font-size: 0.9em;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s;
}

.tag-item:hover {
  background: #b2ebf2;
}




.security-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #e8f5e9;
  border-left: 5px solid #4caf50;
  border-radius: 8px;
}

.security-benefits .benefit {
  display: flex;
  gap: 10px;
  align-items: center;
}

.security-benefits .benefit i {
  color: #4caf50;
  font-size: 1.2em;
}





.progress-container {
  margin: 20px 0;
}

.progress-label {
  margin-bottom: 6px;
  font-weight: bold;
  color: #444;
}

.progress-bar {
  height: 20px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(to right, #4caf50, #81c784);
  width: 65%; /* динамически менять */
  transition: width 0.5s ease;
}


.cta-timer {
  background: #fffbe6;
  border-left: 5px solid #ff9800;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
  text-align: center;
  position: relative;
}

.cta-timer h2 {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.cta-timer .timer {
  font-family: monospace;
  font-size: 1.4em;
  color: #e65100;
  background: #fff3cd;
  padding: 8px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 10px;
}





.review-stars {
  background: #f4f6f8;
  border: 1px solid #ddd;
  border-left: 5px solid #ff9800;
  border-radius: 8px;
  padding: 16px;
  margin: 20px 0;
}

.review-stars .author {
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 1.1em;
}

.review-stars .stars {
  color: #ffc107;
  font-size: 1.2em;
  margin-bottom: 10px;
}





.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.filter-tags .tag {
  background: #eeeeee;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9em;
  transition: 0.2s;
}

.filter-tags .tag.active,
.filter-tags .tag:hover {
  background: #0073aa;
  color: #fff;
}






.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.news-card {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 12px;
}

.news-card img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
}

.news-card .content {
  flex: 1;
}

.news-card h4 {
  margin: 0;
  font-size: 1.1em;
  color: #0073aa;
}

.news-card .meta {
  font-size: 0.8em;
  color: #888;
  margin-top: 4px;
}







.course-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-3px);
}

.course-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.course-card .content {
  padding: 15px;
}

.course-card .title {
  font-size: 1.1em;
  margin-bottom: 8px;
}

.course-card .desc {
  font-size: 0.9em;
  color: #666;
}








.tabs-container {
  margin: 30px 0;
}

.tabs-nav {
  display: flex;
  border-bottom: 2px solid #ddd;
}

.tabs-nav button {
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.tabs-nav button.active {
  border-bottom: 3px solid #0073aa;
  color: #0073aa;
}

.tabs-content > div {
  display: none;
  padding: 20px 0;
}

.tabs-content > div.active {
  display: block;
}



.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}


.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.95em;
}

.specs-table th,
.specs-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.specs-table th {
  background: #f8f8f8;
  width: 30%;
}



.rating-stars {
  display: inline-flex;
  gap: 4px;
  font-size: 1.4em;
  color: #ffc107;
}

.rating-stars[data-rating]::after {
  content: attr(data-rating) ' / 5';
  font-size: 0.8em;
  color: #999;
  margin-left: 8px;
}

.subscribe-form {
  background: #f0f8ff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin: 30px 0;
}

.subscribe-form input[type="email"] {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 30px;
  width: 60%;
  max-width: 320px;
  font-size: 1rem;
  margin-right: 10px;
}

.subscribe-form button {
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  background: #0073aa;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.subscribe-form button:hover {
  background: #005c87;
}



.sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0073aa;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  font-size: 1rem;
}

.sticky-banner .btn {
  background: #fff;
  color: #0073aa;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}

.sticky-banner .btn:hover {
  background: #f5f5f5;
}



.trust-block {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #e8f5e9;
  border-left: 5px solid #4caf50;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
}

.trust-block .icon {
  font-size: 2em;
  color: #4caf50;
}

.trust-block .text {
  font-size: 1rem;
  color: #333;
}



.lead-form {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 25px;
  border-radius: 10px;
  max-width: 500px;
  margin: 30px auto;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.lead-form button {
  background: #0073aa;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

.pricing-plans {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.plan-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.plan-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.plan-card .price {
  font-size: 1.6em;
  color: #0073aa;
  margin: 10px 0;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.plan-card ul li {
  margin: 5px 0;
}

.plan-card .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0073aa;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
}




.review-swiper {
  padding: 20px 0;
}

.review-slide {
  background: #f4f6f8;
  border: 1px solid #ddd;
  border-left: 4px solid #0073aa;
  border-radius: 8px;
  padding: 16px;
  font-style: italic;
}





.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.4em;
  cursor: pointer;
  color: #888;
}





.like-block {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1em;
  cursor: pointer;
  user-select: none;
}

.like-block.active {
  color: #4caf50;
}


.carousel-container {
  overflow-x: auto;
  display: flex;
  gap: 16px;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.carousel-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 240px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}



.video-review {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin: 20px 0;
}

.video-review iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.podcast-block {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 20px 0;
}

.podcast-block .meta {
  flex: 1;
}

.podcast-block audio {
  width: 100%;
}


.expert-card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  background: #f4f6f8;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  margin: 30px 0;
  max-width: 720px;
}

.expert-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #0073aa;
}

.expert-card .info {
  flex: 1;
}

.expert-card .name {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 6px;
}

.expert-card .title {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 10px;
}

.expert-card .bio {
  font-size: 0.95em;
  color: #333;
}

.infographic-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 220px;
  margin: 20px auto;
}

.infographic-block .icon {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #0073aa;
}

.infographic-block .label {
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 1.1em;
}

.infographic-block .progressbar {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 10px;
}

.infographic-block .progress {
  height: 100%;
  background: linear-gradient(90deg, #00c853, #64dd17);
  width: 70%; /* можно изменить */
  transition: width 0.3s ease;
}

.infographic-block .caption {
  font-size: 0.9em;
  color: #666;
}


.infographics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
}


.circular-progress {
  width: 120px;
  height: 120px;
  position: relative;
  margin: 0 auto 20px;
}

.circular-progress svg {
  transform: rotate(-90deg);
}

.circular-progress circle.bg {
  stroke: #eee;
}

.circular-progress circle.fg {
  stroke: #4caf50;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease-out;
}

.circular-progress .percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 1.2em;
}

















