/**
 * PV Media Core - Frontend Styles
 * Author: Юрій Остап'юк (pixelborsch.com.ua)
 */

.pv-about-widget-wrapper {
  width: 100%;
}

.pv-about {
  --pv-ink: #102f59;
  --pv-ink-deep: #092442;
  --pv-paper: #f4f1e9;
  --pv-white: #fffdf7;
  --pv-signal: #ed4b35;
  --pv-line: rgba(16, 47, 89, 0.18);
  --pv-grid-color: rgba(16, 47, 89, 0.04);
  --pv-grid-size: 56px;

  position: relative;
  width: 100%;
  overflow: hidden;
  color: var(--pv-ink);
  background-color: transparent;
  font-family: inherit;
  isolation: isolate;
  padding: clamp(40px, 6vw, 90px) 0;
}

.pv-about.has-grid-bg {
  background-image:
    linear-gradient(var(--pv-grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--pv-grid-color) 1px, transparent 1px);
  background-size: var(--pv-grid-size) var(--pv-grid-size);
}

.pv-about.has-noise-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  z-index: 5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.pv-layout {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}

/* ================= ЛІВА КОЛОНКА ================= */
.pv-copy {
  position: relative;
  z-index: 2;
}

.pv-section-index {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pv-ink);
}

.pv-section-index span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1.5px solid var(--pv-ink);
  border-radius: 50%;
  letter-spacing: 0;
  font-size: 13px;
}

.pv-about-title {
  max-width: 850px;
  margin: 0;
  font-family: inherit;
  font-size: clamp(38px, 5.2vw, 82px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: var(--pv-ink);
  text-wrap: balance;
}

.pv-about-title em {
  position: relative;
  color: var(--pv-signal);
  font-style: normal;
  display: inline-block;
}

.pv-about-title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.06em;
  height: 0.08em;
  background: var(--pv-signal);
  transform-origin: left;
  animation: pv-underline 1s 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.pv-about-intro {
  max-width: 700px;
  margin: 38px 0 0 clamp(0px, 4vw, 65px);
  padding-left: 24px;
  border-left: 3px solid var(--pv-signal);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.7;
  color: rgba(9, 36, 66, 0.82);
}

.pv-about-intro strong {
  color: var(--pv-ink-deep);
  font-weight: 700;
}

/* ================= ПРАВА КОЛОНКА (ВІЗУАЛ) ================= */
.pv-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.pv-sun {
  position: absolute;
  width: clamp(280px, 32vw, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--pv-signal);
  right: -15%;
  top: -5%;
  opacity: 0.98;
  animation: pv-rise 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  z-index: 1;
}

.pv-billboard {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  transform: rotate(2.2deg);
  filter: drop-shadow(20px 26px 0 rgba(9, 36, 66, 0.15));
  animation: pv-reveal 0.9s 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.pv-billboard:hover {
  transform: rotate(1deg) scale(1.015);
  filter: drop-shadow(24px 32px 0 rgba(9, 36, 66, 0.18));
}

.pv-board {
  position: relative;
  aspect-ratio: 1.36;
  padding: clamp(26px, 3.8vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--pv-ink);
  color: var(--pv-white);
  border: 9px solid var(--pv-white);
  outline: 2px solid var(--pv-ink-deep);
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.25);
}

.pv-board::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 40px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  right: -90px;
  bottom: -95px;
  pointer-events: none;
}

.pv-board-label {
  color: #a9bad0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pv-board-word {
  position: relative;
  font-family: inherit;
  font-size: clamp(42px, 5.8vw, 82px);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.pv-board-word span {
  color: var(--pv-signal);
}

.pv-board-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.pv-board-footer-text {
  font-size: 11px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

a.pv-board-arrow,
.pv-board-arrow {
  width: 52px;
  height: 52px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50% !important;
  background: var(--pv-signal);
  color: #fff !important;
  font-size: 22px;
  line-height: 1;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  transform: rotate(-45deg);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease;
}

a.pv-board-arrow:hover,
.pv-board-arrow:hover,
a.pv-board-arrow:focus,
.pv-board-arrow:focus,
a.pv-board-arrow:active,
.pv-board-arrow:active {
  background: #ff5e48;
  color: #fff !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
  transform: rotate(-45deg) scale(1.1);
}

.pv-board-arrow svg {
  display: block;
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.pv-legs {
  height: 160px;
  position: relative;
}

.pv-legs::before,
.pv-legs::after {
  content: "";
  position: absolute;
  top: 0;
  width: 14px;
  height: 180px;
  background: var(--pv-ink-deep);
  transform-origin: top;
}

.pv-legs::before {
  left: 28%;
  transform: skewX(-7deg);
}

.pv-legs::after {
  right: 28%;
  transform: skewX(7deg);
}

/* ================= СТІКЕР МЕТРИКИ (24/7) ================= */
.pv-metric {
  position: absolute;
  z-index: 3;
  left: -20px;
  bottom: 85px;
  width: 160px;
  padding: 18px;
  background: var(--pv-white);
  border: 1.5px solid var(--pv-ink);
  transform: rotate(-4deg);
  box-shadow: 8px 8px 0 var(--pv-ink);
  animation: pv-reveal 0.8s 0.6s both;
  transition: transform 0.3s ease;
}

.pv-metric:hover {
  transform: rotate(-1deg) scale(1.05);
}

.pv-metric strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pv-signal);
  font-family: inherit;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.pv-metric span {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pv-ink);
}

/* ================= АНІМАЦІЇ ================= */
@keyframes pv-reveal {
  from {
    opacity: 0;
    transform: translateY(30px) rotate(0deg);
  }
  to {
    opacity: 1;
  }
}

@keyframes pv-rise {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 0.98;
    transform: scale(1);
  }
}

@keyframes pv-underline {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* ================= АДАПТИВНІСТЬ ================= */
@media (max-width: 991px) {
  .pv-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pv-visual {
    min-height: 520px;
  }
  .pv-sun {
    right: 0%;
  }
  .pv-about-intro {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .pv-about-title {
    font-size: clamp(34px, 10vw, 52px);
  }
  .pv-about-intro {
    margin-top: 25px;
    padding-left: 16px;
    font-size: 15px;
  }
  .pv-visual {
    min-height: 390px;
    align-items: start;
    padding-top: 30px;
  }
  .pv-board {
    border-width: 6px;
    padding: 22px 18px;
  }
  .pv-billboard {
    width: 92%;
  }
  .pv-legs {
    height: 110px;
  }
  .pv-legs::before,
  .pv-legs::after {
    height: 120px;
    width: 10px;
  }
  .pv-metric {
    left: 0;
    bottom: 35px;
    width: 130px;
    padding: 12px;
  }
  .pv-metric strong {
    font-size: 20px;
  }
}

/* ========================================================
   СЕКЦІЯ: НАША ІСТОРІЯ (ТАЙМЛАЙН)
   ======================================================== */
.pv-history-widget-wrapper {
  width: 100%;
}

.pv-history {
  --pv-ink: #102f59;
  --pv-ink-deep: #092442;
  --pv-white: #fffdf7;
  --pv-signal: #ed4b35;

  position: relative;
  overflow: hidden;
  color: var(--pv-white);
  background-color: var(--pv-ink-deep);
  font-family: inherit;
  isolation: isolate;
  padding: clamp(60px, 8vw, 120px) 0;
}

.pv-history-watermark {
  position: absolute;
  top: -3vw;
  right: -1.5vw;
  z-index: -1;
  color: transparent;
  font-family: inherit;
  font-size: clamp(120px, 24vw, 360px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.1em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255, 253, 247, 0.07);
  user-select: none;
  pointer-events: none;
}

.pv-history.has-noise-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}

.pv-history-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 76px);
}

.pv-history-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(380px, 1.2fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(60px, 7vw, 100px);
}

.pv-history .pv-section-index {
  margin: 0 0 28px;
  color: var(--pv-white);
}

.pv-history .pv-section-index span {
  border-color: rgba(255, 255, 255, 0.4);
}

.pv-history-title {
  max-width: 680px;
  margin: 0;
  font-family: inherit;
  font-size: clamp(40px, 6.2vw, 92px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;
  color: var(--pv-white);
  text-wrap: balance;
}

.pv-history-title span {
  color: var(--pv-signal);
}

.pv-history-lead {
  max-width: 620px;
  margin: 0 0 4px;
  color: rgba(255, 253, 247, 0.75);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.75;
}

.pv-history-lead strong {
  color: var(--pv-white);
  font-weight: 700;
}

/* ================= ТАЙМЛАЙН ================= */
.pv-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
}

.pv-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.pv-milestone {
  position: relative;
  min-height: 270px;
  padding: 48px clamp(18px, 2.5vw, 36px) 24px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease, padding 0.3s ease;
}

.pv-milestone + .pv-milestone {
  padding-left: clamp(18px, 2.5vw, 36px);
}

.pv-milestone:last-child {
  border-right: none;
}

.pv-milestone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--pv-ink-deep);
  border: 4px solid var(--pv-signal);
  box-shadow: 0 0 0 8px rgba(237, 75, 53, 0.12);
  transition: transform 0.3s ease, background 0.3s ease;
}

.pv-milestone + .pv-milestone::before {
  left: clamp(18px, 2.5vw, 36px);
}

.pv-milestone:hover::before {
  background: var(--pv-signal);
  transform: scale(1.18);
}

.pv-milestone-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
  color: var(--pv-signal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pv-milestone-tag .pv-tag-number {
  color: rgba(255, 253, 247, 0.32);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.pv-milestone h3 {
  margin: 0 0 16px;
  font-family: inherit;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: var(--pv-white);
}

.pv-milestone p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 253, 247, 0.65);
  font-size: 15px;
  line-height: 1.7;
}

.pv-history-stamp {
  position: absolute;
  right: clamp(20px, 4vw, 76px);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 253, 247, 0.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pv-history-stamp::before {
  content: "✦";
  color: var(--pv-signal);
  font-size: 16px;
}

/* ================= АДАПТИВНІСТЬ ДЛЯ ІСТОРІЇ ================= */
@media (max-width: 991px) {
  .pv-history-head {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 50px;
  }
  .pv-timeline {
    grid-template-columns: 1fr;
    padding-left: 8px;
  }
  .pv-timeline::before {
    top: 8px;
    bottom: 8px;
    left: 16px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .pv-milestone,
  .pv-milestone + .pv-milestone {
    min-height: auto;
    padding: 3px 0 46px 54px;
    border-right: none;
  }
  .pv-milestone + .pv-milestone::before,
  .pv-milestone::before {
    left: 0;
  }
  .pv-milestone-tag {
    margin-bottom: 18px;
  }
}

@media (max-width: 576px) {
  .pv-history-title {
    font-size: clamp(36px, 12vw, 60px);
  }
  .pv-history-lead {
    font-size: 15px;
  }
  .pv-history-stamp {
    display: none;
  }
}

/* ========================================================
   СЕКЦІЯ: НАША КОМАНДА (ПОСТЕРИ РОЛЕЙ)
   ======================================================== */
.pv-team-widget-wrapper {
  width: 100%;
}

.pv-team {
  --pv-ink: #102f59;
  --pv-ink-deep: #092442;
  --pv-paper: #f4f1e9;
  --pv-white: #fffdf7;
  --pv-signal: #ed4b35;
  --pv-line: rgba(16, 47, 89, 0.18);

  position: relative;
  overflow: hidden;
  color: var(--pv-ink-deep);
  background-color: transparent;
  font-family: inherit;
  isolation: isolate;
  padding: 0 0 clamp(60px, 8vw, 120px);
}

.pv-team.has-grid-bg {
  background-image:
    linear-gradient(rgba(16, 47, 89, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 47, 89, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ================= БІЖУЧИЙ РЯДОК (TICKER) ================= */
.pv-team-ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--pv-line);
  background: var(--pv-signal);
  color: var(--pv-white);
  white-space: nowrap;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.pv-team-ticker-track {
  display: inline-flex;
  width: max-content;
  padding: 12px 0;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: pv-ticker 24s linear infinite;
}

.pv-team-ticker-track span {
  padding-right: 36px;
  display: inline-block;
}

@keyframes pv-ticker {
  to {
    transform: translateX(-50%);
  }
}

.pv-team-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 76px);
}

.pv-team-head {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(380px, 1.05fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(60px, 7vw, 100px);
}

.pv-team .pv-section-index {
  margin-bottom: 28px;
}

.pv-team-title {
  max-width: 750px;
  margin: 0;
  font-family: inherit;
  font-size: clamp(40px, 6.4vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.065em;
  text-wrap: balance;
  color: var(--pv-ink-deep);
}

.pv-team-title span {
  color: var(--pv-signal);
}

.pv-team-lead {
  max-width: 620px;
  margin: 0 0 5px;
  padding-left: 24px;
  border-left: 3px solid var(--pv-signal);
  color: rgba(9, 36, 66, 0.76);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.75;
}

.pv-team-lead strong {
  color: var(--pv-ink-deep);
  font-weight: 700;
}

/* ================= СІТКА КАРТОК ================= */
.pv-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 46px);
  align-items: start;
}

.pv-role-card {
  min-width: 0;
}

.pv-role-card:nth-child(2) {
  margin-top: 92px;
}

.pv-role-card:nth-child(3) {
  margin-top: 28px;
}

/* ================= ПОСТЕР РОЛІ ================= */
.pv-role-visual {
  position: relative;
  aspect-ratio: 0.82;
  overflow: hidden;
  margin-bottom: 26px;
  border: 0;
  outline: 1.5px solid var(--pv-ink-deep);
  outline-offset: -1.5px;
  box-shadow: 0 0 0 var(--pv-ink-deep);
  color: var(--pv-white);
  text-decoration: none !important;
  display: block;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.pv-role-card:hover .pv-role-visual {
  transform: translate(-7px, -8px) rotate(-1.2deg);
  box-shadow: 14px 16px 0 var(--pv-ink-deep);
}

.pv-role-card:nth-child(2):hover .pv-role-visual {
  transform: translate(6px, -8px) rotate(1.2deg);
}

.pv-poster-top {
  position: absolute;
  z-index: 8;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pv-poster-top span:last-child {
  opacity: 0.65;
}

.pv-poster-type {
  position: absolute;
  z-index: 7;
  left: 20px;
  bottom: 20px;
  font-family: inherit;
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  transition: letter-spacing 0.35s ease, transform 0.35s ease;
}

.pv-role-card:hover .pv-poster-type {
  letter-spacing: -0.03em;
  transform: translateX(5px);
}

.pv-poster-code {
  position: absolute;
  z-index: 7;
  right: 20px;
  bottom: 20px;
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  writing-mode: vertical-rl;
  letter-spacing: 0.12em;
  opacity: 0.6;
}

.pv-role-number {
  position: absolute;
  z-index: 8;
  top: 68px;
  left: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--pv-ink-deep);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 5px 5px 0 var(--pv-ink-deep);
}

/* ================= ТЕМИ ГРАФІКИ ПОСТЕРІВ ================= */

/* 1. Менеджер / Стратегія */
.pv-role-visual--manager {
  background:
    radial-gradient(circle at 76% 40%, transparent 0 19%, rgba(255, 255, 255, 0.08) 19.3% 19.8%, transparent 20.1%),
    var(--pv-ink, #102f59);
}

.pv-role-visual--manager::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 78%;
  aspect-ratio: 1;
  left: -31%;
  bottom: 6%;
  border-radius: 50%;
  background: var(--pv-signal);
}

.pv-role-visual--manager::after {
  content: "↗";
  position: absolute;
  z-index: 6;
  top: 20%;
  right: 9%;
  color: var(--pv-white);
  font-family: inherit;
  font-size: clamp(65px, 7vw, 108px);
  font-weight: 600;
  line-height: 1;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pv-role-card:hover .pv-role-visual--manager::after {
  transform: translate(10px, -10px);
}

.pv-manager-map {
  position: absolute;
  z-index: 5;
  inset: 30% 14% 29% 28%;
  border-top: 2px solid var(--pv-white);
  border-right: 2px solid var(--pv-white);
  transform: skewY(-18deg);
}

.pv-manager-map span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pv-white);
  border: 4px solid var(--pv-ink);
  box-shadow: 0 0 0 2px var(--pv-white);
}

.pv-manager-map span:nth-child(1) { left: -7px; top: -7px; }
.pv-manager-map span:nth-child(2) { right: -7px; top: -7px; background: #f6c847; }
.pv-manager-map span:nth-child(3) { right: -7px; bottom: -7px; background: var(--pv-signal); }

/* 2. Дизайнер / Візуал */
.pv-role-visual--designer {
  color: var(--pv-ink-deep);
  background:
    linear-gradient(45deg, rgba(9, 36, 66, 0.08) 25%, transparent 25%, transparent 75%, rgba(9, 36, 66, 0.08) 75%),
    linear-gradient(45deg, rgba(9, 36, 66, 0.08) 25%, var(--pv-paper, #f4f1e9) 25%, var(--pv-paper, #f4f1e9) 75%, rgba(9, 36, 66, 0.08) 75%);
  background-position: 0 0, 14px 14px;
  background-size: 28px 28px;
}

.pv-role-visual--designer::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 16% 9% 22%;
  background: var(--pv-signal);
  border: 1px solid var(--pv-ink-deep);
  transform: rotate(-4deg);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pv-role-card:hover .pv-role-visual--designer::before {
  transform: rotate(1deg) scale(1.02);
}

.pv-design-canvas {
  position: absolute;
  z-index: 5;
  top: 26%;
  left: 19%;
  width: 62%;
  height: 37%;
  border: 2px solid var(--pv-ink-deep);
  background: var(--pv-paper, #f4f1e9);
  box-shadow: 9px 10px 0 var(--pv-ink-deep);
  transform: rotate(3deg);
}

.pv-design-canvas::before {
  content: "Aa";
  position: absolute;
  left: 10%;
  bottom: 7%;
  font-family: inherit;
  font-size: clamp(55px, 6.5vw, 100px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.12em;
  color: var(--pv-ink-deep);
}

.pv-design-canvas::after {
  content: "";
  position: absolute;
  right: 9%;
  top: 12%;
  width: 20%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f6c847;
  border: 2px solid var(--pv-ink-deep);
}

.pv-design-cursor {
  position: absolute;
  z-index: 7;
  top: 47%;
  right: 13%;
  width: 0;
  height: 0;
  border-top: 34px solid var(--pv-ink-deep);
  border-right: 19px solid transparent;
  transform: rotate(-19deg);
  filter: drop-shadow(3px 3px 0 #fff);
  transition: transform 0.35s ease;
}

.pv-role-card:hover .pv-design-cursor {
  transform: translate(8px, 7px) rotate(-7deg);
}

/* 3. Монтажник / Конструкція */
.pv-role-visual--installer {
  color: var(--pv-ink-deep);
  background: #f3c747;
}

.pv-role-visual--installer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 20px, rgba(9, 36, 66, 0.13) 20px 22px);
}

.pv-role-visual--installer::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 29%;
  background: var(--pv-signal);
  border-top: 1px solid var(--pv-ink-deep);
}

.pv-build-frame {
  position: absolute;
  z-index: 5;
  top: 22%;
  left: 15%;
  width: 70%;
  height: 48%;
  border: 7px solid var(--pv-ink-deep);
  background: rgba(255, 253, 247, 0.88);
  box-shadow: 12px 13px 0 rgba(9, 36, 66, 0.2);
}

.pv-build-frame::before,
.pv-build-frame::after {
  content: "";
  position: absolute;
  bottom: -41%;
  width: 8px;
  height: 41%;
  background: var(--pv-ink-deep);
}

.pv-build-frame::before { left: 15%; transform: skewX(-8deg); }
.pv-build-frame::after { right: 15%; transform: skewX(8deg); }

.pv-build-frame span {
  position: absolute;
  inset: 12%;
  border: 2px dashed var(--pv-signal);
  background: linear-gradient(135deg, transparent 48.8%, var(--pv-ink-deep) 49% 51%, transparent 51.2%);
}

/* 4. Власне фото */
.pv-custom-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pv-custom-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= МЕТА КАРТОК ================= */
.pv-role-meta {
  position: relative;
  padding: 22px 20px 0 0;
  border-top: 2px solid var(--pv-ink-deep);
}

.pv-role-meta::after {
  content: "→";
  position: absolute;
  top: 15px;
  right: 0;
  color: var(--pv-signal);
  font-size: 26px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.pv-role-card:hover .pv-role-meta::after {
  transform: translateX(7px);
}

.pv-role-meta h3 {
  margin: 0 0 10px;
  font-family: inherit;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--pv-ink-deep);
}

.pv-role-meta p {
  max-width: 370px;
  margin: 0;
  color: rgba(9, 36, 66, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.pv-role-card:nth-child(2) .pv-role-meta {
  border-color: var(--pv-signal);
}

.pv-team-note {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 70px;
  color: rgba(9, 36, 66, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pv-team-note::before {
  content: "";
  width: 72px;
  height: 1.5px;
  background: var(--pv-signal);
}

/* ================= АДАПТИВНІСТЬ ДЛЯ КОМАНДИ ================= */
@media (max-width: 991px) {
  .pv-team-head {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pv-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pv-role-card:nth-child(2) {
    margin-top: 44px;
  }
  .pv-role-card:nth-child(3) {
    margin-top: -18px;
  }
}

@media (max-width: 576px) {
  .pv-team-title {
    font-size: clamp(36px, 12vw, 60px);
  }
  .pv-team-lead {
    font-size: 15px;
  }
  .pv-team-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .pv-role-card:nth-child(2),
  .pv-role-card:nth-child(3) {
    margin-top: 0;
  }
  .pv-role-visual {
    aspect-ratio: 1.05;
  }
  .pv-team-note {
    margin-top: 50px;
    justify-content: flex-start;
  }
}

/* ========================================================
   СЕКЦІЯ: НАШІ ЦІННОСТІ (ІНТЕРАКТИВНІ ТАБИ)
   ======================================================== */
.pv-values-widget-wrapper {
  width: 100%;
}

.pv-values {
  --pv-ink: #102f59;
  --pv-ink-deep: #092442;
  --pv-paper: #f4f1e9;
  --pv-white: #fffdf7;
  --pv-signal: #ed4b35;

  position: relative;
  overflow: hidden;
  color: var(--pv-ink-deep);
  background-color: transparent;
  font-family: inherit;
  isolation: isolate;
  padding: clamp(60px, 8vw, 120px) 0;
}

.pv-values-watermark {
  position: absolute;
  z-index: -1;
  top: 4%;
  right: -2%;
  color: transparent;
  font-family: inherit;
  font-size: clamp(110px, 20vw, 320px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(9, 36, 66, 0.08);
  user-select: none;
  pointer-events: none;
}

.pv-values.has-noise-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.pv-values-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 76px);
}

.pv-values-head {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(320px, 0.7fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(50px, 6vw, 90px);
}

.pv-values .pv-section-index {
  margin-bottom: 26px;
}

.pv-values-title {
  max-width: 760px;
  margin: 0;
  font-family: inherit;
  font-size: clamp(40px, 6.6vw, 98px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.07em;
  text-wrap: balance;
  color: var(--pv-ink-deep);
}

.pv-values-title span {
  color: var(--pv-signal);
}

.pv-values-intro {
  max-width: 520px;
  margin: 0 0 5px;
  color: rgba(9, 36, 66, 0.72);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.72;
}

/* ================= ІНТЕРАКТИВНИЙ ВІДЖЕТ ЦІННОСТЕЙ ================= */
.pv-values-widget {
  --value-accent: var(--pv-signal, #ed4b35);
  --value-fg: var(--pv-white, #fffdf7);

  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(440px, 1.24fr);
  min-height: 620px;
  border: 2px solid var(--pv-ink-deep);
  background: var(--pv-paper, #f4f1e9);
  box-shadow: 18px 20px 0 var(--pv-ink-deep);
  transition: box-shadow 0.35s ease;
}

.pv-values-widget:focus-within {
  box-shadow: 22px 24px 0 var(--pv-ink-deep);
}

.pv-values-tabs {
  display: flex;
  flex-direction: column;
  border-right: 2px solid var(--pv-ink-deep);
}

.pv-value-tab {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 98px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: center;
  color: var(--pv-ink-deep) !important;
  background: transparent;
  border: 0 !important;
  border-bottom: 1px solid rgba(9, 36, 66, 0.2) !important;
  text-align: left;
  cursor: pointer;
  outline: none;
  box-shadow: none !important;
  transition: color 0.25s ease, background 0.25s ease, padding-left 0.25s ease;
}

.pv-value-tab:last-child {
  border-bottom: 0 !important;
}

/* Стан наведення для неактивного таба */
.pv-value-tab:not(.is-active):not([aria-selected="true"]):hover {
  color: var(--pv-ink-deep) !important;
  background: rgba(9, 36, 66, 0.06) !important;
  padding-left: 30px;
}

.pv-value-tab:not(.is-active):not([aria-selected="true"]):hover .pv-value-tab-name {
  color: var(--pv-ink-deep) !important;
}

.pv-value-tab:not(.is-active):not([aria-selected="true"]):hover .pv-value-tab-number {
  border-color: var(--pv-signal) !important;
  color: var(--pv-signal) !important;
  background: rgba(237, 75, 53, 0.08);
}

.pv-value-tab:not(.is-active):not([aria-selected="true"]):hover .pv-value-tab-arrow {
  opacity: 0.5;
  color: var(--pv-signal) !important;
  transform: translateX(0);
}

/* Активний таб */
.pv-value-tab.is-active,
.pv-value-tab[aria-selected="true"],
.pv-value-tab.is-active:hover,
.pv-value-tab[aria-selected="true"]:hover {
  color: var(--value-fg) !important;
  background: var(--value-accent) !important;
}

.pv-value-tab.is-active .pv-value-tab-name,
.pv-value-tab[aria-selected="true"] .pv-value-tab-name {
  color: var(--value-fg) !important;
}

.pv-value-tab.is-active .pv-value-tab-number,
.pv-value-tab[aria-selected="true"] .pv-value-tab-number {
  border-color: currentColor !important;
  color: var(--value-fg) !important;
  background: transparent;
}

.pv-value-tab.is-active .pv-value-tab-arrow,
.pv-value-tab[aria-selected="true"] .pv-value-tab-arrow {
  opacity: 1 !important;
  color: var(--value-fg) !important;
  transform: none;
}

.pv-value-tab:focus-visible {
  z-index: 2;
  outline: 3px solid var(--pv-signal);
  outline-offset: -5px;
}

.pv-value-tab-number {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  color: inherit;
  transition: all 0.25s ease;
}

.pv-value-tab-name {
  font-family: inherit;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: inherit;
}

.pv-value-tab-arrow {
  font-size: 22px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-8px);
  color: inherit;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.pv-value-tab.is-active .pv-value-tab-arrow,
.pv-value-tab[aria-selected="true"] .pv-value-tab-arrow {
  opacity: 1;
  transform: none;
}

/* ================= ПРАВА АКТИВНА ПАНЕЛЬ ================= */
.pv-value-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--value-fg);
  background: var(--value-accent);
  transition: color 0.4s ease, background 0.4s ease;
  isolation: isolate;
}

.pv-value-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(70%, 450px);
  aspect-ratio: 1;
  top: 50%;
  right: -18%;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  opacity: 0.18;
  transform: translateY(-50%);
}

.pv-value-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.pv-value-panel-label {
  max-width: 200px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}

.pv-value-symbol {
  display: grid;
  width: clamp(76px, 8vw, 116px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: inherit;
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 700;
  line-height: 1;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pv-value-panel.is-switching .pv-value-symbol {
  transform: rotate(45deg) scale(0.7);
}

.pv-value-panel-main {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto 0;
  padding: 48px 0 40px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.pv-value-panel.is-switching .pv-value-panel-main {
  opacity: 0;
  transform: translateY(12px);
}

.pv-value-active-number {
  display: block;
  margin-bottom: 16px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.pv-value-active-title {
  margin: 0 0 24px;
  font-family: inherit;
  font-size: clamp(32px, 4.4vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: inherit;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.pv-value-active-text {
  max-width: 620px;
  margin: 0;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.7;
  opacity: 0.88;
}

/* ================= ПРОГРЕС-БАР ================= */
.pv-value-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pv-value-progress-line {
  height: 2px;
  background: currentColor;
  opacity: 0.25;
  position: relative;
  overflow: hidden;
}

.pv-value-progress-line span {
  display: block;
  height: 100%;
  background: currentColor;
  opacity: 1;
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ================= АДАПТИВНІСТЬ ДЛЯ ЦІННОСТЕЙ ================= */
@media (max-width: 991px) {
  .pv-values-head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }
  .pv-values-widget {
    grid-template-columns: 1fr;
    min-height: 0;
    box-shadow: 10px 12px 0 var(--pv-ink-deep);
  }
  .pv-values-tabs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    border-right: 0 !important;
    border-bottom: 2px solid var(--pv-ink-deep) !important;
    background: var(--pv-paper, #f4f1e9);
    padding: 12px 14px;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
  }
  .pv-values-tabs::-webkit-scrollbar {
    display: none !important;
    width: 0;
    height: 0;
  }
  .pv-value-tab {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: max-content !important;
    min-width: 0 !important;
    min-height: auto !important;
    padding: 8px 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    border: 1.5px solid rgba(9, 36, 66, 0.18) !important;
    border-radius: 30px !important;
    background: #fff !important;
    scroll-snap-align: center;
    white-space: nowrap !important;
    text-align: left;
  }
  .pv-value-tab.is-active,
  .pv-value-tab[aria-selected="true"] {
    background: var(--value-accent) !important;
    border-color: var(--value-accent) !important;
    color: var(--value-fg) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
  }
  .pv-value-tab-arrow {
    display: none !important;
  }
  .pv-value-tab-number {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    font-size: 10px !important;
    flex-shrink: 0 !important;
    border-width: 1.5px !important;
  }
  .pv-value-tab-name {
    font-size: 13px !important;
    white-space: nowrap !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
  }
  .pv-value-panel {
    min-height: 480px;
    padding: 32px 28px;
  }
}

@media (max-width: 576px) {
  .pv-values-title {
    font-size: clamp(32px, 10vw, 50px);
  }
  .pv-values-watermark {
    font-size: clamp(65px, 16vw, 110px);
    top: 1%;
    right: -1%;
    opacity: 0.5;
  }
  .pv-values-widget {
    box-shadow: 6px 7px 0 var(--pv-ink-deep);
  }
  .pv-values-tabs {
    padding: 10px 12px;
    gap: 8px;
  }
  .pv-value-tab {
    padding: 7px 13px !important;
    gap: 7px !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: max-content !important;
  }
  .pv-value-tab-number {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    font-size: 9px !important;
  }
  .pv-value-tab-name {
    font-size: 12px !important;
  }
  .pv-value-panel {
    min-height: 420px;
    padding: 24px 18px;
  }
  .pv-value-symbol {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
  .pv-value-panel-label {
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: 0.12em;
    max-width: 140px;
  }
  .pv-value-panel-main {
    padding: 24px 0 20px;
  }
  .pv-value-active-number {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .pv-value-active-title {
    font-size: clamp(22px, 6.4vw, 32px);
    line-height: 1.12;
    margin-bottom: 12px;
    word-break: normal;
    overflow-wrap: break-word;
  }
  .pv-value-active-text {
    font-size: 14px;
    line-height: 1.6;
  }
  .pv-value-progress {
    gap: 12px;
    font-size: 9px;
  }
}

/* ========================================================
   СЕКЦІЯ: КРЕАТИВНИЙ ЗАГОЛОВОК (SECTION TITLE)
   ======================================================== */
.pv-section-title-wrap {
  --pv-signal: #ed4b35;
  --pv-ink: #102f59;
  --pv-ink-deep: #092442;
  --pv-white: #fffdf7;

  position: relative;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  isolation: isolate;
  margin: 0;
}

/* Колірні теми заголовка */
.pv-section-title-wrap.pv-theme-dark_text {
  color: var(--pv-ink-deep);
}

.pv-section-title-wrap.pv-theme-dark_text .pv-section-index {
  color: var(--pv-ink);
}

.pv-section-title-wrap.pv-theme-dark_text .pv-section-index span {
  border-color: var(--pv-ink);
}

.pv-section-title-wrap.pv-theme-dark_text .pv-title-lead {
  color: rgba(9, 36, 66, 0.78);
}

.pv-section-title-wrap.pv-theme-light_text {
  color: var(--pv-white);
}

.pv-section-title-wrap.pv-theme-light_text .pv-section-index {
  color: var(--pv-white);
}

.pv-section-title-wrap.pv-theme-light_text .pv-section-index span {
  border-color: rgba(255, 255, 255, 0.4);
}

.pv-section-title-wrap.pv-theme-light_text .pv-title-lead {
  color: rgba(255, 253, 247, 0.78);
}

.pv-section-title-wrap.pv-theme-light_text .pv-title-watermark {
  -webkit-text-stroke-color: rgba(255, 253, 247, 0.07);
}

/* Водяний знак */
.pv-title-watermark {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  color: transparent;
  font-family: inherit;
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(9, 36, 66, 0.07);
  user-select: none;
  pointer-events: none;
}

/* Макет: 2 Колонки (Split) */
.pv-layout-split .pv-title-container {
  display: grid;
  grid-template-columns: minmax(340px, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(32px, 6vw, 100px);
  align-items: end;
}

/* Макет: В стовпчик (Stacked) */
.pv-layout-stacked .pv-title-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Макет: По центру (Center) */
.pv-layout-center .pv-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}

.pv-layout-center .pv-title-lead.has-accent-bar {
  border-left: 0;
  border-top: 3px solid var(--pv-signal);
  padding-left: 0;
  padding-top: 16px;
  margin-top: 6px;
}

/* Стилі бейджів */
.pv-badge-dot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pv-badge-dot .pv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pv-signal);
  box-shadow: 0 0 0 5px rgba(237, 75, 53, 0.14);
}

.pv-badge-pill {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(237, 75, 53, 0.1);
  color: var(--pv-signal);
  margin-bottom: 24px;
}

/* Головний заголовок */
.pv-main-title {
  margin: 0;
  font-family: inherit;
  font-size: clamp(38px, 5.6vw, 86px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
  color: inherit;
}

/* Акцентне слово */
.pv-highlight-word.pv-highlight-underline {
  position: relative;
  color: var(--pv-signal);
  font-style: normal;
  display: inline-block;
}

.pv-highlight-word.pv-highlight-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.06em;
  height: 0.08em;
  background: var(--pv-signal);
  transform-origin: left;
  animation: pv-underline 1s 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.pv-highlight-word.pv-highlight-color {
  color: var(--pv-signal);
}

.pv-highlight-word.pv-highlight-badge {
  display: inline-block;
  background: var(--pv-signal);
  color: #fff;
  padding: 0 0.25em;
  border-radius: 4px;
}

/* Опис / Lead */
.pv-title-lead {
  max-width: 640px;
  margin: 0;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.72;
  color: inherit;
}

.pv-title-lead.has-accent-bar {
  padding-left: 22px;
  border-left: 3px solid var(--pv-signal);
}

.pv-title-lead strong {
  font-weight: 700;
  color: currentColor;
  opacity: 1;
}

/* Кнопка дії під заголовком */
.pv-title-action-wrap {
  margin-top: 20px;
}

.pv-title-action-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pv-signal) !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
  transition: all 0.25s ease;
}

.pv-title-action-btn .pv-action-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
  font-size: 18px;
  line-height: 1;
}

.pv-title-action-btn:hover {
  color: #ff5e48 !important;
}

.pv-title-action-btn:hover .pv-action-arrow {
  transform: translateX(6px);
}

/* ================= АДАПТИВНІСТЬ ДЛЯ ЗАГОЛОВКІВ ================= */
@media (max-width: 991px) {
  .pv-layout-split .pv-title-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 576px) {
  .pv-main-title {
    font-size: clamp(34px, 11vw, 54px);
  }
  .pv-title-lead {
    font-size: 15px;
  }
  .pv-title-lead.has-accent-bar {
    padding-left: 16px;
  }
  .pv-title-watermark {
    font-size: clamp(60px, 16vw, 100px);
  }
}

/* ========================================================
   СЕКЦІЯ: ФОРМАТИ РЕКЛАМИ (HERO З КРЕСЛЕННЯМ БІЛБОРДА)
   ======================================================== */
.pv-formats-hero-widget-wrapper {
  width: 100%;
}

.pv-formats-hero {
  --pv-navy: #102f59;
  --pv-deep: #092442;
  --pv-paper: #f4f1e9;
  --pv-white: #fffdf7;
  --pv-signal: #ed4b35;
  --pv-line: rgba(9, 36, 66, 0.18);

  position: relative;
  overflow: hidden;
  color: var(--pv-deep);
  background-color: transparent;
  font-family: inherit;
  isolation: isolate;
  padding: clamp(70px, 9vw, 130px) 0;
}

.pv-formats-hero.has-grid-bg {
  background-image:
    linear-gradient(rgba(9, 36, 66, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 36, 66, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

.pv-formats-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 76px);
  display: grid;
  grid-template-columns: minmax(460px, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}

.pv-formats-hero .pv-section-index {
  margin-bottom: 30px;
}

.pv-formats-hero-title {
  max-width: 880px;
  margin: 0;
  font-family: inherit;
  font-size: clamp(48px, 6.8vw, 100px);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.075em;
  text-wrap: balance;
  color: var(--pv-deep);
}

.pv-formats-hero-title span {
  color: var(--pv-signal);
}

.pv-formats-hero-lead {
  max-width: 640px;
  margin: 36px 0 0 clamp(0px, 4vw, 68px);
  padding-left: 24px;
  border-left: 3px solid var(--pv-signal);
  color: rgba(9, 36, 66, 0.72);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.72;
}

.pv-formats-hero-meta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.pv-formats-hero-count {
  font-family: inherit;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
  color: var(--pv-deep);
}

.pv-formats-hero-count-label {
  max-width: 130px;
  color: rgba(9, 36, 66, 0.58);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ================= ГРАФІЧНЕ КРЕСЛЕННЯ БІЛБОРДА ================= */
.pv-formats-hero-drawing {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.pv-hero-orbit {
  position: absolute;
  width: min(100%, 510px);
  aspect-ratio: 1;
  border: 1px solid var(--pv-line);
  border-radius: 50%;
  pointer-events: none;
}

.pv-hero-orbit::before,
.pv-hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--pv-signal);
}

.pv-hero-orbit::before {
  width: 18px;
  height: 18px;
  top: 8%;
  left: 16%;
}

.pv-hero-orbit::after {
  width: 10px;
  height: 10px;
  right: 2%;
  bottom: 30%;
}

.pv-blueprint-board {
  position: relative;
  z-index: 2;
  width: min(88%, 470px);
  transform: rotate(2deg);
  animation: pv-board-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes pv-board-in {
  from {
    opacity: 0;
    transform: translateY(40px) rotate(0);
  }
  to {
    opacity: 1;
    transform: rotate(2deg);
  }
}

.pv-dimension-line {
  position: absolute;
  z-index: 3;
  left: 4%;
  right: 4%;
  top: -25px;
  height: 1px;
  background: var(--pv-signal);
}

.pv-dimension-line::before,
.pv-dimension-line::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 1px;
  height: 9px;
  background: var(--pv-signal);
}

.pv-dimension-line::before { left: 0; }
.pv-dimension-line::after { right: 0; }

.pv-dimension-line span {
  position: absolute;
  left: 50%;
  top: -20px;
  padding: 0 8px;
  background: var(--pv-paper, #f4f1e9);
  color: var(--pv-signal);
  font-family: inherit;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pv-blueprint-face {
  position: relative;
  aspect-ratio: 1.75;
  padding: clamp(20px, 3vw, 26px);
  color: var(--pv-white);
  background: var(--pv-ink, #102f59);
  border: 8px solid var(--pv-white);
  outline: 2px solid var(--pv-deep);
  box-shadow: 18px 20px 0 rgba(9, 36, 66, 0.14);
  overflow: hidden;
}

.pv-blueprint-watermark {
  position: absolute;
  right: -4%;
  bottom: -10%;
  color: transparent;
  font-family: inherit;
  font-size: clamp(58px, 7vw, 98px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.1em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  pointer-events: none;
  user-select: none;
}

.pv-blueprint-face strong {
  display: block;
  max-width: 290px;
  font-family: inherit;
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.065em;
  position: relative;
  z-index: 2;
}

.pv-blueprint-face strong span {
  color: var(--pv-signal);
}

.pv-blueprint-label {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0.55;
}

.pv-blueprint-legs {
  position: relative;
  height: 150px;
}

.pv-blueprint-legs::before,
.pv-blueprint-legs::after {
  content: "";
  position: absolute;
  top: 0;
  width: 11px;
  height: 160px;
  background: var(--pv-deep);
  transform-origin: top;
}

.pv-blueprint-legs::before {
  left: 29%;
  transform: skewX(-7deg);
}

.pv-blueprint-legs::after {
  right: 29%;
  transform: skewX(7deg);
}

/* ================= АДАПТИВНІСТЬ ДЛЯ ФОРМАТІВ HERO ================= */
@media (max-width: 1000px) {
  .pv-formats-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pv-formats-hero-drawing {
    min-height: 470px;
  }
  .pv-formats-hero-lead {
    margin-left: 0;
  }
}

@media (max-width: 650px) {
  .pv-formats-hero-title {
    font-size: clamp(40px, 12vw, 68px);
  }
  .pv-formats-hero-lead {
    margin-top: 24px;
    padding-left: 18px;
    font-size: 15px;
  }
  .pv-formats-hero-meta {
    margin-top: 32px;
  }
  .pv-formats-hero-drawing {
    min-height: 390px;
  }
  .pv-blueprint-board {
    width: 95%;
  }
  .pv-blueprint-legs {
    height: 105px;
  }
  .pv-blueprint-legs::before,
  .pv-blueprint-legs::after {
    height: 112px;
    width: 8px;
  }
}

/* ========================================================
   СЕКЦІЯ: ЗАГОЛОВОК ЛОКАЦІЙ (LOCATION TITLE)
   ======================================================== */
.pv-location-title-widget-wrapper {
  width: 100%;
}

.pv-location-specimen {
  --pv-signal: #ed4b35;
  --pv-deep: #092442;
  --pv-paper: #f4f1e9;
  --pv-white: #fffdf7;
  --pv-line: rgba(9, 36, 66, 0.17);

  position: relative;
  font-family: inherit;
  isolation: isolate;
  margin: 0;
}

/* 1. Новий чистий контурний стиль (Minimal Outline - за замовчуванням) */
.pv-location-specimen.pv-style-minimal_outline {
  overflow: visible;
  color: var(--pv-deep);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.pv-location-specimen.pv-style-minimal_outline .pv-location-title {
  padding: clamp(20px, 3.5vw, 44px) 0;
  display: grid;
  grid-template-columns: 78px minmax(330px, 1fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.pv-location-specimen.pv-style-minimal_outline .pv-location-marker {
  position: relative;
  display: grid;
  width: 68px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--pv-signal);
  background: transparent;
  border: 2px solid var(--pv-signal);
  border-radius: 50% 50% 50% 8px;
  box-shadow: none;
  transform: rotate(-45deg);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.35s ease;
}

.pv-location-specimen.pv-style-minimal_outline:hover .pv-location-marker {
  background: rgba(237, 75, 53, 0.08);
  transform: translateY(-5px) rotate(-45deg);
}

.pv-location-specimen.pv-style-minimal_outline .pv-location-marker::before {
  content: "";
  position: absolute;
  width: 19px;
  aspect-ratio: 1;
  border: 2px solid var(--pv-signal);
  border-radius: 50%;
}

.pv-location-specimen.pv-style-minimal_outline .pv-location-description {
  position: relative;
  margin: 0;
  padding: 20px 42px 0 0;
  color: rgba(9, 36, 66, 0.66);
  border-top: 1px solid rgba(9, 36, 66, 0.38);
  border-left: 0;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.65;
}

.pv-location-specimen.pv-style-minimal_outline .pv-location-arrow-indicator {
  position: absolute;
  top: -26px;
  right: 0;
  color: var(--pv-signal);
  background: transparent;
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

/* 2. Нео-бруталістична картка з тінню (Boxed Card) */
.pv-location-specimen.pv-style-boxed_card {
  min-height: 270px;
  overflow: hidden;
  color: var(--pv-deep);
  background:
    radial-gradient(circle at 8% 100%, rgba(237, 75, 53, 0.15), transparent 29%),
    radial-gradient(circle at 92% 12%, rgba(159, 185, 212, 0.34), transparent 33%),
    radial-gradient(circle at 48% 110%, rgba(243, 199, 71, 0.14), transparent 30%),
    var(--pv-white);
  border: 1px solid var(--pv-deep);
  box-shadow: 15px 17px 0 var(--pv-deep);
  transition: box-shadow 0.35s ease;
}

.pv-location-specimen.pv-style-boxed_card .pv-location-title {
  min-height: 270px;
  padding: clamp(32px, 4vw, 60px) clamp(24px, 5vw, 76px);
  display: grid;
  grid-template-columns: 100px minmax(320px, 1fr) minmax(260px, 0.65fr);
  gap: clamp(24px, 4vw, 68px);
  align-items: center;
}

.pv-location-specimen.pv-style-boxed_card .pv-location-marker {
  position: relative;
  display: grid;
  width: 92px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--pv-white);
  background: var(--pv-signal);
  border-radius: 50% 50% 50% 8px;
  box-shadow: 9px 10px 0 var(--pv-deep);
  transform: rotate(-45deg);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

.pv-location-specimen.pv-style-boxed_card:hover .pv-location-marker {
  transform: translateY(-6px) rotate(-45deg);
  box-shadow: 13px 15px 0 var(--pv-deep);
}

.pv-location-specimen.pv-style-boxed_card .pv-location-marker::before {
  content: "";
  position: absolute;
  width: 26px;
  aspect-ratio: 1;
  border: 2px solid var(--pv-white);
  border-radius: 50%;
}

.pv-location-specimen.pv-style-boxed_card .pv-location-marker span {
  position: absolute;
  right: -25px;
  bottom: -18px;
  color: var(--pv-deep);
  font-family: inherit;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transform: rotate(45deg);
  white-space: nowrap;
}

.pv-location-specimen.pv-style-boxed_card .pv-location-description {
  position: relative;
  margin: 0;
  padding: 22px 0 0 22px;
  color: rgba(9, 36, 66, 0.68);
  border-top: 2px solid var(--pv-deep);
  border-left: 1px solid var(--pv-line);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
}

.pv-location-specimen.pv-style-boxed_card .pv-location-arrow-indicator {
  position: absolute;
  top: -18px;
  right: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--pv-white);
  background: var(--pv-deep);
  border-radius: 50%;
  font-size: 15px;
  line-height: 1;
}

/* Спільні стилі для заголовка та кікера */
.pv-location-copy {
  position: relative;
}

.pv-location-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--pv-signal);
  font-family: inherit;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.pv-location-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.pv-location-title h2,
.pv-location-title h1,
.pv-location-title h3 {
  max-width: 720px;
  margin: 0;
  font-family: inherit;
  font-size: clamp(34px, 4.1vw, 61px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.067em;
  text-wrap: balance;
  color: var(--pv-deep);
}

.pv-location-title h2 span,
.pv-location-title h1 span,
.pv-location-title h3 span {
  color: var(--pv-signal);
}

/* ================= АДАПТИВНІСТЬ ДЛЯ ЗАГОЛОВКА ЛОКАЦІЙ ================= */
@media (max-width: 900px) {
  .pv-location-specimen.pv-style-minimal_outline .pv-location-title {
    grid-template-columns: 68px 1fr;
    gap: 32px;
  }
  .pv-location-specimen.pv-style-minimal_outline .pv-location-marker {
    width: 60px;
  }
  .pv-location-specimen.pv-style-minimal_outline .pv-location-description {
    grid-column: 2;
  }

  .pv-location-specimen.pv-style-boxed_card .pv-location-title {
    grid-template-columns: 80px 1fr;
    gap: 30px;
  }
  .pv-location-specimen.pv-style-boxed_card .pv-location-marker {
    width: 76px;
  }
  .pv-location-specimen.pv-style-boxed_card .pv-location-description {
    grid-column: 2;
  }
}

@media (max-width: 600px) {
  .pv-location-specimen.pv-style-minimal_outline {
    min-height: 340px;
  }
  .pv-location-specimen.pv-style-minimal_outline .pv-location-title {
    min-height: 340px;
    padding: 28px 0;
    grid-template-columns: 1fr;
    gap: 26px;
    align-content: center;
  }
  .pv-location-specimen.pv-style-minimal_outline .pv-location-marker {
    width: 58px;
  }

  .pv-location-specimen.pv-style-boxed_card {
    min-height: 380px;
    box-shadow: 8px 9px 0 var(--pv-deep);
  }
  .pv-location-specimen.pv-style-boxed_card .pv-location-title {
    min-height: 380px;
    padding: 30px 20px;
    grid-template-columns: 1fr;
    gap: 28px;
    align-content: center;
  }
  .pv-location-specimen.pv-style-boxed_card .pv-location-marker {
    width: 68px;
  }
  .pv-location-specimen.pv-style-boxed_card .pv-location-description {
    grid-column: auto;
    padding: 18px 45px 0 0;
    border-left: 0;
  }

  .pv-location-title h2,
  .pv-location-title h1,
  .pv-location-title h3 {
    font-size: clamp(32px, 10.5vw, 46px);
  }
}

/* ========================================================
   СЕКЦІЯ: ЗАГОЛОВОК ФОРМАТІВ (FORMATS TITLE)
   ======================================================== */
.pv-formats-title-widget-wrapper {
  width: 100%;
}

.pv-types-specimen {
  --pv-signal: #ed4b35;
  --pv-deep: #092442;
  --pv-paper: #f4f1e9;
  --pv-white: #fffdf7;
  --pv-line: rgba(9, 36, 66, 0.17);

  position: relative;
  min-height: 270px;
  overflow: hidden;
  color: var(--pv-deep);
  background: transparent;
  border: 0;
  font-family: inherit;
  isolation: isolate;
  margin: 0;
}

.pv-types-watermark {
  position: absolute;
  right: -1%;
  bottom: -20%;
  color: transparent;
  font-family: inherit;
  font-size: clamp(90px, 14vw, 220px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.1em;
  -webkit-text-stroke: 1px rgba(9, 36, 66, 0.055);
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.pv-types-title {
  position: relative;
  min-height: 270px;
  padding: clamp(36px, 4.5vw, 68px) 0;
  display: grid;
  grid-template-columns: 190px minmax(370px, 1fr) minmax(270px, 0.58fr);
  gap: clamp(36px, 5.5vw, 84px);
  align-items: center;
}

/* Символ форматів */
.pv-format-symbol {
  position: relative;
  width: 170px;
  height: 130px;
  flex-shrink: 0;
}

.pv-format-plane {
  position: absolute;
  display: block;
  border: 2px solid var(--pv-deep);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pv-format-plane--wide {
  left: 0;
  top: 34px;
  width: 118px;
  height: 67px;
  background: var(--pv-signal);
  transform: rotate(-5deg);
}

.pv-format-plane--portrait {
  right: 4px;
  top: 0;
  width: 55px;
  height: 104px;
  background: #fffdf7;
  transform: rotate(4deg);
}

.pv-format-plane--square {
  right: 38px;
  bottom: 0;
  width: 54px;
  aspect-ratio: 1;
  background: #9fb9d4;
  transform: rotate(-2deg);
}

.pv-types-specimen:hover .pv-format-plane--wide {
  transform: translateX(-7px) rotate(-8deg);
}

.pv-types-specimen:hover .pv-format-plane--portrait {
  transform: translateY(-7px) rotate(7deg);
}

.pv-types-specimen:hover .pv-format-plane--square {
  transform: translate(6px, 5px) rotate(2deg);
}

.pv-format-count {
  position: absolute;
  z-index: 3;
  left: 42px;
  top: 53px;
  color: var(--pv-white);
  font-family: inherit;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

/* Центральний заголовок */
.pv-types-copy {
  position: relative;
}

.pv-types-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
  color: var(--pv-signal);
  font-family: inherit;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.pv-types-kicker::before {
  content: "";
  width: 27px;
  height: 2px;
  background: currentColor;
}

.pv-types-title h2,
.pv-types-title h1,
.pv-types-title h3 {
  max-width: 800px;
  margin: 0;
  font-family: inherit;
  font-size: clamp(35px, 4.2vw, 64px);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.072em;
  text-wrap: balance;
  color: var(--pv-deep);
}

.pv-types-title h2 span,
.pv-types-title h1 span,
.pv-types-title h3 span {
  color: var(--pv-signal);
}

/* Правий блок опису та посилання */
.pv-types-aside {
  position: relative;
  padding-top: 22px;
  border-top: 1px solid rgba(9, 36, 66, 0.42);
}

.pv-types-aside p {
  margin: 0 0 20px;
  color: rgba(9, 36, 66, 0.68);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
}

.pv-types-link {
  display: inline-flex !important;
  align-items: center;
  gap: 11px;
  color: var(--pv-deep) !important;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
  transition: color 0.25s ease;
}

.pv-types-link .pv-types-link-arrow {
  color: var(--pv-signal);
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  transition: transform 0.25s ease;
}

.pv-types-link:hover {
  color: var(--pv-signal) !important;
}

.pv-types-link:hover .pv-types-link-arrow {
  transform: translateY(3px);
}

/* ================= АДАПТИВНІСТЬ ДЛЯ ЗАГОЛОВКА ФОРМАТІВ ================= */
@media (max-width: 991px) {
  .pv-types-title {
    grid-template-columns: 140px 1fr;
    gap: 32px;
  }
  .pv-format-symbol {
    width: 135px;
    transform: scale(0.85);
    transform-origin: left center;
  }
  .pv-types-aside {
    grid-column: 2;
  }
}

@media (max-width: 600px) {
  .pv-types-specimen {
    min-height: 440px;
  }
  .pv-types-title {
    min-height: 440px;
    padding: 34px 0;
    grid-template-columns: 1fr;
    gap: 26px;
    align-content: center;
  }
  .pv-format-symbol {
    width: 135px;
    height: 105px;
    transform: scale(0.78);
    transform-origin: left top;
    margin-bottom: -16px;
  }
  .pv-types-title h2,
  .pv-types-title h1,
  .pv-types-title h3 {
    font-size: clamp(32px, 10vw, 48px);
  }
  .pv-types-aside {
    grid-column: auto;
    padding-right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pv-about *,
  .pv-about *::before,
  .pv-about *::after,
  .pv-history *,
  .pv-history *::before,
  .pv-history *::after,
  .pv-team *,
  .pv-team *::before,
  .pv-team *::after,
  .pv-values *,
  .pv-values *::before,
  .pv-values *::after,
  .pv-section-title-wrap *,
  .pv-section-title-wrap *::before,
  .pv-section-title-wrap *::after,
  .pv-formats-hero *,
  .pv-formats-hero *::before,
  .pv-formats-hero *::after,
  .pv-location-specimen *,
  .pv-location-specimen *::before,
  .pv-location-specimen *::after,
  .pv-types-specimen *,
  .pv-types-specimen *::before,
  .pv-types-specimen *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
  }
}
