:root {
  --bg: #f3f6fa;
  --surface: #ffffff;
  --surface-2: #edf2f7;
  --text: #172033;
  --muted: #667085;
  --line: #d9e1ea;
  --accent: #d73535;
  --accent-2: #1769d1;
  --dark: #10151e;
  --dark-2: #171d28;
  --success: #149447;
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

a {
  color: var(--accent-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

.site-logo:hover {
  text-decoration: none;
}

.site-logo__mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
}

.site-logo__text {
  font-size: 21px;
}

.site-nav__list,
.mobile-menu__list,
.footer-menu,
.term-link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav__list a {
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-search,
.header-login {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__list {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 0 16px;
}

.mobile-menu__list a {
  display: block;
  padding: 9px 0;
  color: var(--text);
  font-weight: 700;
}

.site-main {
  min-height: 60vh;
  max-width: 100%;
  overflow-x: hidden;
}

.catalog-hero {
  padding: 34px 0 42px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 276px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.archive-layout {
  padding: 34px 0 44px;
}

.catalog-sidebar {
  position: sticky;
  top: 94px;
}

.sidebar-panel,
.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(17, 24, 39, 0.04);
}

.sidebar-panel h2,
.sidebar-widget h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.term-link-list {
  display: grid;
  gap: 7px;
}

.term-link-list a {
  display: inline-flex;
  color: #2a527b;
  font-size: 14px;
}

.catalog-content {
  min-width: 0;
}

.page-head {
  margin-bottom: 22px;
}

.page-head h1 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.14;
}

.page-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.stats-row span {
  padding: 7px 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
}

.crmcc-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(140px, 1fr));
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.crmcc-filters label span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.crmcc-filters input,
.crmcc-filters select,
.review-form input,
.review-form textarea,
.review-form select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 11px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.crmcc-catalog-grid {
  display: grid;
  gap: 14px;
}

#specializations .crmcc-catalog-grid,
#top-integrators .crmcc-catalog-grid,
#analogs .crmcc-catalog-grid,
.crmcc-catalog-grid--tiles {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

#specializations .crmcc-card,
#top-integrators .crmcc-card,
#analogs .crmcc-card,
.crmcc-catalog-grid--tiles .crmcc-card {
  grid-template-columns: 1fr;
  align-items: stretch;
  min-width: 0;
  text-align: center;
}

.crmcc-catalog-grid--tiles .crmcc-card__logo,
#specializations .crmcc-card__logo,
#top-integrators .crmcc-card__logo,
#analogs .crmcc-card__logo {
  justify-self: center;
  width: 96px;
  min-height: 88px;
}

#specializations .crmcc-card > p,
#top-integrators .crmcc-card > p,
#analogs .crmcc-card > p,
.crmcc-catalog-grid--tiles .crmcc-card > p {
  display: none;
  margin: 0;
}

#specializations .crmcc-card > .crmcc-card__logo,
#top-integrators .crmcc-card > .crmcc-card__logo,
#analogs .crmcc-card > .crmcc-card__logo,
.crmcc-catalog-grid--tiles .crmcc-card > .crmcc-card__logo {
  grid-column: 1;
}

#specializations .crmcc-card > div,
#top-integrators .crmcc-card > div,
#analogs .crmcc-card > div,
.crmcc-catalog-grid--tiles .crmcc-card > div {
  grid-column: 1;
  min-width: 0;
  width: 100%;
}

.crmcc-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 4px 18px rgba(17, 24, 39, 0.05);
}

.crmcc-card__logo,
.product-logo {
  display: grid;
  place-items: center;
  min-height: 96px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.crmcc-logo-img {
  max-width: 84px;
  max-height: 64px;
  object-fit: contain;
}

.crmcc-logo-fallback {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  font-weight: 800;
  font-size: 24px;
}

.crmcc-card h3 {
  margin: 0 0 7px;
  font-size: 21px;
}

.crmcc-card p {
  margin: 9px 0 14px;
  color: #344054;
}

.crmcc-card__rating,
.product-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.crmcc-stars {
  display: inline-flex;
  gap: 1px;
  color: #c4ccd7;
  white-space: nowrap;
}

.crmcc-stars .star-full {
  color: #f5b301;
}

.crmcc-stars .star-half {
  color: transparent;
  background: linear-gradient(90deg, #f5b301 50%, #c4ccd7 50%);
  background-clip: text;
  -webkit-background-clip: text;
}

.crmcc-stars--small {
  font-size: 13px;
}

.crmcc-card__actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.crmcc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
}

.crmcc-button:hover {
  text-decoration: none;
  border-color: #b9c4d1;
}

.crmcc-button--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.crmcc-compare-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.crmcc-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.crmcc-pagination a {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font-weight: 700;
}

.crmcc-pagination a.is-active {
  background: var(--dark);
  color: #fff;
}

.crmcc-pagination__gap {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 38px;
  color: var(--muted);
  font-weight: 800;
}

.related-band {
  padding: 28px 0 34px;
  background: #e9eef5;
  border-top: 1px solid var(--line);
}

.related-band h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.related-band .term-link-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 22px;
}

.site-footer {
  padding: 34px 0 18px;
  background: var(--dark);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 36px;
}

.site-footer a {
  color: #fff;
}

.site-logo--footer {
  color: #fff;
  margin-bottom: 14px;
}

.site-logo--footer .site-logo__mark {
  background: #fff;
  color: var(--dark);
}

.footer-brand p {
  margin: 0 0 14px;
  color: #d4dae3;
}

.site-footer h3 {
  margin: 0 0 14px;
  text-decoration: underline;
  font-size: 18px;
}

.footer-menu,
.site-footer .term-link-list {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #d4dae3;
  font-size: 14px;
}

.product-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.product-hero__grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 26px;
  padding: 34px 0;
  align-items: center;
}

.product-hero__grid > div,
.product-content,
.product-section {
  min-width: 0;
}

.product-logo {
  min-height: 150px;
}

.breadcrumbs {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.product-hero h1 {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.12;
}

.product-hero p {
  max-width: 780px;
  color: #344054;
  overflow-wrap: anywhere;
}

.product-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0 48px;
}

.product-sidebar {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 14px;
  align-self: start;
}

.product-nav {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-nav a {
  padding: 9px 10px;
  border-radius: 5px;
  color: var(--text);
  font-weight: 700;
}

.product-nav a:hover {
  background: var(--surface-2);
  text-decoration: none;
}

.product-top-list {
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-top-list h2 {
  margin: 0 0 10px;
  font-size: 16px;
}

.product-top-list__item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--text);
}

.product-top-list__item:first-of-type {
  border-top: 0;
}

.product-top-list__item:hover {
  text-decoration: none;
}

.product-top-list__item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.product-top-list__item span {
  min-width: 0;
}

.product-top-list__item strong,
.product-top-list__item small {
  display: block;
}

.product-top-list__item strong {
  overflow: hidden;
  color: var(--text);
  font-size: 13px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-top-list__item small {
  color: var(--muted);
  font-size: 12px;
}

.product-section {
  margin-bottom: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-wrap: anywhere;
}

.product-section h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.fact-list,
.fact-grid {
  display: grid;
  gap: 10px;
}

.fact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-summary-grid {
  margin-top: 16px;
}

.fact-row,
.fact-grid div {
  display: grid;
  gap: 5px;
  padding: 13px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.fact-row span,
.fact-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.fact-row strong,
.fact-grid strong {
  font-weight: 700;
}

.score-panel__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.score-panel__summary div {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.score-panel__summary span,
.score-panel__summary small {
  color: var(--muted);
  font-weight: 800;
}

.score-panel__summary strong {
  font-size: 28px;
  line-height: 1;
}

.score-bars {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.score-bars__row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 32px;
  gap: 10px;
  align-items: center;
}

.score-bars__row span {
  color: var(--muted);
  font-weight: 800;
}

.score-bars__row div {
  height: 12px;
  overflow: hidden;
  background: #e9eef5;
  border-radius: 999px;
}

.score-bars__row i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: inherit;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.integration-chip {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 56px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--text);
  font-weight: 800;
}

.integration-chip:hover {
  text-decoration: none;
  border-color: #b9c4d1;
}

.integration-chip span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
}

.integration-chip strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.screenshot-grid a {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.screenshot-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tariff-table-wrap {
  margin-top: 16px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tariff-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
}

.tariff-table th,
.tariff-table td {
  padding: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.tariff-table th {
  background: #f8fafc;
}

.popularity-panel p {
  margin-top: 0;
  color: var(--muted);
}

.popularity-chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 220px;
  padding-top: 10px;
}

.popularity-chart__item {
  display: grid;
  grid-template-rows: auto 150px auto;
  gap: 8px;
  justify-items: center;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.popularity-chart__item span {
  align-self: end;
  width: 100%;
  max-width: 42px;
  min-height: 12px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #1769d1, #58a6ff);
}

.popularity-chart__item small {
  display: block;
  min-height: 34px;
  overflow-wrap: anywhere;
}

.selection-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  box-shadow: var(--shadow);
}

.selection-panel:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.selection-panel div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 70px;
}

.selection-panel strong {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
}

.selection-panel span {
  font-weight: 800;
}

.selection-panel .crmcc-button {
  align-self: center;
}

.selection-panel__button {
  white-space: nowrap;
}

.crmcc-review-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin: 0 0 18px;
  padding: 18px 20px;
  border-radius: 8px;
  background: linear-gradient(90deg, #0f7b3d, #12a84f);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.crmcc-review-banner:hover {
  color: #fff;
  text-decoration: none;
}

.crmcc-review-banner__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.crmct-modal-open {
  overflow: hidden;
}

.crmct-quiz-modal[hidden] {
  display: none;
}

.crmct-quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.crmct-quiz-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 21, 30, 0.58);
}

.crmct-quiz-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(16, 21, 30, 0.28);
}

.crmct-quiz-modal__dialog h2 {
  margin: 0 44px 18px 0;
  font-size: 24px;
}

.crmct-quiz-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.crmct-quiz-form {
  display: grid;
  gap: 12px;
}

.crmct-quiz-form label {
  display: grid;
  gap: 6px;
}

.crmct-quiz-form label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.crmct-quiz-form select,
.crmct-quiz-form input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.review-list {
  display: grid;
  gap: 12px;
}

.review-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-summary div {
  display: grid;
  gap: 4px;
}

.review-summary strong {
  font-size: 26px;
  line-height: 1;
}

.review-summary p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.review-list__total {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.review-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}

.review-item__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.review-item__title {
  margin: 0 0 8px;
  font-size: 18px;
}

.review-item p {
  margin: 0;
}

.review-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-form h3 {
  margin: 0;
}

.review-pagination {
  margin-top: 14px;
}

.review-form label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-weight: 800;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  background: #10151e;
}

.page-section {
  padding: 38px 0 52px;
}

.page-section.narrow {
  max-width: 860px;
}

.crmcc-rating-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.crmcc-rating-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.crmcc-rating-box h3 {
  margin: 0 0 8px;
}

.crmcc-rating-box p {
  margin: 0 0 12px;
  color: var(--muted);
}

.crmcc-mini-list {
  display: grid;
  gap: 8px;
}

.crmcc-mini-system {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-height: 44px;
  color: var(--text);
  font-weight: 700;
}

.crmcc-mini-system .crmcc-logo-img,
.crmcc-mini-system .crmcc-logo-fallback {
  max-width: 34px;
  max-height: 34px;
  width: 34px;
  height: 34px;
  font-size: 15px;
}

.crmcc-compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.crmcc-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.crmcc-compare-table th,
.crmcc-compare-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.crmcc-compare-table th {
  background: #f8fafc;
}

.crmcc-compare-table thead th a {
  display: grid;
  gap: 8px;
  justify-items: start;
  color: var(--text);
}

.crmcc-rating-number {
  display: inline-block;
  margin-left: 8px;
  font-weight: 800;
}

.post-list {
  display: grid;
  gap: 14px;
}

.post-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.post-card h2 {
  margin: 0 0 8px;
}

.post-card .crmcc-button {
  margin-top: 8px;
}

.post-single h1 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.14;
}

.entry-content {
  color: #344054;
}

.entry-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 18px auto;
  border-radius: 8px;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
  margin-top: 0;
  margin-bottom: 16px;
}

.crmcc-muted,
.crmcc-empty {
  color: var(--muted);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .catalog-layout,
  .product-layout,
  .product-hero__grid {
    grid-template-columns: 1fr;
  }

  .catalog-content,
  .product-content {
    order: 1;
  }

  .catalog-sidebar,
  .product-sidebar {
    order: 2;
    position: static;
  }

  .catalog-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .sidebar-panel {
    margin: 0;
  }

  .crmcc-filters {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid,
  .crmcc-rating-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selection-panel {
    grid-template-columns: 1fr 1fr;
  }

  .selection-panel .crmcc-button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .catalog-hero {
    padding-top: 24px;
  }

  .page-head h1,
  .product-hero h1 {
    font-size: 28px;
  }

  .catalog-sidebar,
  .crmcc-filters,
  .related-band .term-link-list,
  .footer-grid,
  .crmcc-rating-menu,
  .integration-grid,
  .screenshot-grid,
  .fact-grid,
  .score-panel__summary,
  .popularity-chart,
  .selection-panel,
  .review-summary,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .score-bars__row {
    grid-template-columns: 1fr;
  }

  .crmcc-card {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .crmcc-card__logo {
    min-height: 78px;
  }

  .crmcc-logo-img {
    max-width: 58px;
    max-height: 48px;
  }

  .crmcc-card h3 {
    font-size: 18px;
  }

  .crmcc-card__actions,
  .product-actions {
    align-items: stretch;
  }

  .crmcc-card__actions .crmcc-button,
  .product-actions .crmcc-button {
    flex: 1 1 auto;
  }

  #specializations .crmcc-catalog-grid,
  #top-integrators .crmcc-catalog-grid,
  #analogs .crmcc-catalog-grid,
  .crmcc-catalog-grid--tiles {
    grid-template-columns: 1fr;
  }

  .product-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .product-actions .crmcc-button {
    width: 100%;
    min-width: 0;
  }

  .footer-bottom,
  .review-item__head {
    flex-direction: column;
  }

  .crmcc-review-banner {
    grid-template-columns: auto 1fr;
  }

  .crmcc-review-banner strong {
    grid-column: 2;
  }

  .popularity-chart {
    min-height: 0;
  }

  .popularity-chart__item {
    grid-template-columns: 72px minmax(0, 1fr) 62px;
    grid-template-rows: auto;
    align-items: center;
    text-align: left;
  }

  .popularity-chart__item span {
    width: 100%;
    max-width: none;
    height: 14px !important;
    border-radius: 999px;
  }
}
