/* =============================================
   TABTABUS CUSTOM STYLES
   ============================================= */

/* --- HEADER --- */
.tb-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}
.tb-header--scrolled {
  background: rgba(18, 17, 20, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}

.tb-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.tb-header__logo { flex-shrink: 0; line-height: 0; }
.tb-header__logo img { display: block; }

/* Desktop nav */
.tb-header__nav { flex: 1; }
.tb-header__links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 32px;
}
.tb-header__links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.tb-header__links a:hover { color: #fff; }
.tb-header__links a.tb-nav--active {
  color: rgba(100,220,200,0.95);
  font-weight: 700;
}

/* Dates */
.tb-header__dates {
  flex-shrink: 0;
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* CTA button */
.tb-header__cta {
  flex-shrink: 0;
  background: #fff;
  color: #000 !important;
  text-decoration: none;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 100px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.tb-header__cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Hamburger — hidden on desktop */
.tb-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.tb-header__burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s, width 0.25s;
  transform-origin: center;
}
.tb-header__burger span:nth-child(3) { width: 65%; }


/* Скрываем из hero то, что перенесли в шапку + лишние элементы */
#rec1614188161 .tn-elem[data-elem-id="1764169193099"],
#rec1614188161 .tn-elem[data-elem-id="1764169207659"],
#rec1614188161 .tn-elem[data-elem-id="1764251360870"],
#rec1614188161 .tn-elem[data-elem-id="1764169477084"],
#rec1614188161 .tn-elem[data-elem-id="1764169498790000001"],
#rec1614188161 .tn-elem[data-elem-id="1764241945200"] {
  display: none !important;
}

/* Скрываем overlay-кнопку в hero */
.tb-ticket-hero-btn { display: none !important; }

/* Мобильная дата в hero */
.tb-hero-dates-mobile {
  display: none;
  position: absolute;
  top: 72px;
  right: 20px;
  z-index: 10;
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

/* --- ПОЗИЦИОНИРОВАНИЕ В HERO --- */
.tb-hero-tagline {
  position: absolute;
  top: 144px;
  left: 180px;
  z-index: 10;
  max-width: 360px;
  color: rgba(255,255,255,0.92);
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  text-shadow: 0 1px 14px rgba(0,0,0,0.85), 0 0 4px rgba(0,0,0,0.5);
}
.tb-hero-tagline strong {
  color: #fff;
  font-weight: 500;
}

/* --- КНОПКА «КУПИТЬ БИЛЕТ» В HERO (desktop overlay) --- */
.tb-ticket-hero-btn {
  position: absolute;
  top: 44px;
  left: calc(50% + 280px);
  transform: translateX(-50%);
  z-index: 10;
  display: inline-block;
  background: #fff;
  color: #000 !important;
  text-decoration: none;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 100px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  letter-spacing: 0.3px;
}
.tb-ticket-hero-btn:hover {
  opacity: 0.9;
  transform: translateX(-50%) translateY(-2px);
}

/* Telegram пункт в мобильном меню */
.tb-header__tg { margin-top: 4px; }
.tb-header__tg a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: #54a9eb !important;
}
.tb-header__tg a img { opacity: 0.9; flex-shrink: 0; }

/* --- FOOTER --- */
.tb-footer {
  background: #1d1c1f;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 24px;
}
.tb-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.tb-footer__copy {
  color: rgba(255,255,255,0.45);
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 300;
}
.tb-footer__menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.tb-footer__menu a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 300;
  transition: color 0.2s;
}
.tb-footer__menu a:hover { color: #fff; }
.tb-footer__contacts {
  display: flex;
  gap: 20px;
}
.tb-footer__contacts a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 300;
  transition: color 0.2s;
}
.tb-footer__contacts a:hover { color: #fff; }
.tb-footer__policy a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 300;
  transition: color 0.2s;
}
.tb-footer__policy a:hover { color: rgba(255,255,255,0.75); }

/* --- MOBILE (≤768px) --- */
@media (max-width: 768px) {
  .tb-header__inner {
    padding: 0 20px;
    height: 60px;
    gap: 12px;
  }

  /* Nav и dates скрыты на мобиле */
  .tb-header__nav,
  .tb-header__dates { display: none; }

  /* CTA — компактная, всегда видна */
  .tb-header__cta {
    font-size: 10px;
    padding: 8px 16px;
    margin-left: auto;
  }

  /* Показываем бургер */
  .tb-header__burger { display: flex; }

  /* Блокировка скролла при открытом меню */
  body.tb-no-scroll { overflow: hidden; }

  /* Скрыть overlay-кнопку в hero на мобиле (есть в шапке) */
  .tb-ticket-hero-btn { display: none; }

  /* Позиционирование на мобиле */
  .tb-hero-tagline {
    display: block;
    top: 120px;
    left: 20px;
    right: 20px;
    max-width: none;
    font-size: 11px;
    line-height: 1.65;
  }

  /* Показываем мобильную дату */
  .tb-hero-dates-mobile { display: block; }

  /* "Смоленское поозерье" — опускаем ниже шапки */
  #rec1614188161 .tn-elem[data-elem-id="1764241945200"] {
    top: 68px !important;
  }

  .tb-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .tb-footer__menu { gap: 12px; }
  .tb-footer__contacts {
    flex-direction: column;
    gap: 8px;
  }
}

@keyframes tb-menu-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   PROGRAM PAGE
   ============================================= */
.tb-page { background: #0d0b1a; }
.tb-main { padding-top: 68px; }


/* Mobile */
@media (max-width: 768px) {
  .tb-main { padding-top: 60px; }
}

/* =============================================
   TICKETS PAGE
   ============================================= */

/* Shared inner container (reused across tk- sections) */
.tk-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- HERO --- */
.tk-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.tk-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/tild3461-3730-4961-b432-376364306536__back.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.tk-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(14,13,17,0.82) 0%, rgba(26,16,53,0.75) 100%);
}
.tk-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  width: 100%;
}
.tk-hero__urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 80, 60, 0.15);
  border: 1px solid rgba(255, 80, 60, 0.5);
  color: #ff7060;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.tk-hero__urgency::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff7060;
  animation: tk-pulse 1.6s ease-in-out infinite;
}
@keyframes tk-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.tk-hero__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 6.5vw, 76px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 24px;
  max-width: 820px;
}
.tk-hero__sub {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  margin: 0 0 40px;
}
.tk-hero__cta {
  display: inline-block;
  background: #fff;
  color: #000 !important;
  text-decoration: none;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 16px 44px;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}
.tk-hero__cta:hover { opacity: 0.88; transform: translateY(-2px); }

/* --- PAGE TITLE --- */
.tk-title-section {
  padding: 72px 0 0;
}

/* --- PRICE TIMELINE --- */
.tk-timeline-section {
  padding: 48px 0 72px;
  background: #0f0d1e;
}
.tk-timeline-section__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px;
}
.tk-timeline-section__sub {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin: 0 0 48px;
}
.tk-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.tk-stage {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tk-stage:last-child { border-right: none; }
.tk-stage--active {
  background: rgba(100, 220, 200, 0.05);
  border-right-color: rgba(100, 220, 200, 0.15);
}
.tk-stage__label {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tk-stage--active .tk-stage__label { color: rgba(100, 220, 200, 0.8); }
.tk-stage__date {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  line-height: 1.5;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tk-stage--active .tk-stage__date {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(100, 220, 200, 0.12);
}
.tk-stage__prices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tk-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.tk-price-row__type {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}
.tk-price-row__val {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.tk-stage--active .tk-price-row__type { color: rgba(255,255,255,0.75); }
.tk-stage--active .tk-price-row__val { color: #fff; }

/* --- TICKET CARDS --- */
.tk-cards-section {
  padding: 40px 0 80px;
  background: #0d0b1a;
}
.tk-cards-section__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}
.tk-cards-section__sub {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin: 0 0 48px;
}
.tk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.tk-cards-note {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin: 20px 0 0;
  line-height: 1.5;
}

/* Card shell */
.tk-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.tk-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
.tk-card--featured {
  border-color: rgba(100, 220, 200, 0.35);
}
.tk-card--featured:hover { border-color: rgba(100, 220, 200, 0.65); }
/* Gradient top line on featured */
.tk-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(100,220,200,1), rgba(160,120,255,0.7));
}

/* Card head */
.tk-card__head { padding: 28px 28px 20px; }
.tk-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.tk-badge--team   { background: rgba(100,220,200,0.12); color: rgba(100,220,200,0.9); }
.tk-badge--indie  { background: rgba(160,120,255,0.12); color: rgba(180,140,255,0.9); }
.tk-badge--student{ background: rgba(255,180,50,0.1);   color: rgba(255,185,60,0.9); }
.tk-card__name {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.tk-card__tagline {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
}

/* Card price */
.tk-card__price-block {
  padding: 20px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.tk-card--featured .tk-card__price-block {
  border-color: rgba(100,220,200,0.12);
}
.tk-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.tk-card__price-from {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
}
.tk-card__price-amount {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.tk-card--featured .tk-card__price-amount { color: rgba(100,220,200,0.95); }
.tk-card__price-unit {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
}
.tk-card__price-next {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.tk-card__price-next s { color: rgba(255,255,255,0.2); }
.tk-card__price-next-arrow { font-size: 10px; color: rgba(100,220,200,0.7); }
.tk-card__price-cond {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.09);
  border-radius: 6px;
  padding: 4px 10px;
}

/* Card features */
.tk-card__features {
  padding: 20px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tk-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}
.tk-feat__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(100,220,200,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.tk-feat__icon svg {
  width: 10px;
  height: 10px;
  color: rgba(100,220,200,0.8);
}

/* Card footer */
.tk-card__footer {
  padding: 20px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.tk-card--featured .tk-card__footer { border-color: rgba(100,220,200,0.12); }
.tk-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 10px;
  transition: all 0.2s;
  box-sizing: border-box;
}
.tk-btn--primary {
  background: rgba(100,220,200,0.9);
  color: #0d0b1a !important;
  border: none;
  box-shadow: 0 0 20px rgba(100,220,200,0.2);
}
.tk-btn--primary:hover {
  background: rgba(100,220,200,1);
  box-shadow: 0 0 32px rgba(100,220,200,0.35);
  transform: translateY(-1px);
}
.tk-btn--secondary {
  background: transparent;
  color: rgba(100,220,200,0.9) !important;
  border: 1.5px solid rgba(100,220,200,0.35);
}
.tk-btn--secondary:hover {
  background: rgba(100,220,200,0.08);
  border-color: rgba(100,220,200,0.7);
}
.tk-card__hint {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 10px;
  line-height: 1.6;
}

/* --- PARTNER BLOCK --- */
.tk-partner {
  background: #0f0d1e;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 48px 0;
}
.tk-partner__eyebrow {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0 0 8px;
}
.tk-partner__heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 40px;
}
.tk-partner__card {
  border: 1px solid rgba(100,220,200,0.25);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(100,220,200,0.05) 0%, rgba(160,120,255,0.04) 100%);
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr auto;
  overflow: hidden;
  position: relative;
}
.tk-partner__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(160,120,255,0.9), rgba(100,220,200,0.9), rgba(255,100,150,0.7));
}
.tk-pc-col {
  padding: 32px;
  border-right: 1px solid rgba(100,220,200,0.1);
}
.tk-pc-col:last-child {
  border-right: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 32px 28px;
  min-width: 180px;
}
.tk-pc__eyebrow {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(160,120,255,0.8);
  margin-bottom: 12px;
}
.tk-pc__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.tk-pc__desc {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 0 0 16px;
}
.tk-pc__limit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,60,60,0.1);
  border: 1px solid rgba(255,60,60,0.25);
  border-radius: 100px;
  padding: 5px 13px;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #ff6b6b;
}
.tk-pc__limit-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4444;
  flex-shrink: 0;
  animation: tk-pulse 1.4s ease-in-out infinite;
}
.tk-pc__subtitle {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.tk-pc__feature {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.tk-pc__feature-sub {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* --- TEAM FORM --- */
.tk-form-section {
  padding: 80px 0;
  background: #0d0b1a;
}
.tk-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 0;
}
.tk-form-info__eyebrow {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0 0 8px;
}
.tk-form-info__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.tk-form-info__desc {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin: 0 0 28px;
}
.tk-form-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tk-form-perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.tk-form-perk__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(100,220,200,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  color: rgba(100,220,200,0.8);
}
.tk-form-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
}
.tk-form__row { margin-bottom: 16px; }
.tk-form__row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.tk-form__label {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.tk-form__input,
.tk-form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.tk-form__input::placeholder,
.tk-form__textarea::placeholder { color: rgba(255,255,255,0.22); }
.tk-form__input:focus,
.tk-form__textarea:focus {
  border-color: rgba(100,220,200,0.5);
  background: rgba(100,220,200,0.04);
}
.tk-form__textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
.tk-form__number-wrap { position: relative; }
.tk-form__number-wrap .tk-form__input { padding-right: 44px; }
.tk-form__input-hint {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  pointer-events: none;
}
.tk-form__calc {
  margin-top: 8px;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(100,220,200,0.9);
  display: none;
}
.tk-form__submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  background: rgba(100,220,200,0.9);
  color: #0d0b1a;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(100,220,200,0.2);
}
.tk-form__submit:hover {
  background: rgba(100,220,200,1);
  box-shadow: 0 0 32px rgba(100,220,200,0.35);
}
.tk-form__agree {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}
.tk-form__agree a { color: rgba(100,220,200,0.7); text-decoration: none; }
.tk-form__agree a:hover { color: rgba(100,220,200,1); }
/* Success state */
.tk-form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}
.tk-form-success__icon {
  font-size: 40px;
  margin-bottom: 12px;
}
.tk-form-success__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(100,220,200,0.95);
  margin-bottom: 8px;
}
.tk-form-success__desc {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.tk-form-success__desc a { color: rgba(100,220,200,0.8); text-decoration: none; }

/* --- FAQ --- */
.tk-faq-section {
  padding: 48px 0;
  background: #0d0b1a;
}
.tk-faq-section__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 40px;
}
.tk-faq { width: 100%; }
.tk-faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.tk-faq__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.tk-faq__q-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}
.tk-faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s, transform 0.3s;
}
.tk-faq__icon svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255,255,255,0.5);
  transition: stroke 0.2s, transform 0.3s;
}
.tk-faq__item--open .tk-faq__icon {
  background: rgba(100, 220, 200, 0.1);
  border-color: rgba(100, 220, 200, 0.4);
}
.tk-faq__item--open .tk-faq__icon svg {
  stroke: rgba(100, 220, 200, 0.9);
  transform: rotate(45deg);
}
.tk-faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding-bottom: 0;
}
.tk-faq__item--open .tk-faq__a {
  max-height: 400px;
  padding-bottom: 20px;
}
.tk-faq__a-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

/* --- SCROLL REVEAL --- */
.tk-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.tk-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.tk-reveal--delay-1 { transition-delay: 0.1s; }
.tk-reveal--delay-2 { transition-delay: 0.2s; }
.tk-reveal--delay-3 { transition-delay: 0.3s; }

/* --- TICKETS MOBILE (≤768px) --- */
@media (max-width: 768px) {
  .tk-inner { padding: 0 20px; }

  .tk-timeline-section { padding: 52px 0 48px; }
  .tk-timeline { grid-template-columns: 1fr 1fr; border-radius: 12px; }
  .tk-stage:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.08); }
  .tk-stage:nth-child(1),
  .tk-stage:nth-child(2)    { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .tk-stage--active         { border-right-color: rgba(100,220,200,0.15); border-bottom-color: rgba(100,220,200,0.15); }
  .tk-price-row { justify-content: flex-start; gap: 16px; }

  .tk-cards-section { padding: 52px 0; }
  .tk-cards { grid-template-columns: 1fr; }
  .tk-card--featured { order: -1; }

  .tk-partner { padding: 40px 0; }
  .tk-partner__card {
    grid-template-columns: 1fr;
  }
  .tk-pc-col {
    border-right: none;
    border-bottom: 1px solid rgba(100,220,200,0.1);
  }
  .tk-pc-col:last-child {
    border-bottom: none;
    border-top: 1px solid rgba(100,220,200,0.1);
    align-items: flex-start;
    min-width: auto;
  }

  .tk-form-section { padding: 52px 0; }
  .tk-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .tk-form__row-2 { grid-template-columns: 1fr; }

  .tk-faq-section { padding: 40px 0; }
  .tk-faq__q-text { font-size: 12px; }
}

/* =============================================
   PAGE TEMPLATES — shared blocks
   ============================================= */

/* ── PAGE HERO ──────────────────────────────
   Промо-блок с фоном и заголовком.
   Использование: добавить класс tb-page-hero к <section>.
   Фон задаётся inline-style или классом-модификатором:
     style="--ph-bg: url('../images/hero-philosophy.jpg')"
   ──────────────────────────────────────────── */
.tb-page-hero {
  position: relative;
  height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0d0b1a; /* fallback пока нет фото */
}
.tb-page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--ph-bg, none);
  background-size: cover;
  background-position: center;
  z-index: 0;
  /* Плавное появление при загрузке */
  transition: opacity 0.4s ease;
}
/* Два слоя затемнения: снизу плотный (для текста) + сверху лёгкий */
.tb-page-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,13,17,0.92) 0%,
    rgba(14,13,17,0.55) 45%,
    rgba(14,13,17,0.25) 100%
  );
}
/* Если фото ещё нет — показываем фирменный градиент */
.tb-page-hero__bg--placeholder {
  background-image: linear-gradient(160deg, #1a1035 0%, #0d0b1a 100%);
}
.tb-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto auto 0;
  padding: 80px 40px 60px;
  width: 100%;
}
.tb-page-hero__label {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(100,220,200,0.8);
  margin: 0 0 16px;
}
.tb-page-hero__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 800px;
}
.tb-page-hero__sub {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin: 0;
  max-width: 560px;
}

/* ── PAGE CTA ───────────────────────────────
   Призывной блок внизу страницы.
   Аналогично: фон через --cta-bg или placeholder.
   ──────────────────────────────────────────── */
.tb-page-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #0d0b1a;
}
.tb-page-cta__bg {
  position: absolute;
  inset: 0;
  background-image: var(--cta-bg, none);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.tb-page-cta__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #0d0b1a 0%,
    rgba(14,13,17,0.6) 25%,
    transparent 55%
  );
}
.tb-page-cta__bg--placeholder {
  background-image: linear-gradient(160deg, #0d0b1a 0%, #1a1035 100%);
}
/* Фоны конкретных страниц */
.tb-page-hero__bg--program        { background-image: url('../images/hero-program.png'); }
.tb-page-hero__bg--participants   { background-image: url('../images/hero-participants.png'); }
.tb-page-hero__bg--philosophy {
  background-image: url('../images/hero-philosophy.webp');
  background-position: center 40%;
}
.tb-page-hero__bg--contacts {
  background-image: url('../images/hero-contacts.webp');
  background-position: center 40%;
}
.tb-page-cta__bg--program         { background-image: url('../images/cta-program.png'); }
.tb-page-cta__bg--philosophy      { background-image: url('../images/cta-philosophy.png'); }
.tb-page-cta__bg--contacts-bottom {
  background-image: url('../images/hero-contacts-bottom.webp');
  background-position: center 50%;
}
.tb-page-cta__bg--contacts-bottom::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,13,17,0.5);
}
.tb-page-cta__bg--philosophy-bottom {
  background-image: url('../images/hero-philosophy-bottom.webp');
  background-position: center 50%;
}
.tb-page-cta__bg--philosophy-bottom::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,13,17,0.5);
}
.tb-page-cta__bg--participants {
  background-image: url('../images/participants2.png');
  background-position: center 35%;
}
.tb-page-cta__bg--participants::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,13,17,0.52);
}
.tb-page-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 40px;
}
.tb-page-cta__label {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0 0 16px;
}
.tb-page-cta__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 4.5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
}
.tb-page-cta__btn {
  display: inline-block;
  background: #fff;
  color: #000 !important;
  text-decoration: none;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 17px 48px;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.tb-page-cta__btn:hover { opacity: 0.88; transform: translateY(-2px); }
.tb-page-cta__sub {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
}

/* Placeholder — временная заглушка до появления контента */
.tb-placeholder {
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 64px 40px;
  text-align: center;
}
.tb-placeholder__text {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.5px;
}

/* Обёртка для страниц с placeholder-секцией */
.tb-content-section {
  padding: 72px 0;
  background: #0d0b1a;
}
.tb-content-section--alt { background: #0f0d1e; }
.tb-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Типографика для текстовых страниц */
.tb-text-body {
  max-width: 720px;
}
.tb-text-body h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  color: #fff;
  margin: 48px 0 16px;
  line-height: 1.2;
}
.tb-text-body h2:first-child { margin-top: 0; }
.tb-text-body h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 12px;
}
.tb-text-body p {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  margin: 0 0 16px;
}
.tb-text-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tb-text-body ul li {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}
.tb-text-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(100,220,200,0.6);
}
.tb-text-body a {
  color: rgba(100,220,200,0.8);
  text-decoration: none;
}
.tb-text-body a:hover { color: rgba(100,220,200,1); }

/* Текстовая страница — компактный hero без фото */
.tb-text-hero {
  background: #0f0d1e;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 40px;
}
.tb-text-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.tb-text-hero__label {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 0 0 12px;
}
.tb-text-hero__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

/* Мобайл */
@media (max-width: 768px) {
  .tb-page-hero { height: 44vh; }
  .tb-page-hero__inner { padding: 60px 20px 40px; }
  .tb-page-cta__inner { padding: 64px 20px; }
  .tb-content-inner { padding: 0 20px; }
  .tb-text-hero__inner { padding: 0 20px; }
  .tb-placeholder { padding: 40px 20px; }
}

/* =============================================
   PROGRAM PAGE — pr- prefix
   ============================================= */

/* ── Shared section shell ── */
.pr-section {
  padding: 32px 0;
}
.pr-section--alt { background: #0f0d1e; }
.pr-section--dark { background: #0d0b1a; }
.pr-section--compact { padding: 32px 0 0; }
.pr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.pr-head { margin-bottom: 52px; }
.pr-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(100,220,200,0.7);
  margin: 0 0 14px;
}
.pr-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.pr-sub {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 540px;
  margin: 0;
}

/* ── Direction cards ── */
.pr-dir__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pr-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.pr-card:hover { transform: scale(1.015); z-index: 2; }
.pr-card--biz:hover   { border-color: rgba(100,220,200,0.3); }
.pr-card--sport:hover { border-color: rgba(80,200,130,0.3); }
.pr-card--eve:hover   { border-color: rgba(160,120,255,0.3); }
.pr-card--kids:hover  { border-color: rgba(240,160,40,0.3); }
.pr-card--cup:hover   { border-color: rgba(255,195,50,0.35); }
.pr-card--cup {
  grid-column: 1 / -1;
}
.pr-card--cup .pr-card__bg {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255,195,50,0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(255,150,30,0.10) 0%, transparent 50%),
    linear-gradient(160deg, #0D0900 0%, #1A1000 100%);
}
.pr-card--cup .pr-card__icon  { background: rgba(255,195,50,0.12); border: 1px solid rgba(255,195,50,0.25); }
.pr-card--cup .pr-card__desc  { color: rgba(255,195,50,0.65); }
.pr-card--cup .pr-card__tag   { color: rgba(255,195,50,0.85); border-color: rgba(255,195,50,0.2); background: rgba(255,195,50,0.06); }
.pr-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.pr-card--biz .pr-card__bg {
  background:
    radial-gradient(ellipse at 75% 25%, rgba(100,220,200,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 75%, rgba(100,220,200,0.10) 0%, transparent 50%),
    linear-gradient(160deg,#03060E 0%,#081830 100%);
}
.pr-card--sport .pr-card__bg {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(80,200,130,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 70%, rgba(80,200,130,0.10) 0%, transparent 50%),
    linear-gradient(160deg,#030E07 0%,#051A10 100%);
}
.pr-card--eve .pr-card__bg {
  background:
    radial-gradient(ellipse at 65% 28%, rgba(160,120,255,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 72%, rgba(160,120,255,0.12) 0%, transparent 50%),
    linear-gradient(160deg,#060310 0%,#130828 100%);
}
.pr-card--kids .pr-card__bg {
  background:
    radial-gradient(ellipse at 72% 28%, rgba(240,160,40,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 22% 70%, rgba(240,160,40,0.10) 0%, transparent 50%),
    linear-gradient(160deg,#0C0605 0%,#1A0D03 100%);
}

.pr-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
}
.pr-card__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px;
}
.pr-card__body {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  flex: 1;
}
.pr-card__footer {
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pr-card__btn {
  display: inline-flex;
  align-self: flex-start;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 100px;
  text-decoration: none;
  background: #fff;
  color: #000;
  transition: opacity 0.2s, transform 0.2s;
}
.pr-card__btn:hover { opacity: 0.88; transform: translateY(-1px); }
.pr-card__btn--accent {
  background: rgba(255,195,50,0.9);
  color: #000;
}
.pr-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.pr-card--biz .pr-card__icon   { background: rgba(100,220,200,0.12); border: 1px solid rgba(100,220,200,0.25); }
.pr-card--sport .pr-card__icon { background: rgba(80,200,130,0.12);  border: 1px solid rgba(80,200,130,0.25); }
.pr-card--eve .pr-card__icon   { background: rgba(160,120,255,0.12); border: 1px solid rgba(160,120,255,0.25); }
.pr-card--kids .pr-card__icon  { background: rgba(240,160,40,0.12);  border: 1px solid rgba(240,160,40,0.25); }

.pr-card__name {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.1;
}
.pr-card__desc {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 12px;
}
.pr-card--biz .pr-card__desc   { color: rgba(100,220,200,0.65); }
.pr-card--sport .pr-card__desc { color: rgba(80,200,130,0.7); }
.pr-card--eve .pr-card__desc   { color: rgba(160,120,255,0.7); }
.pr-card--kids .pr-card__desc  { color: rgba(240,160,40,0.7); }

.pr-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.pr-card__tag {
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 100px;
  border: 1px solid;
}
.pr-card--biz .pr-card__tag   { color: rgba(100,220,200,0.8); border-color: rgba(100,220,200,0.2); background: rgba(100,220,200,0.06); }
.pr-card--sport .pr-card__tag { color: rgba(80,200,130,0.85); border-color: rgba(80,200,130,0.2);  background: rgba(80,200,130,0.06); }
.pr-card--eve .pr-card__tag   { color: rgba(160,120,255,0.85);border-color: rgba(160,120,255,0.2); background: rgba(160,120,255,0.06); }
.pr-card--kids .pr-card__tag  { color: rgba(240,160,40,0.85); border-color: rgba(240,160,40,0.2);  background: rgba(240,160,40,0.06); }

/* ── PDF block ── */
.pr-pdf__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 32px;
  margin-top: 40px;
}
.pr-pdf__left { display: flex; align-items: center; gap: 20px; }
.pr-pdf__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(100,220,200,0.08);
  border: 1px solid rgba(100,220,200,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(100,220,200,0.7);
}
.pr-pdf__icon svg { width: 20px; height: 20px; }
.pr-pdf__name {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.pr-pdf__meta {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.pr-pdf__soon {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
  margin-top: 6px;
}
.pr-pdf__btns { display: flex; gap: 10px; flex-shrink: 0; }
.pr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.pr-btn--primary { background: #fff; color: #000; }
.pr-btn--primary:hover { opacity: 0.88; transform: translateY(-1px); }
.pr-btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}
.pr-btn--outline:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
.pr-btn--disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Schedule ── */
.pr-sched__notice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(100,220,200,0.06);
  border: 1px solid rgba(100,220,200,0.15);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(100,220,200,0.75);
  line-height: 1.6;
}
.pr-sched__notice-dot {
  width: 6px; height: 6px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(100,220,200,0.6);
  animation: pr-pulse 2s ease-in-out infinite;
}
@keyframes pr-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Bot card ── */
.pr-bot__card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}
.pr-bot__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(100,220,200,1), rgba(160,120,255,1), rgba(220,100,180,1));
}
.pr-bot__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px 48px;
}
.pr-bot__avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pr-bot__avatar {
  width: 80px; height: 80px;
  border-radius: 24px;
  background: rgba(100,220,200,0.08);
  border: 1px solid rgba(100,220,200,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
}
.pr-bot__online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: rgba(80,200,130,0.8);
  letter-spacing: 0.5px;
}
.pr-bot__online-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(80,200,130,0.9);
  animation: pr-pulse 2s ease-in-out infinite;
}
.pr-bot__name {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.pr-bot__name span { color: rgba(100,220,200,0.9); }
.pr-bot__desc {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 18px;
}
.pr-bot__feats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.pr-bot__feat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}
.pr-bot__feat-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(100,220,200,0.6);
  flex-shrink: 0;
}
.pr-bot__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pr-bot__handle {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}
.pr-bot__qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.pr-bot__qr {
  width: 84px; height: 84px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pr-bot__qr-hint {
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  text-align: center;
  line-height: 1.5;
}

/* ── Mobile: program page ── */
@media (max-width: 768px) {
  .pr-section { padding: 48px 0; }
  .pr-inner { padding: 0 20px; }
  .pr-head { margin-bottom: 32px; }
  .pr-dir__grid { grid-template-columns: 1fr; gap: 8px; }
  .pr-card { min-height: 220px; }
  .pr-card--cup { grid-column: auto; }
  .pr-pdf__card { flex-direction: column; align-items: flex-start; gap: 16px; }
  .pr-pdf__btns { width: 100%; }
  .pr-pdf__btns .pr-btn { flex: 1; justify-content: center; }
  .pr-bot__inner { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
  .pr-bot__avatar-wrap { flex-direction: row; align-items: center; }
  .pr-bot__qr-wrap { display: none; }
}

/* =============================================
   CONTACTS PAGE (ct-)
   ============================================= */

.ct-sec {
  padding: 32px 0;
  font-family: 'Unbounded', sans-serif;
  color: #fff;
}
.ct-sec__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.ct-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.ct-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  color: #fff;
  transition: border-color 0.2s, transform 0.2s;
}
.ct-card:hover {
  border-color: rgba(100,220,200,0.25);
  transform: translateY(-2px);
}
.ct-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.ct-card__label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(100,220,200,0.85);
  margin-bottom: 6px;
}
.ct-card__value {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.ct-card__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  font-weight: 300;
  margin-top: auto;
}
.ct-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.ct-topic {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 24px;
}
.ct-topic__icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ct-topic__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ct-topic__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  font-weight: 300;
}
.ct-topic__desc a {
  color: rgba(100,220,200,0.85);
  text-decoration: none;
}
.ct-topic__desc a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .ct-sec { padding: 48px 0; }
  .ct-sec__inner { padding: 0 20px; }
  .ct-grid { grid-template-columns: 1fr; }
  .ct-topics { grid-template-columns: 1fr; }
}

/* =============================================
   PARTICIPANTS PAGE (pt-)
   ============================================= */

.pt-sec {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-family: 'Unbounded', sans-serif;
  color: #fff;
}
.pt-sec--dark { background: #0f0d1e; }
.pt-sec__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.pt-sec__label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(100,220,200,0.85);
  margin-bottom: 14px;
}
.pt-sec__title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.pt-sec__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 640px;
  font-weight: 300;
}

/* ── Шаги ── */
.pt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 44px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow: hidden;
}
.pt-step {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.pt-step:last-child { border-right: none; }
.pt-step:hover { background: rgba(255,255,255,0.07); }
.pt-step__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(100,220,200,0.85);
  background: rgba(100,220,200,0.08);
  border: 1px solid rgba(100,220,200,0.18);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 16px;
}
.pt-step__icon { font-size: 22px; margin-bottom: 10px; display: block; }
.pt-step__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.pt-step__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}
.pt-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  background: #fff;
  color: #000;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.pt-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.pt-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none;
  background: transparent;
  color: rgba(100,220,200,0.85);
  border: 1px solid rgba(100,220,200,0.3);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.pt-btn-outline:hover { background: rgba(100,220,200,0.06); transform: translateY(-2px); }
.pt-btn-disabled {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: default;
  pointer-events: none;
}

/* ── Маршруты ── */
.pt-routes {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 44px;
}
.pt-route {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.pt-route:last-child { border-bottom: none; }
.pt-route:hover { background: rgba(255,255,255,0.02); }
.pt-route__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(100,220,200,0.08);
  border: 1px solid rgba(100,220,200,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(100,220,200,0.85);
  flex-shrink: 0;
  margin-top: 2px;
}
.pt-route__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.pt-route__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  font-weight: 300;
}
.pt-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 3px;
}
.pt-tag--green { background: rgba(29,158,117,0.1); color: #5DCAA5; border: 1px solid rgba(29,158,117,0.2); }
.pt-tag--cyan  { background: rgba(100,220,200,0.1); color: rgba(100,220,200,0.9); border: 1px solid rgba(100,220,200,0.2); }
.pt-tag--gray  { background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.1); }
.pt-tag--violet{ background: rgba(180,130,255,0.1); color: #c49dff; border: 1px solid rgba(180,130,255,0.2); }
.pt-maps-btns  { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

/* ── Памятка ── */
.pt-pamyatka {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  padding: 28px 32px;
  margin-top: 44px;
  transition: border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.pt-pamyatka::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,80,80,0.5), rgba(255,80,80,0.08));
}
.pt-pamyatka:hover { border-color: rgba(100,220,200,0.15); }
.pt-pamyatka__left { display: flex; align-items: center; gap: 18px; }
.pt-pamyatka__icon {
  width: 48px;
  height: 48px;
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ff8080;
}
.pt-pamyatka__name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.pt-pamyatka__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  font-weight: 300;
}
.pt-pamyatka__soon {
  font-size: 11px;
  color: rgba(100,220,200,0.75);
  font-weight: 600;
  margin-top: 5px;
}

/* ── Зоны территории ── */
.pt-zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 44px;
}
.pt-zone {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.pt-zone:hover { border-color: rgba(100,220,200,0.22); transform: translateY(-2px); }
.pt-zone__icon { font-size: 22px; margin-bottom: 10px; display: block; }
.pt-zone__name { font-size: 14px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.pt-zone__desc { font-size: 12px; color: rgba(255,255,255,0.72); line-height: 1.6; font-weight: 300; }
.pt-map-ph {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(100,220,200,0.12);
  border-radius: 14px;
  padding: 40px 32px;
  text-align: center;
  margin-top: 14px;
}
.pt-map-ph__title { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.3); margin-bottom: 5px; }
.pt-map-ph__sub { font-size: 12px; color: rgba(255,255,255,0.2); font-weight: 300; }

/* ── Инфраструктура ── */
.pt-infra-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(100,220,200,0.85);
  margin-bottom: 16px;
  margin-top: 40px;
}
.pt-infra {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.pt-infra__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  transition: border-color 0.2s;
}
.pt-infra__card:hover { border-color: rgba(100,220,200,0.18); }
.pt-infra__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.pt-infra__icon--cyan   { background: rgba(100,220,200,0.08); border: 1px solid rgba(100,220,200,0.15); }
.pt-infra__icon--amber  { background: rgba(239,159,39,0.08);  border: 1px solid rgba(239,159,39,0.15);  }
.pt-infra__icon--violet { background: rgba(180,130,255,0.08); border: 1px solid rgba(180,130,255,0.15); }
.pt-infra__icon--green  { background: rgba(29,158,117,0.08);  border: 1px solid rgba(29,158,117,0.15);  }
.pt-infra__icon--pink   { background: rgba(255,60,172,0.08);  border: 1px solid rgba(255,60,172,0.15);  }
.pt-infra__title { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.pt-infra__text { font-size: 12px; color: rgba(255,255,255,0.72); line-height: 1.6; font-weight: 300; }
.pt-infra__tip { font-size: 11px; color: rgba(100,220,200,0.75); font-weight: 600; margin-top: 5px; }

/* ── Дети / RoboKids ── */
.pt-kids {
  background: linear-gradient(135deg, rgba(239,159,39,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(239,159,39,0.22);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-top: 44px;
}
.pt-kids::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #EF9F27, rgba(239,159,39,0.1));
}
.pt-kids__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.pt-kids__left {
  padding: 36px;
  border-right: 1px solid rgba(239,159,39,0.12);
}
.pt-kids__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #EF9F27;
  margin-bottom: 12px;
}
.pt-kids__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.pt-kids__title span { color: #EF9F27; }
.pt-kids__age {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(239,159,39,0.1);
  border: 1px solid rgba(239,159,39,0.22);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 700;
  color: #EF9F27;
  margin-bottom: 14px;
}
.pt-kids__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 14px;
  font-weight: 300;
}
.pt-kids__desc em { color: #fff; font-style: normal; }
.pt-kids__ticket {
  background: rgba(100,220,200,0.05);
  border: 1px solid rgba(100,220,200,0.14);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  font-weight: 300;
  margin-top: 14px;
}
.pt-kids__ticket em { color: rgba(100,220,200,0.9); font-style: normal; font-weight: 600; }
.pt-kids__ticket a { color: rgba(100,220,200,0.9); font-weight: 600; text-decoration: none; }
.pt-kids__right {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pt-kids__feat { display: flex; align-items: flex-start; gap: 12px; }
.pt-kids__feat-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(239,159,39,0.08);
  border: 1px solid rgba(239,159,39,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.pt-kids__feat-title { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.pt-kids__feat-desc { font-size: 12px; color: rgba(255,255,255,0.72); line-height: 1.55; font-weight: 300; }

/* ── FAQ аккордеон ── */
.pt-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 44px;
}
.pt-faq__item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.pt-faq__item:last-child { border-bottom: none; }
.pt-faq__q {
  width: 100%;
  padding: 17px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}
.pt-faq__q:hover { background: rgba(255,255,255,0.07); }
.pt-faq__q--open { color: rgba(100,220,200,0.9); }
.pt-faq__arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}
.pt-faq__q--open .pt-faq__arrow {
  background: rgba(100,220,200,0.1);
  border-color: rgba(100,220,200,0.3);
  transform: rotate(90deg);
}
.pt-faq__arrow svg { width: 10px; height: 10px; color: rgba(255,255,255,0.45); }
.pt-faq__q--open .pt-faq__arrow svg { color: rgba(100,220,200,0.9); }
.pt-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}
.pt-faq__a--open { max-height: 320px; padding: 0 22px 18px; }
.pt-faq__a p {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  font-weight: 300;
}
.pt-faq__a a { color: rgba(100,220,200,0.85); }

/* ── Бот ── */
.pt-bot__card {
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  position: relative;
}
.pt-bot__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(100,220,200,0.6), rgba(180,130,255,0.4), rgba(255,60,172,0.3));
}
.pt-bot__inner {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px 40px;
  position: relative;
  z-index: 1;
}
.pt-bot__ava {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(100,220,200,0.12), rgba(180,130,255,0.1));
  border: 1.5px solid rgba(100,220,200,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.pt-bot__ava svg { width: 30px; height: 30px; color: rgba(100,220,200,0.9); }
.pt-bot__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(100,220,200,0.16);
  animation: pt-pulse 2.5s ease-in-out infinite;
}
.pt-bot__pulse2 {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(100,220,200,0.07);
  animation: pt-pulse 2.5s ease-in-out infinite 0.8s;
}
@keyframes pt-pulse { 0%,100%{transform:scale(1);opacity:.5}50%{transform:scale(1.06);opacity:.15} }
.pt-bot__status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #5DCAA5;
  font-weight: 600;
  margin-top: 6px;
  justify-content: center;
}
.pt-bot__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1D9E75;
  animation: pt-blink 1.5s ease-in-out infinite;
}
@keyframes pt-blink { 0%,100%{opacity:1}50%{opacity:.3} }
.pt-bot__name { font-size: 20px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 5px; }
.pt-bot__name span { color: rgba(100,220,200,0.9); }
.pt-bot__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 14px;
  max-width: 480px;
  font-weight: 300;
}
.pt-bot__feats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.pt-bot__feat {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 5px;
}
.pt-bot__feat::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(100,220,200,0.6);
  flex-shrink: 0;
}
.pt-bot__actions { display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0; }
.pt-bot__qr {
  width: 96px;
  height: 96px;
  background: #fff;
  border-radius: 12px;
  padding: 7px;
}
.pt-bot__qr svg { width: 100%; height: 100%; }
.pt-bot__qr-hint {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  line-height: 1.5;
  font-weight: 300;
}
.pt-bot__tg-link { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 2px; }
.pt-bot__handle { font-size: 11px; color: rgba(255,255,255,0.25); font-weight: 300; }

/* ── Mobile: participants ── */
@media (max-width: 768px) {
  .pt-sec { padding: 48px 0; }
  .pt-sec__inner { padding: 0 20px; }
  .pt-steps { grid-template-columns: 1fr; }
  .pt-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .pt-step:last-child { border-bottom: none; }
  .pt-route { grid-template-columns: 44px 1fr; }
  .pt-tag { display: none; }
  .pt-pamyatka { flex-direction: column; align-items: flex-start; gap: 16px; }
  .pt-maps-btns { flex-direction: column; }
  .pt-zones { grid-template-columns: 1fr 1fr; }
  .pt-infra { grid-template-columns: 1fr; }
  .pt-kids__inner { grid-template-columns: 1fr; }
  .pt-kids__left { border-right: none; border-bottom: 1px solid rgba(239,159,39,0.12); }
  .pt-kids__left, .pt-kids__right { padding: 26px 22px; }
  .pt-bot__inner { grid-template-columns: auto 1fr; gap: 20px; padding: 24px 22px; }
  .pt-bot__actions { display: none; }
}
@media (max-width: 480px) {
  .pt-zones { grid-template-columns: 1fr; }
}

/* =============================================
   PHILOSOPHY PAGE (ph-)
   ============================================= */

.ph-sec {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-family: 'Unbounded', sans-serif;
  color: #fff;
}
.ph-sec--dark { background: #0f0d1e; }
.ph-sec__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.ph-sec__label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(100,220,200,0.85);
  margin-bottom: 14px;
}
.ph-sec__title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.ph-sec__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 640px;
  font-weight: 300;
}

/* ── Манифест ── */
.ph-manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}
.ph-manifesto__text p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 16px;
  font-weight: 300;
}
.ph-manifesto__text em {
  color: #fff;
  font-style: normal;
  font-weight: 600;
}
.ph-manifesto__quote {
  border-left: 2px solid rgba(100,220,200,0.45);
  padding: 18px 24px;
  margin-top: 28px;
  background: rgba(100,220,200,0.04);
  border-radius: 0 12px 12px 0;
}
.ph-manifesto__quote-text {
  font-size: 14px;
  color: #fff;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 10px;
  font-weight: 300;
}
.ph-manifesto__quote-author {
  font-size: 10px;
  color: rgba(100,220,200,0.85);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ph-manifesto__big {
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
}
.ph-manifesto__big span { color: rgba(100,220,200,0.85); }
.ph-manifesto__values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.ph-mv { display: flex; align-items: flex-start; gap: 12px; }
.ph-mv__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(100,220,200,0.85);
  flex-shrink: 0;
  margin-top: 5px;
}
.ph-mv__title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.ph-mv__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  font-weight: 300;
}

/* ── Азимов ── */
.ph-az__grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}
.ph-az__text {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 300;
}
.ph-az__text em {
  color: #fff;
  font-style: normal;
  font-weight: 600;
}
.ph-az__origin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100,220,200,0.06);
  border: 1px solid rgba(100,220,200,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 400;
  color: rgba(100,220,200,0.85);
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}
.ph-az__note {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  background: rgba(100,220,200,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 12px 16px;
  line-height: 1.65;
  margin-top: 10px;
  font-weight: 300;
}
.ph-az__note em {
  color: rgba(100,220,200,0.85);
  font-style: normal;
}
.ph-az__card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 14px;
}
.ph-az__card-quote {
  font-size: 44px;
  color: rgba(100,220,200,0.15);
  font-family: Georgia, serif;
  line-height: 0.8;
  margin-bottom: 10px;
}
.ph-az__card-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.ph-az__card-role {
  font-size: 10px;
  color: rgba(100,220,200,0.85);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ph-az__card-text {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
}
.ph-az__laws { display: flex; flex-direction: column; gap: 8px; }
.ph-az__law {
  padding: 14px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  border-left: 2px solid rgba(100,220,200,0.35);
}
.ph-az__law-n {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(100,220,200,0.85);
  margin-bottom: 5px;
}
.ph-az__law-t {
  font-size: 13px;
  color: #fff;
  line-height: 1.6;
  font-weight: 300;
}

/* ── Принципы ── */
.ph-principles__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 48px;
}
.ph-pr {
  padding: 30px 26px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.ph-pr:hover { background: rgba(255,255,255,0.09); }
.ph-pr--full { grid-column: 1 / -1; }
.ph-pr__num {
  font-size: 42px;
  font-weight: 900;
  color: rgba(100,220,200,0.07);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.ph-pr__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.3;
}
.ph-pr__text {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  font-weight: 300;
}

/* ── Кибер-деревня ── */
.ph-village__intro {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 680px;
  margin-top: 18px;
  margin-bottom: 44px;
  font-weight: 300;
}
.ph-village__intro em { color: #fff; font-style: normal; }
.ph-zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.ph-zone {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.ph-zone:hover {
  border-color: rgba(100,220,200,0.25);
  transform: translateY(-2px);
}
.ph-zone__icon { font-size: 24px; margin-bottom: 10px; display: block; }
.ph-zone__name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.ph-zone__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  font-weight: 300;
}
.ph-map-placeholder {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(100,220,200,0.12);
  border-radius: 14px;
  padding: 40px;
  text-align: center;
}
.ph-map-placeholder__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  color: rgba(255,255,255,0.35);
}
.ph-map-placeholder__sub {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}

/* ── Командные партнёры ── */
.ph-cp__hero {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  padding: 44px;
  position: relative;
  overflow: hidden;
  margin-top: 44px;
}
.ph-cp__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(100,220,200,0.5), rgba(100,220,200,0.05));
}
.ph-cp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.ph-cp__eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(100,220,200,0.85);
  margin-bottom: 14px;
}
.ph-cp__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.ph-cp__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 18px;
  font-weight: 300;
}
.ph-cp__desc em { color: #fff; font-style: normal; }
.ph-cp__limit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #ff8888;
  margin-bottom: 20px;
}
.ph-cp__limit-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5555;
  flex-shrink: 0;
  animation: ph-blink 1.4s ease-in-out infinite;
}
@keyframes ph-blink { 0%,100%{opacity:1}50%{opacity:.15} }
.ph-cp__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.ph-cp__btn {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  background: #fff;
  color: #000;
}
.ph-cp__btn:hover { opacity: 0.88; transform: translateY(-2px); }
.ph-cp__btn-outline {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  background: transparent;
  color: rgba(100,220,200,0.85);
  border: 1px solid rgba(100,220,200,0.3);
}
.ph-cp__btn-outline:hover {
  background: rgba(100,220,200,0.06);
  transform: translateY(-2px);
}
.ph-cp__perks { display: flex; flex-direction: column; gap: 14px; }
.ph-cp__perk { display: flex; align-items: flex-start; gap: 12px; }
.ph-cp__perk-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ph-cp__perk-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.ph-cp__perk-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  font-weight: 300;
}

/* ── Burning Man ── */
.ph-bm__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 44px;
}
.ph-bm__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.ph-bm__card--tb {
  border-color: rgba(100,220,200,0.18);
  background: rgba(100,220,200,0.025);
}
.ph-bm__card--tb::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(100,220,200,0.5), transparent);
}
.ph-bm__card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.ph-bm__card-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
  font-weight: 300;
}
.ph-bm__rows { display: flex; flex-direction: column; gap: 8px; }
.ph-bm__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  font-weight: 300;
}
.ph-bm__ico { font-size: 14px; flex-shrink: 0; width: 20px; text-align: center; }
.ph-bm__quote {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  line-height: 1.65;
  font-weight: 300;
}
.ph-bm__quote em { color: rgba(100,220,200,0.85); font-style: normal; }

/* ── Голоса участников ── */
.ph-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.ph-rev {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 26px;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.ph-rev:hover { border-color: rgba(100,220,200,0.18); }
.ph-rev__text {
  font-size: 14px;
  color: #fff;
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
  flex: 1;
}
.ph-rev__author { display: flex; align-items: center; gap: 12px; }
.ph-rev__photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(100,220,200,0.12);
  border: 1px solid rgba(100,220,200,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-rev__photo--alex { background: url('../images/alex.jpg') center/cover no-repeat; }
.ph-rev__photo--marina { background: url('../images/marina.jpg') center/cover no-repeat; }
.ph-rev__initials {
  font-size: 11px;
  font-weight: 700;
  color: rgba(100,220,200,0.9);
}
.ph-rev__name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.ph-rev__role {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
  font-weight: 300;
}

/* ── Mobile: philosophy ── */
@media (max-width: 768px) {
  .ph-sec { padding: 48px 0; }
  .ph-sec__inner { padding: 0 20px; }
  .ph-manifesto__grid,
  .ph-az__grid,
  .ph-cp__grid,
  .ph-bm__grid { grid-template-columns: 1fr; }
  .ph-principles__grid { grid-template-columns: 1fr; }
  .ph-pr--full { grid-column: auto; }
  .ph-zones { grid-template-columns: 1fr; }
  .ph-reviews__grid { grid-template-columns: 1fr; }
  .ph-cp__hero { padding: 26px 20px; }
}

/* =============================================
   TILDA OVERRIDES
   ============================================= */
#rec611019748 .t-popup__container { padding: 0 20px; }
.t868__code-wrap { padding: 20px; height: 100%; overflow: auto; }
.uc-popup-timepad .t-popup__container { overflow-y: auto; max-height: 100%; }
