/* ════════════════════════════════════════════════════════════════
   pro-pozharku.css — Бренд-медиа «Про Пожарку» (тёмная тема, 1:1)
   ════════════════════════════════════════════════════════════════ */
:root {
  --pm-bg:      #050b1c;
  --pm-bg-2:    #08132a;
  --pm-card:    #0c1a36;
  --pm-card-2:  #0e2040;
  --pm-line:    rgba(0, 189, 220, .12);
  --pm-line-2:  rgba(255, 255, 255, .06);
  --pm-text:    #e6efff;
  --pm-muted:   #7d92b5;
  --pm-blue:    #1f7af5;
  --pm-teal:    #00bddc;
  --pm-light:   #7ce8ff;
}

.page-media { background: var(--pm-bg); color: var(--pm-text); }
.pm-main { background: var(--pm-bg); }

/* ─── HERO ────────────────────────────────────────────────────── */
.pm-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(200px, 22vh, 270px) 0 64px;
  overflow: hidden;
  background: #050b1c;
}
/* Hero: панорамный кадр учебной / брифинговой зоны — сгенерированное изображение в «кино» фотореализме под тёмный градиент слева. */
.pm-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050b1c url("../img/pro-pozharku-hero-wide.jpg") 48% 42% / cover no-repeat;
}

/* Лёгкое затемнение слева под текст; справа почти не трогаем картинку */
.pm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      rgba(5,11,28,.94) 0%,
      rgba(5,11,28,.72) 22%,
      rgba(5,11,28,.35) 38%,
      rgba(5,11,28,.08) 52%,
      transparent 68%
    );
}

/* Мягкая виньетка */
.pm-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(5,11,28,.42) 0%, transparent 22%),
    linear-gradient(to top,    rgba(5,11,28,.32) 0%, transparent 18%);
}
.pm-hero-grid {
  display: none;
}
.pm-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 1;
}
.pm-hero-glow--1 {
  width: 520px; height: 520px;
  left: 20%; top: -100px;
  background: radial-gradient(circle, rgba(0,189,220,.14) 0%, transparent 65%);
  animation: pm-pulse 8s ease-in-out infinite;
}
.pm-hero-glow--2 {
  width: 400px; height: 400px;
  right: 10%; bottom: -80px;
  background: radial-gradient(circle, rgba(31,122,245,.16) 0%, transparent 62%);
  animation: pm-pulse 10s ease-in-out infinite reverse;
}
@keyframes pm-pulse {
  0%,100% { opacity: .28; transform: scale(1); }
  50%      { opacity: .48; transform: scale(1.1); }
}

.pm-hero-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

/* Лево */
.pm-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pm-teal);
  margin: 0 0 22px;
}
.pm-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pm-teal);
  box-shadow: 0 0 10px var(--pm-teal);
  animation: pm-blink 2s ease-in-out infinite;
}
@keyframes pm-blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.pm-hero-title {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.06;
  color: #fff;
}
.pm-hero-title span { color: var(--pm-teal); }
.pm-hero-lead {
  margin: 22px 0 0;
  max-width: 520px;
  font-size: 0.98rem;
  line-height: 1.74;
  color: var(--pm-muted);
}

.pm-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}

.pm-hero-meta[hidden] {
  display: none !important;
}
.pm-hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--pm-muted);
}
.pm-hero-meta-item svg { color: var(--pm-teal); opacity: .8; }
.pm-hero-meta-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(125,146,181,.4);
}
.pm-hero-author {
  display: flex; align-items: center; gap: 10px;
}
.pm-hero-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f7af5, #00bddc);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.pm-hero-author-name { display: block; font-size: 0.82rem; font-weight: 700; color: #fff; }
.pm-hero-author-role { display: block; font-size: 0.72rem; color: var(--pm-muted); }

.pm-hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  background: var(--blue, #0656b9);
  color: #fff;
  font-size: 0.92rem; font-weight: 700;
  text-decoration: none;
  box-shadow: none;
  transition: filter 0.15s, transform 0.22s;
}
.pm-hero-btn:hover {
  filter: brightness(1.08);
  transform: translateX(4px);
}
.pm-hero-btn:active {
  filter: brightness(0.96);
}
.pm-hero-btn:focus-visible {
  outline: 2px solid var(--pm-teal);
  outline-offset: 3px;
}

/* Центр: визуализация (пустой, фоновая картинка) */
.pm-hero-visual {
  display: none;
}

/* Право: темы */
.pm-hero-topics {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: flex-start;
  padding-top: 12px;
}
.pm-topics-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 22px;
}
.pm-topics-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 14px;
  border-left: 2px solid rgba(0,189,220,.2);
  transition: border-color .2s;
}
.pm-topics-list li:hover { border-color: var(--pm-teal); }
.pm-topics-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--pm-light);
  opacity: 0.95;
}
.pm-topics-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pm-text);
  line-height: 1.45;
  text-shadow: 0 1px 10px rgba(5, 11, 28, 0.85);
}
.pm-topics-all {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(230, 239, 255, 0.88);
  text-decoration: none;
  margin-top: 14px;
  transition: color .2s;
  text-shadow: 0 1px 8px rgba(5, 11, 28, 0.75);
}
.pm-topics-all:hover { color: var(--pm-teal); }

/* ─── СЕКЦИИ ─────────────────────────────────────────────────── */
.pm-sec { padding: 56px 0; background: var(--pm-bg); }
.pm-sec--grid { padding: 24px 0 56px; }
.pm-sec--cta { padding: 16px 0 64px; }

.pm-sec-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 28px;
}

.pm-rubrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.pm-rubrics a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--pm-line, #d8e0e3);
  border-radius: 6px;
  background: var(--pm-card, #fff);
  color: var(--pm-text, #172126);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.pm-rubrics a:hover { border-color: #9db7bf; background: #f7fafb; }
.pm-sec-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
}
.pm-sec-all {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pm-muted);
  text-decoration: none;
  transition: color .2s;
}
.pm-sec-all:hover { color: var(--pm-teal); }

/* ─── АКТУАЛЬНЫЕ МАТЕРИАЛЫ (5 карточек) ────────────────────────── */
.pm-cards-row {
  display: grid;
  grid-template-columns: 1.45fr 1.45fr 1fr 1fr 1fr;
  gap: 14px;
}

.pm-card {
  position: relative;
  background: var(--pm-card);
  border: 1px solid var(--pm-line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .28s cubic-bezier(.34,1.2,.64,1), border-color .22s, box-shadow .22s;
}
.pm-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,189,220,.35);
  box-shadow: 0 14px 36px rgba(0,12,40,.6), 0 0 0 1px rgba(0,189,220,.15);
}

/* Превью карточек «Актуальные материалы»: генерация под тему карточки (img/pm-card-*.jpg). */
.pm-card-img {
  height: 150px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background-color: #050b1c;
  background-size: cover;
  background-position: center;
}
.pm-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5,11,28,.88) 100%);
  pointer-events: none;
}
.pm-card-img--1 {
  background-image: url("../img/pm-card-analytics.jpg");
}
.pm-card-img--2 {
  background-image: url("../img/pm-card-case.jpg");
}
.pm-card-img--3 {
  background-image: url("../img/pm-card-opinion.jpg");
}
.pm-card-img--4 {
  background-image: url("../img/pm-card-trends.jpg");
}
.pm-card-img--5 {
  background-image: url("../img/pm-card-interview.jpg");
}
.pm-card-img--6 {
  background-image: url("../img/article-online-hero.png");
  background-position: center 40%;
}

.pm-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pm-card-cat {
  align-self: flex-start;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pm-cat--analytics { background: rgba(31,122,245,.15);  color: #6aa9ff; border: 1px solid rgba(31,122,245,.3); }
.pm-cat--cases     { background: rgba(255,140,0,.12);   color: #ffb84d; border: 1px solid rgba(255,140,0,.3); }
.pm-cat--opinion   { background: rgba(150,100,220,.15); color: #c7a3ff; border: 1px solid rgba(150,100,220,.3); }
.pm-cat--trends    { background: rgba(0,189,220,.15);   color: #7ce8ff; border: 1px solid rgba(0,189,220,.3); }
.pm-cat--interview { background: rgba(0,200,140,.15);   color: #5fe8b3; border: 1px solid rgba(0,200,140,.3); }

.pm-card-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.36;
  color: #fff;
}
.pm-card-desc {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--pm-muted);
}
.pm-card-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--pm-line-2);
  font-size: 0.72rem;
  color: var(--pm-muted);
}
.pm-dot { color: var(--pm-teal); }
.pm-card-arrow {
  margin-left: auto;
  color: var(--pm-teal);
  text-decoration: none;
  font-size: 1rem;
  transition: transform .2s;
}
.pm-card:hover .pm-card-arrow { transform: translateX(3px); }

/* ─── 4-КОЛОНОЧНАЯ СЕТКА ──────────────────────────────────────── */
.pm-main-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pm-col {
  background: var(--pm-card);
  border: 1px solid var(--pm-line);
  border-radius: 16px;
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pm-col-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.pm-col-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.015em;
}
.pm-col-title-link {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.pm-col-title-link:hover {
  color: var(--pm-teal);
}
.pm-col-title-link:focus-visible {
  color: var(--pm-teal);
  outline: 2px solid var(--pm-teal);
  outline-offset: 2px;
  border-radius: 2px;
}
.pm-col-all {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--pm-muted);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .2s;
}
.pm-col-all:hover { color: var(--pm-teal); }

/* Кейс-фичер (ссылка на vypolnennye-raboty.html) */
.pm-case-feature { display: flex; flex-direction: column; gap: 14px; }
a.pm-case-feature {
  text-decoration: none;
  color: inherit;
  outline-offset: 3px;
  border-radius: 4px;
  transition: opacity .2s;
}
a.pm-case-feature:hover {
  opacity: 0.92;
}
a.pm-case-feature:hover .pm-case-title-brand,
a.pm-case-feature:focus-visible .pm-case-title-brand {
  color: var(--pm-teal);
}
a.pm-case-feature:hover .pm-case-title-geo,
a.pm-case-feature:focus-visible .pm-case-title-geo {
  color: rgba(124, 232, 255, 0.82);
}
a.pm-case-feature:focus-visible {
  outline: 2px solid var(--pm-teal);
  outline-offset: 3px;
}
.pm-case-badge {
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255,140,0,.12);
  color: #ffb84d;
  border: 1px solid rgba(255,140,0,.3);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pm-case-badge--city {
  background: rgba(0, 189, 220, 0.14);
  color: #7ce8ff;
  border-color: rgba(0, 189, 220, 0.38);
}
.pm-case-title {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.pm-case-title-brand {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.pm-case-title-geo {
  display: block;
  margin-top: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--pm-muted);
  letter-spacing: 0.01em;
  line-height: 1.35;
}
.pm-case-img {
  height: 120px;
  border-radius: 12px;
  border: 1px solid var(--pm-line);
  background:
    radial-gradient(circle at 40% 60%, rgba(255,140,0,.4) 0%, transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(31,122,245,.3) 0%, transparent 55%),
    linear-gradient(135deg, #1a2240 0%, #0a1228 100%);
  position: relative;
  overflow: hidden;
}
.pm-case-img--photo {
  height: 132px;
  padding: 0;
  background: #050b18;
  border-color: rgba(0, 189, 220, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.pm-case-img--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  transition: transform 0.35s cubic-bezier(0.34, 1.15, 0.64, 1);
}
a.pm-case-feature:hover .pm-case-img--photo img {
  transform: scale(1.04);
}
.pm-case-img--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(5, 11, 28, 0) 0%,
    rgba(5, 11, 28, 0.25) 55%,
    rgba(5, 11, 28, 0.75) 100%
  );
}
.pm-case-img:not(.pm-case-img--photo)::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg,
      rgba(124,232,255,.08) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(90deg,
      rgba(124,232,255,.08) 0 1px, transparent 1px 14px);
}
.pm-case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 2px;
}
a.pm-case-feature .pm-case-stat {
  padding: 11px 8px 12px;
  border-radius: 11px;
  text-align: center;
  background: linear-gradient(
    165deg,
    rgba(0, 189, 220, 0.09) 0%,
    rgba(6, 86, 185, 0.05) 100%
  );
  border: 1px solid rgba(0, 189, 220, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
}
a.pm-case-feature:hover .pm-case-stat {
  border-color: rgba(0, 189, 220, 0.28);
  background: linear-gradient(
    165deg,
    rgba(0, 189, 220, 0.12) 0%,
    rgba(6, 86, 185, 0.07) 100%
  );
}
.pm-case-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pm-case-stat--volume .pm-case-stat-strong--split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.05;
  color: inherit;
  font-weight: 800;
}
.pm-case-stat__pref {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(126, 232, 255, 0.88);
}
.pm-case-stat__fig {
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(118deg, #fff 0%, #7ee8f8 55%, #b8f0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 6px rgba(0, 189, 220, 0.22));
}
.pm-case-stat strong {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--pm-teal);
}
.pm-case-stat span {
  font-size: 0.66rem;
  color: var(--pm-muted);
  line-height: 1.3;
}

/* Цитата */
.pm-quote {
  margin: 0;
  position: relative;
  background: var(--pm-card-2);
  border: 1px solid var(--pm-line);
  border-radius: 12px;
  padding: 22px 20px 18px;
}
.pm-quote-icon {
  font-family: var(--site-heading-font-family);
  font-size: 3rem;
  line-height: .6;
  color: var(--pm-teal);
  opacity: .35;
  position: absolute;
  top: 14px; left: 16px;
  user-select: none;
}
.pm-quote-text {
  margin: 12px 0 18px 18px;
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--pm-text);
}
.pm-quote-author {
  display: flex; align-items: center; gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--pm-line-2);
}
.pm-quote-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f7af5, #00bddc);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.pm-quote-name { display: block; font-size: 0.82rem; font-weight: 700; color: #fff; }
.pm-quote-role { display: block; font-size: 0.7rem; color: var(--pm-muted); }

/* Исследование */
.pm-research { display: flex; flex-direction: column; gap: 14px; }
a.pm-research {
  text-decoration: none;
  color: inherit;
  outline-offset: 3px;
  border-radius: 8px;
  transition: opacity 0.2s;
}
a.pm-research:hover {
  opacity: 0.94;
}
a.pm-research:hover .pm-research-label {
  color: rgba(126, 232, 255, 0.95);
}
a.pm-research:focus-visible {
  outline: 2px solid var(--pm-teal);
  outline-offset: 2px;
}
.pm-research-label {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--pm-muted);
}
.pm-research-label span { display: block; font-size: 0.72rem; opacity: .8; }
.pm-research-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.pm-research-stat strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  color: #fff;
}
.pm-research-stat strong span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--pm-muted);
}
.pm-research-stat-label {
  display: block;
  font-size: 0.62rem;
  color: var(--pm-muted);
  margin-top: 4px;
  line-height: 1.3;
}
.pm-research-stat--up strong { color: #5fe8b3; }
.pm-research-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
  padding: 6px 0 0;
}
.pm-research-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(31,122,245,.7), rgba(31,122,245,.3));
}
.pm-research-bar--accent {
  background: linear-gradient(180deg, var(--pm-teal), rgba(0,189,220,.4));
  box-shadow: 0 0 12px rgba(0,189,220,.5);
}

/* События */
.pm-events-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pm-event-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--pm-line-2);
  text-decoration: none;
  transition: background .2s;
}
.pm-event-item:first-child { padding-top: 0; }
.pm-event-item:last-child { border-bottom: none; padding-bottom: 0; }
.pm-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 42px;
  background: var(--pm-card-2);
  border: 1px solid var(--pm-line);
  border-radius: 10px;
  padding: 6px 4px;
  transition: border-color .2s, background .2s;
}
.pm-event-item:hover .pm-event-date {
  border-color: rgba(0,189,220,.4);
  background: rgba(0,189,220,.08);
}
.pm-event-day {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--pm-teal);
}
.pm-event-month {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pm-muted);
}
.pm-event-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.pm-event-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pm-text);
  line-height: 1.4;
  transition: color .2s;
}
.pm-event-item:hover .pm-event-title { color: var(--pm-teal); }
.pm-event-meta {
  font-size: 0.68rem;
  color: var(--pm-muted);
}
.pm-event-arrow {
  flex-shrink: 0;
  color: var(--pm-teal);
  font-size: 1rem;
  transition: transform .2s;
}
.pm-event-item:hover .pm-event-arrow { transform: translateX(3px); }

/* ─── CTA ─────────────────────────────────────────────────────── */
.pm-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pm-cta-card {
  position: relative;
  background: var(--pm-card);
  border: 1px solid var(--pm-line);
  border-radius: 18px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  overflow: hidden;
}
.pm-cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pm-teal), transparent);
  pointer-events: none;
  z-index: 0;
}
.pm-cta-card > * {
  position: relative;
  z-index: 1;
}
.pm-cta-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(31,122,245,.12);
  border: 1px solid rgba(31,122,245,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--pm-blue);
  flex-shrink: 0;
}
.pm-cta-text {
  flex: 1;
  min-width: 200px;
}
.pm-cta-title {
  margin: 0 0 4px;
  font-size: 0.98rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.015em;
}
.pm-cta-desc {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--pm-muted);
}
.pm-cta-form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.pm-cta-input {
  width: 200px;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--pm-line);
  background: var(--pm-bg);
  color: #fff;
  font-family: inherit;
  font-size: 0.84rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.pm-cta-input:focus {
  border-color: var(--pm-teal);
  box-shadow: 0 0 0 3px rgba(0,189,220,.15);
}
.pm-cta-input::placeholder { color: rgba(125,146,181,.6); }
.pm-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  background: var(--blue, #0656b9);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  transition: filter 0.15s;
}
.pm-cta-btn:hover {
  filter: brightness(1.08);
}
.pm-cta-btn:active {
  filter: brightness(0.96);
}
.pm-cta-btn--solo { padding: 12px 24px; }

/* ─── Форма обратной связи (консультация) ───────────────────── */
.pm-cta-card--consult {
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  overflow: visible;
}
.pm-cta-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.pm-cta-card--consult .pm-cta-text {
  min-width: 0;
  flex: 1;
}
.pm-feedback-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.pm-feedback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pm-feedback-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pm-feedback-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(125, 146, 181, 0.85);
  letter-spacing: 0.04em;
}
.pm-feedback-hint {
  font-weight: 400;
  opacity: 0.7;
}
.pm-feedback-inp,
.pm-feedback-textarea {
  width: 100%;
  box-sizing: border-box;
}
.pm-feedback-textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.5;
}
.pm-feedback-submit {
  align-self: flex-start;
  margin-top: 4px;
}
.pm-feedback-note {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.45;
  color: rgba(125, 146, 181, 0.65);
}
.pm-feedback-note a {
  color: var(--pm-teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pm-feedback-success {
  display: none;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0, 189, 220, 0.1);
  border: 1px solid rgba(0, 189, 220, 0.28);
  font-size: 0.84rem;
  line-height: 1.5;
  color: #c8e8f5;
}
.pm-feedback-success.is-visible {
  display: flex;
}
.pm-feedback-success[hidden] {
  display: none !important;
}
.pm-feedback-success svg {
  flex-shrink: 0;
  color: var(--pm-teal);
  margin-top: 2px;
}
.pm-consult-open {
  align-self: flex-start;
  flex-shrink: 0;
  margin-left: 0;
  isolation: isolate;
}
.pm-feedback-panel {
  width: 100%;
  overflow: hidden;
}
.pm-feedback-panel[hidden] {
  display: none !important;
}
.pm-cta-card--consult.is-open .pm-consult-open {
  display: none;
}
.pm-cta-card--consult.is-open .pm-feedback-panel {
  animation: pmFeedbackIn 0.28s var(--ease, ease) both;
}
@keyframes pmFeedbackIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pm-cta-card--consult.is-sent .pm-feedback-form,
.pm-cta-card--consult.is-sent .pm-consult-open {
  display: none !important;
}
.pm-cta-card--consult.is-sent .pm-feedback-panel {
  display: block !important;
}

@media (max-width: 640px) {
  .pm-feedback-grid {
    grid-template-columns: 1fr;
  }
  .pm-feedback-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ─── FOOTER (тёмный, бренд) ─────────────────────────────────── */
.pm-footer {
  background: linear-gradient(180deg, var(--pm-bg) 0%, #030713 100%);
  border-top: 1px solid var(--pm-line);
  padding: 48px 0 32px;
  color: var(--pm-text);
}
.pm-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr) 1.4fr;
  gap: 32px;
  align-items: flex-start;
}
.pm-footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pm-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.pm-footer-brand svg { color: var(--pm-teal); flex-shrink: 0; }
.pm-footer-brand-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
}
.pm-footer-brand-desc {
  display: block;
  font-size: 0.7rem;
  color: var(--pm-muted);
  margin-top: 2px;
}
.pm-footer-copy {
  margin: 4px 0 0;
  font-size: 0.74rem;
  color: var(--pm-muted);
}
.pm-footer-policy {
  font-size: 0.72rem;
  color: var(--pm-muted);
  text-decoration: none;
  text-decoration-line: underline;
  text-decoration-color: rgba(125,146,181,.3);
  transition: color .2s;
}
.pm-footer-policy:hover { color: var(--pm-teal); }

.pm-footer-col h4 {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}
.pm-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pm-footer-col a {
  font-size: 0.78rem;
  color: var(--pm-muted);
  text-decoration: none;
  transition: color .2s;
}
.pm-footer-col a:hover { color: var(--pm-teal); }

.pm-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  text-align: right;
}
.pm-footer-phone {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.pm-footer-email {
  font-size: 0.84rem;
  color: var(--pm-muted);
  text-decoration: none;
  transition: color .2s;
}
.pm-footer-email:hover { color: var(--pm-teal); }
.pm-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.pm-footer-social a {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--pm-line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--pm-muted);
  transition: color .2s, border-color .2s, background .2s;
}
.pm-footer-social a:hover {
  color: var(--pm-teal);
  border-color: rgba(0,189,220,.4);
  background: rgba(0,189,220,.08);
}
.pm-footer-age {
  margin-top: 8px;
  font-size: 0.7rem;
  color: var(--pm-muted);
  border: 1px solid var(--pm-line-2);
  border-radius: 6px;
  padding: 2px 8px;
}

/* ─── АДАПТИВ ────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .pm-cards-row { grid-template-columns: repeat(3, 1fr); }
  .pm-main-grid { grid-template-columns: repeat(2, 1fr); }
  .pm-footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr) 1.4fr; }
  .pm-footer-grid > .pm-footer-col:nth-child(4),
  .pm-footer-grid > .pm-footer-col:nth-child(5) { display: none; }
}
@media (max-width: 960px) {
  .pm-hero-wrap { grid-template-columns: 1fr; }
  .pm-hero-visual,
  .pm-hero-topics { display: none; }
  .pm-cta-row { grid-template-columns: 1fr; }
  .pm-cta-form { flex-direction: column; width: 100%; }
  .pm-cta-input { width: 100%; }
  .pm-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .pm-footer-contact { align-items: flex-start; text-align: left; }
}
@media (max-width: 640px) {
  .pm-cards-row { grid-template-columns: 1fr; }
  .pm-main-grid { grid-template-columns: 1fr; }
  .pm-cta-card { padding: 22px 20px; }
}

/* ══════════════════════════════════════════════════════════════
   ОТЗЫВЫ
   ══════════════════════════════════════════════════════════════ */
.pm-reviews-sec {
  padding: 80px 0 72px;
}

.pm-reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.pm-reviews-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pm-teal);
  margin: 0 0 10px;
}

.pm-reviews-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--pm-text);
  margin: 0;
  line-height: 1.25;
  max-width: 520px;
}

.pm-reviews-rating-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.pm-reviews-avg {
  font-size: 3rem;
  font-weight: 900;
  color: var(--pm-text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pm-reviews-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 5px;
}

.pm-reviews-stars svg,
.pm-review-stars svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}

.pm-reviews-count {
  font-size: 0.78rem;
  color: var(--pm-muted);
  margin: 0;
}

.pm-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* Карточка отзыва */
.pm-review-card {
  background: var(--pm-card);
  border: 1px solid var(--pm-line-2);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.25s;
}

.pm-review-card:hover {
  border-color: rgba(0, 189, 220, 0.22);
  transform: translateY(-3px);
}

.pm-review-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pm-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pm-blue) 0%, var(--pm-teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.pm-review-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pm-review-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pm-text);
}

.pm-review-date {
  font-size: 0.75rem;
  color: var(--pm-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.pm-review-stars {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.pm-review-text {
  margin: 0;
  flex: 1;
}

.pm-review-text p {
  font-size: 0.95rem;
  color: var(--pm-text);
  line-height: 1.6;
  margin: 0;
  font-style: normal;
}

.pm-review-text p::before {
  content: '\201C';
  color: var(--pm-teal);
  font-size: 1.6em;
  line-height: 0;
  vertical-align: -0.35em;
  margin-right: 3px;
  font-style: normal;
}

.pm-review-text p::after {
  content: '\201D';
  color: var(--pm-teal);
  font-size: 1.6em;
  line-height: 0;
  vertical-align: -0.35em;
  margin-left: 3px;
  font-style: normal;
}

.pm-review-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--pm-line-2);
  flex-wrap: wrap;
}

.pm-review-product-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pm-teal);
  text-decoration: none;
  background: rgba(0, 189, 220, 0.08);
  border: 1px solid rgba(0, 189, 220, 0.2);
  border-radius: 999px;
  padding: 4px 10px 4px 8px;
  transition: background 0.15s, border-color 0.15s;
}

.pm-review-product-tag:hover {
  background: rgba(0, 189, 220, 0.14);
  border-color: rgba(0, 189, 220, 0.35);
}

.pm-review-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #4ade80;
  font-weight: 600;
}

.pm-review-verified svg {
  color: #4ade80;
}

@media (max-width: 640px) {
  .pm-reviews-head { flex-direction: column; align-items: flex-start; }
  .pm-reviews-grid { grid-template-columns: 1fr; }
}

/* ── Мобильная адаптация hero (нет header) ── */
@media (max-width: 768px) {
  .pm-hero {
    padding-top: 64px !important;
    padding-bottom: 48px !important;
  }
  .pm-hero-wrap { grid-template-columns: 1fr !important; }
  .pm-hero-visual,
  .pm-hero-topics { display: none !important; }
}
