html {
    background: radial-gradient(circle at top, #020617 0%, #020b0a 50%, #000000 100%);
    min-height: 100%;
    /* Отключаем overscroll и pull-to-refresh */
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

body {
    font-family: -apple-system, sans-serif;
    background: transparent;  /* ВАЖНО: убираем второй градиент */
    color: #e5e7eb;
    margin: 0;
    padding: 15px;
    padding-top: calc(15px + env(safe-area-inset-top));
    padding-bottom: calc(120px + env(safe-area-inset-bottom));
    min-height: 100vh;
    /* Отключаем overscroll и pull-to-refresh */
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.hidden { display: none !important; }

.btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

.btn-primary {
  background-color: #1cb354;
  color: white;
}

.btn-outline {
  background: none;
  border: 1px solid #3390ec;
  color: #3390ec;
}

.btn-green {
  background-color: #22c55e;
  color: white;
}

.btn-back {
  color: #3390ec;
  background: none;
  border: none;
  font-size: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* === СЕТКА 4 КНОПОК НА ГЛАВНОЙ 2x2 === */
.service-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;                 /* было 12 */
    max-width: 360px;          /* было 420 */
    margin: -23px auto 0;
}


.service-main-btn {
    background: linear-gradient(135deg, #14532d 0%, #16a34a 45%, #22c55e 100%);
    border-radius: 14px;
    padding: 1px 4px;          /* чуть меньше паддинги */
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);

    /* ФИКС РАЗМЕРА */
    min-height: 100px;
    max-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.service-main-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-main-btn:nth-child(1),
.service-main-btn:nth-child(2),
.service-main-btn:nth-child(3),
.service-main-btn:nth-child(4) {
    background: linear-gradient(135deg, #14532d 0%, #16a34a 45%, #22c55e 100%);
}


.service-icon {
    font-size: 28px;
    margin-bottom: 4px;
}

.service-title {
    font-size: 13px;
    line-height: 1.2;
    margin: 0;
}

/* === КАЛЕНДАРЬ === */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}

.grid-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 5px;
  font-size: 12px;
  color: #888;
  text-align: center;
}

.grid-nums {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.day-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
}

.day-active {
  background-color: #dbeafe;
  color: #1e40af;
  font-weight: bold;
  position: relative;
}

.day-active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  background: #00ff00;
  border-radius: 50%;
}

.day-selected {
  background-color: #3390ec !important;
  color: white !important;
}

/* === КАРТОЧКИ УСЛУГ === */
.service-card {
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-card.disabled-vis {
  opacity: 0.5;
  background: #f3f4f6;
  cursor: not-allowed;
  pointer-events: none;
  border: 1px solid #ddd;
}

.service-card.disabled-vis .srv-title {
  color: #999;
}

.cat-title {
  font-size: 12px;
  text-transform: uppercase;
  color: #888;
  margin: 20px 0 10px 0;
  font-weight: bold;
}

.srv-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.srv-meta {
  font-size: 13px;
  color: #666;
  display: flex;
  justify-content: space-between;
}

.srv-desc {
  font-size: 12px;
  color: #888;
  margin-top: 5px;
  line-height: 1.4;
}

/* === СЛОТЫ ВРЕМЕНИ === */
.slots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.slot-btn {
    padding: 10px 0;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;

    /* тёмный фон под общий стиль */
    background: rgba(15, 23, 42, 0.9);   /* почти как общий фон карточек */
    border: 1px solid #1f2937;
    color: #e5e7eb;

    /* лёгкий объем */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
    transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.slot-btn:hover {
    background: rgba(30, 64, 175, 0.95); /* синий hover, как активные элементы */
    border-color: #3b82f6;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.9);
}

/* выбранный слот – оставляем как «нажатую» кнопку */
.slot-btn-selected {
    background: linear-gradient(135deg, #14532d 0%, #16a34a 45%, #22c55e 100%);
    border-color: #22c55e;
    color: #ecfdf5;
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.6), 0 6px 16px rgba(0, 0, 0, 0.7);
}

.slot-disabled {
  opacity: .5;
  pointer-events: none;
}

/* === ФОРМЫ === */
.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

.input-field {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 16px;
}

/* === ОТЗЫВЫ === */
.review-item {
  background: #020a0e;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 3px solid #1cb354;
}

/* === ШАПКА === */
.user-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    padding-top: calc(10px + env(safe-area-inset-top)); /* Отступ для кнопок Telegram */
    background: #020617;              /* было #f8f9fa */
    border-bottom: 1px solid #111827; /* было #e5e7eb */
    margin: -15px -15px 15px -15px;
    margin-top: calc(-15px - env(safe-area-inset-top));
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.u-avatar, .u-avatar-stub {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.u-avatar-stub {
    background: #1f2937;
    color: #e5e7eb;
}

.u-name {
    font-weight: bold;
    font-size: 14px;
    line-height: 1.2;
    color: #e5e7eb;
}

.u-id {
    font-size: 11px;
    color: #9ca3af;
}

.btn-icon {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 5px;
}

/* === АДМИН-ПАНЕЛЬ === */
.admin-box {
  position: relative;
  z-index: 1000;
  background: #fff;
  border: 2px solid #b91c1c;
  margin-bottom: 20px;
  border-radius: 12px;
  padding: 15px;
}

.admin-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.admin-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.admin-card h3 {
  margin-top: 0;
  font-size: 16px;
  margin-bottom: 10px;
  color: #374151;
}

.booking-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-del {
  background: #fee2e2;
  color: #b91c1c;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* === ПРОФИЛЬ === */
.profile-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* === НИЖНЕЕ МЕНЮ === */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(3, 7, 18, 0.98);  /* вместо #ffffff */
    border-top: 1px solid #111827;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    z-index: 5000;
    box-shadow: 0 -2px 18px rgba(0, 0, 0, 0.7);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #6b7280;
    cursor: pointer;
    transition: 0.2s;
    flex: 1;
    max-width: 80px;
}

.nav-icon {
  font-size: 20px;
  margin-bottom: 2px;
}

.nav-label {
  font-size: 10px;
  font-weight: 500;
}

.nav-item.active {
    color: #22c55e; /* фирменный зелёный */
}

.nav-item.active .nav-icon {
    transform: scale(1.1);
}

/* === FAQ === */
.faq-item {
  background: #020617;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 3px solid #22c55e;
}

.faq-item h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #374151;
}

.faq-item p {
  margin: 0;
  color: #6b7280;
  line-height: 1.5;
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 360px) {
  .service-main-btn {
    padding: 20px 15px;
  }

  .service-icon {
    font-size: 36px;
  }

  .service-title {
    font-size: 14px;
  }
}



.header-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* === СТИЛИ ДЛЯ ФОРМЫ БРОНИРОВАНИЯ === */
.form-container {
    padding: 15px;
}

.form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;

}

.form-container input[type="text"],
.form-container input[type="tel"],
.form-container input[type="file"],
.form-container select,
.form-container textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    font-family: inherit;
}

.form-container input[type="file"] {
    padding: 8px;
}

.form-container textarea {
    resize: vertical;
    min-height: 80px;
}

.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

/* Радиокнопки */
.form-container input[type="radio"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

/* Кнопка "Далее" */
.btn-green {
    width: 100%;
    padding: 14px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-green:hover {
    background: #45a049;
}

.btn-green:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Кнопка "Назад" */
.btn-gray {
    padding: 14px 20px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-gray:hover {
    background: #5a6268;
}

/* Блок оплаты */
#stepPayment {
    animation: slideIn 0.3s ease;
}

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

/* Адаптив для мобильных */
@media (max-width: 480px) {
    .form-container {
        padding: 10px;
    }
    
    .form-container input,
    .form-container select,
    .form-container textarea {
        font-size: 16px; /* Чтобы iOS не зумил */
    }
}


#special-calendar-wrapper {
    max-width: 360px;
    margin: 16px auto 0;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid #111827;
    background: rgba(15, 23, 42, 0.85);
}

.special-cal-title {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    color: #e5e7eb;
}

/* Сетка особого календаря */
.special-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    font-size: 11px;
    text-align: center;
}

.special-cal-day {
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    color: #9ca3af;
    cursor: default;
}

.special-cal-day--active {
    cursor: pointer;
    color: #e5e7eb;
    font-weight: 600;
}

.special-cal-day--active:hover {
    box-shadow: 0 0 0 1px rgba(34,197,94,0.6);
}

.back-btn {
  color: #3390ec;
  background: none;
  border: none;
  font-size: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* ========== АККОРДЕОН ПРАЙС-ЛИСТ (ТЕМНАЯ ТЕМА) ========== */
.accordion-item {
  margin-bottom: 15px;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: #22c55e;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.accordion-header {
  padding: 18px 20px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}

.accordion-header:hover {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.accordion-header.active {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.accordion-arrow {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.accordion-header.active .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  background: #0f0f0f;
}

.accordion-body.active {
  max-height: 2000px;
  padding: 20px;
}

.service-card-price {
  padding: 15px;
  margin-bottom: 12px;
  background: #1a1a1a;
  border-radius: 8px;
  border-left: 4px solid #22c55e;
  transition: all 0.2s ease;
  color: #e5e7eb;
}

.service-card-price:hover {
  background: #2a2a2a;
  border-left-color: #4ade80;
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.service-card-price:last-child {
  margin-bottom: 0;
}

/* ============================================
   ПРАЙС-ЛИСТ: Новый современный дизайн
   ============================================ */

/* Hero секция */
.price-hero {
  text-align: center;
  padding: 25px 15px 20px;
  margin: -15px -15px 20px -15px;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.12) 0%, transparent 100%);
}

.price-hero-icon {
  font-size: 48px;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4));
}

.price-hero-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.price-hero-sub {
  font-size: 14px;
  color: #a5a5c0;
  margin: 0;
}

/* Статистика */
.price-stats {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.price-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
}

.price-stat-num {
  font-size: 18px;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 4px;
}

.price-stat-label {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Подсказка */
.price-tip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #c4b5fd;
}

.price-tip i {
  font-size: 14px;
  animation: point-bounce 1.5s ease-in-out infinite;
}

@keyframes point-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* Accordion категории */
.price-accordion {
  margin-bottom: 12px;
}

.price-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.price-accordion-header:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--cat-accent, #8b5cf6);
}

.price-accordion-header.active {
  background: var(--cat-gradient, linear-gradient(135deg, #8b5cf6, #7c3aed));
  border-color: transparent;
  border-radius: 14px 14px 0 0;
}

.price-cat-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.price-cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cat-gradient, linear-gradient(135deg, #8b5cf6, #7c3aed));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  transition: all 0.3s;
}

.price-accordion-header.active .price-cat-icon {
  background: rgba(255, 255, 255, 0.2);
}

.price-cat-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.price-cat-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.price-accordion-header.active .price-cat-count {
  color: rgba(255, 255, 255, 0.7);
}

.price-cat-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  transition: all 0.3s;
}

.price-accordion-header.active .price-cat-arrow {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: rotate(180deg);
}

/* Body с услугами */
.price-accordion-body {
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 14px 14px;
  transition: max-height 0.4s ease, padding 0.3s;
}

.price-accordion-body.active {
  max-height: 3000px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: none;
}

/* Карточка услуги */
.price-service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
  transition: all 0.2s;
  animation: fadeSlideIn 0.3s ease forwards;
  opacity: 0;
}

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

.price-service-card:last-child {
  margin-bottom: 0;
}

.price-service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateX(4px);
}

.price-srv-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.price-srv-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  flex: 1;
}

.price-srv-price {
  font-size: 15px;
  font-weight: 700;
  color: #4ade80;
  white-space: nowrap;
}

.price-srv-desc {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.4;
  margin-bottom: 12px;
}

.price-srv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-srv-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
}

.price-srv-time i {
  font-size: 11px;
}

.price-srv-book {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
}

.price-srv-book:hover {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  transform: scale(1.02);
}

.price-srv-book:active {
  transform: scale(0.98);
}

.price-srv-meta {
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.price-srv-meta .price-srv-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
}

/* ============================================
   ПРОФИЛЬ: Новый современный дизайн
   ============================================ */

.prof-title-bar {
  margin: -15px -15px 20px -15px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.08));
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.prof-page-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.prof-page-title i {
  color: #8b5cf6;
}

.prof-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.prof-stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.prof-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.prof-stat-icon.upcoming {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.prof-stat-num {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.prof-stat-label {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 2px;
}

.prof-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.prof-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.prof-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.prof-section-title i {
  color: #8b5cf6;
}

.prof-bookings {
  padding: 12px;
}

.prof-booking-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
  transition: all 0.2s;
}

.prof-booking-card:last-child {
  margin-bottom: 0;
}

.prof-booking-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
}

.prof-booking-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.prof-booking-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.prof-booking-status {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.prof-booking-status.pending {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.prof-booking-status.confirmed {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.prof-booking-status.cancelled {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.prof-booking-status.completed {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
}

.prof-booking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #9ca3af;
}

.prof-booking-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.prof-booking-meta i {
  font-size: 11px;
  color: #6b7280;
}

.prof-admin-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.prof-admin-btn i:first-child {
  font-size: 18px;
  color: #8b5cf6;
}

.prof-admin-btn span {
  flex: 1;
  text-align: left;
}

.prof-admin-btn i:last-child {
  color: #6b7280;
}

.prof-admin-btn:active {
  transform: scale(0.98);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.15));
}

.prof-empty {
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
}

.prof-empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.5;
}

.prof-empty-text {
  font-size: 14px;
  margin-bottom: 16px;
}

.prof-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.prof-empty-btn:hover {
  transform: scale(1.02);
}

.prof-empty-hint {
  font-size: 13px;
  color: #6b7280;
  margin-top: 8px;
}

/* ============================================
   FAQ: Новый современный дизайн
   ============================================ */

.faq-hero {
  text-align: center;
  padding: 25px 15px 20px;
  margin: -15px -15px 20px -15px;
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.12) 0%, transparent 100%);
}

.faq-hero-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.faq-hero-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.faq-hero-sub {
  font-size: 14px;
  color: #a5a5c0;
  margin: 0;
}

.faq-quick {
  margin-bottom: 20px;
}

.faq-quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(42, 171, 238, 0.15), rgba(42, 171, 238, 0.05));
  border: 1px solid rgba(42, 171, 238, 0.3);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.faq-quick-btn i {
  font-size: 18px;
  color: #2AABEE;
}

.faq-quick-btn:active {
  transform: scale(0.98);
  background: linear-gradient(135deg, rgba(42, 171, 238, 0.25), rgba(42, 171, 238, 0.1));
}

.faq-list {
  margin-bottom: 20px;
}

.faq-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.faq-card:hover {
  border-color: rgba(236, 72, 153, 0.3);
}

.faq-card.active {
  border-color: rgba(236, 72, 153, 0.4);
  background: rgba(236, 72, 153, 0.05);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.faq-q-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.faq-q-text {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.faq-q-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 11px;
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq-card.active .faq-q-arrow {
  background: rgba(236, 72, 153, 0.2);
  color: #ec4899;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  padding: 0 16px;
}

.faq-card.active .faq-answer {
  max-height: 500px;
  padding: 0 16px 16px;
}

.faq-answer p {
  font-size: 13px;
  line-height: 1.6;
  color: #9ca3af;
  margin: 0 0 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 10px 0;
  padding-left: 20px;
}

.faq-answer li {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 6px;
}

.faq-answer b {
  color: #fff;
}

.faq-contact {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.faq-contact-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.faq-contact-text {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 14px;
}

.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ec4899, #db2777);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.faq-contact-btn:hover {
  transform: scale(1.02);
}

.faq-contact-btn i {
  font-size: 12px;
}

/* Кнопка отмены записи */
.prof-cancel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  color: #f87171;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.prof-cancel-btn:hover {
  background: rgba(239, 68, 68, 0.2);
}

.prof-cancel-btn:active {
  transform: scale(0.98);
}

/* ========== КОНТАКТЫ (ТЕМНАЯ ТЕМА) ========== */
.contact-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #2a2a2a;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #22c55e;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
  transform: translateY(-2px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 12px;
}

.contact-title {
  font-weight: 600;
  font-size: 16px;
  color: #22c55e;
  margin-bottom: 8px;
}

.contact-content {
  color: #9ca3af;
  line-height: 1.6;
}

.contact-link {
  color: #4ade80;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #22c55e;
  text-decoration: underline;
}

/* ========== ПРОФИЛЬ - ИСТОРИЯ ЗАПИСЕЙ (ТЕМНАЯ ТЕМА) ========== */
.profile-header {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #22c55e;
}

.profile-header h2 {
  margin: 0 0 8px 0;
  font-size: 24px;
}

.profile-header p {
  margin: 0;
  opacity: 0.9;
  font-size: 14px;
}

.bookings-section {
  margin-top: 20px;
}

.booking-item {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid #2a2a2a;
  border-left: 4px solid #22c55e;
  transition: all 0.2s ease;
  color: #e5e7eb;
}

.booking-item:hover {
  border-color: #22c55e;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
  transform: translateX(4px);
}

.booking-item.past {
  opacity: 0.6;
  border-left-color: #6b7280;
}

.booking-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

.booking-status.upcoming {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid #22c55e;
}

.booking-status.completed {
  background: rgba(107, 114, 128, 0.2);
  color: #9ca3af;
  border: 1px solid #6b7280;
}

/* ========== FAQ (ТЕМНАЯ ТЕМА) ========== */
.faq-item {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #2a2a2a;
  border-left: 4px solid #22c55e;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #22c55e;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
  transform: translateX(4px);
}

.faq-item h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item h3::before {
  content: "❓";
  font-size: 24px;
  opacity: 0.8;
}

.faq-item p {
  margin: 0;
  color: #9ca3af;
  line-height: 1.6;
  padding-left: 34px;
}

/* ==================== ЮРИДИЧЕСКИЕ ДОКУМЕНТЫ ==================== */
.legal-document {
  padding-bottom: 80px;
}

.legal-document h2 {
  color: #22c55e;
  margin-bottom: 20px;
  font-size: 22px;
}

.legal-document h3 {
  color: #e5e7eb;
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 18px;
}

.legal-document h4 {
  color: #d1d5db;
  margin-top: 15px;
  margin-bottom: 8px;
  font-size: 16px;
}

.legal-content {
  color: #9ca3af;
  line-height: 1.8;
}

.legal-content p {
  margin-bottom: 15px;
}

.legal-content ul {
  margin: 10px 0;
  padding-left: 25px;
}

.legal-content ul li {
  margin-bottom: 8px;
  color: #9ca3af;
}

.legal-content strong {
  color: #e5e7eb;
}

.requisites-card .req-section {
  background: rgba(34, 197, 94, 0.05);
  border-left: 3px solid #22c55e;
  padding: 15px;
  margin: 15px 0;
  border-radius: 8px;
}

.requisites-card .req-section h4 {
  color: #22c55e;
  margin-top: 0;
  margin-bottom: 12px;
}

.requisites-card .req-section i {
  margin-right: 8px;
}

/* ==================== МОДАЛЬНОЕ ОКНО СОГЛАСИЯ ==================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal-content {
  background: linear-gradient(135deg, #020617 0%, #0a0f0d 100%);
  border-radius: 16px;
  padding: 25px 20px;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  border: 2px solid #22c55e;
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  box-sizing: border-box;
  position: relative;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-content h2 {
  color: #22c55e;
  margin-bottom: 10px;
  font-size: 18px;
  text-align: center;
}

.modal-content h2 i {
  margin-right: 8px;
}

.modal-content > p {
  color: #9ca3af;
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.5;
  font-size: 13px;
}

.consent-docs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.consent-doc-link {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid #22c55e;
  border-radius: 8px;
  padding: 10px 12px;
  color: #e5e7eb;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  font-size: 13px;
}

.consent-doc-link:hover {
  background: rgba(34, 197, 94, 0.2);
  transform: translateX(3px);
}

.consent-doc-link i {
  margin-right: 8px;
  color: #22c55e;
  font-size: 16px;
  min-width: 16px;
}

.consent-checkbox {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid #22c55e;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
}

.consent-checkbox label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  color: #e5e7eb;
  line-height: 1.5;
  font-size: 13px;
}

.consent-checkbox input[type="checkbox"] {
  margin-right: 8px;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: #22c55e;
  cursor: pointer;
  flex-shrink: 0;
}

.consent-checkbox span {
  flex: 1;
}

#acceptConsentBtn {
  width: 100%;
  padding: 12px;
  background: #22c55e;
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

#acceptConsentBtn:disabled {
  background: #374151;
  color: #6b7280;
  cursor: not-allowed;
  opacity: 0.5;
}

#acceptConsentBtn:not(:disabled):hover {
  background: #16a34a;
  transform: scale(1.02);
}

/* ==================== FOOTER С ССЫЛКАМИ ==================== */
.legal-footer {
  padding: 20px 15px;
  background: rgba(2, 6, 23, 0.9);
  border-top: 1px solid rgba(34, 197, 94, 0.3);
  margin-top: 30px;
  margin-bottom: 80px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #22c55e;
}

.footer-company {
  text-align: center;
  color: #6b7280;
  font-size: 11px;
  margin: 0;
}

/* ============================================
   КОНТАКТЫ: Новый современный дизайн
   ============================================ */

/* Hero секция */
.cnt-hero {
  position: relative;
  text-align: center;
  padding: 30px 20px 25px;
  margin: -15px -15px 20px -15px;
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.15) 0%, transparent 100%);
  overflow: hidden;
}

.cnt-hero-bg {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cnt-avatar-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  padding: 3px;
}

.cnt-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.cnt-avatar-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #1e1e2e;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.cnt-name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.cnt-role {
  font-size: 13px;
  color: #a5a5c0;
  margin: 0 0 12px;
}

.cnt-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.cnt-status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Быстрые кнопки */
.cnt-quick-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.cnt-quick-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #e5e7eb;
  text-decoration: none;
  transition: all 0.2s;
}

.cnt-quick-btn i {
  font-size: 18px;
  color: #8b5cf6;
}

.cnt-quick-btn span {
  font-size: 12px;
  font-weight: 500;
}

.cnt-quick-btn:active {
  transform: scale(0.96);
  background: rgba(139, 92, 246, 0.15);
}

/* Блок секции */
.cnt-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
}

.cnt-block-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.cnt-block-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}

.cnt-block-icon.tg-gradient {
  background: linear-gradient(135deg, #2AABEE, #229ED9);
}

.cnt-block-icon.vk-gradient {
  background: linear-gradient(135deg, #5181B8, #4A76A8);
}

.cnt-block-icon.office-gradient {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Разделенные кнопки (дуо-ряд) */
.cnt-duo-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.cnt-duo-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.cnt-duo-emoji {
  font-size: 24px;
  flex-shrink: 0;
}

.cnt-duo-info {
  min-width: 0;
}

.cnt-duo-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.cnt-duo-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Telegram стили */
.cnt-duo-btn.tg-personal {
  background: linear-gradient(135deg, rgba(42, 171, 238, 0.15), rgba(42, 171, 238, 0.05));
  border-color: rgba(42, 171, 238, 0.3);
}

.cnt-duo-btn.tg-personal:active {
  background: linear-gradient(135deg, rgba(42, 171, 238, 0.25), rgba(42, 171, 238, 0.1));
  transform: scale(0.98);
}

.cnt-duo-btn.tg-work {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
  border-color: rgba(139, 92, 246, 0.3);
}

.cnt-duo-btn.tg-work:active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(139, 92, 246, 0.1));
  transform: scale(0.98);
}

/* VK стили */
.cnt-duo-btn.vk-personal {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(236, 72, 153, 0.05));
  border-color: rgba(236, 72, 153, 0.3);
}

.cnt-duo-btn.vk-personal:active {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(236, 72, 153, 0.1));
  transform: scale(0.98);
}

.cnt-duo-btn.vk-work {
  background: linear-gradient(135deg, rgba(81, 129, 184, 0.15), rgba(81, 129, 184, 0.05));
  border-color: rgba(81, 129, 184, 0.3);
}

.cnt-duo-btn.vk-work:active {
  background: linear-gradient(135deg, rgba(81, 129, 184, 0.25), rgba(81, 129, 184, 0.1));
  transform: scale(0.98);
}

/* Канал */
.cnt-channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
}

.cnt-channel.tg-channel {
  background: linear-gradient(135deg, rgba(42, 171, 238, 0.1), rgba(34, 158, 217, 0.05));
  border: 1px solid rgba(42, 171, 238, 0.2);
}

.cnt-channel.tg-channel:active {
  background: linear-gradient(135deg, rgba(42, 171, 238, 0.2), rgba(34, 158, 217, 0.1));
  transform: scale(0.98);
}

.cnt-channel-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cnt-channel-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.cnt-channel-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.cnt-channel-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.cnt-channel-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

/* Офис */
.cnt-office-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  margin-bottom: 12px;
}

.cnt-office-map {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.cnt-office-addr {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.cnt-office-detail {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Часы работы */
.cnt-work-hours {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 10px 14px;
}

.cnt-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
}

.cnt-hours-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cnt-hours-days {
  color: #a5a5c0;
}

.cnt-hours-time {
  color: #4ade80;
  font-weight: 500;
}

.cnt-hours-row.weekend .cnt-hours-time {
  color: #f87171;
}

/* Телефон баннер */
.cnt-phone-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 16px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.2s;
}

.cnt-phone-banner:active {
  transform: scale(0.98);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(34, 197, 94, 0.1));
}

.cnt-phone-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.cnt-phone-number {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.cnt-phone-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.cnt-phone-pulse {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  animation: phone-pulse 2s infinite;
}

@keyframes phone-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Телефон - версия для копирования */
.cnt-phone-banner {
  cursor: pointer;
}

.cnt-phone-copy-icon {
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  margin-left: auto;
  transition: color 0.2s;
}

.cnt-phone-banner:active .cnt-phone-copy-icon {
  color: #4ade80;
}

/* Личная группа TG */
.cnt-channel.tg-personal-group {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(139, 92, 246, 0.08));
  border-color: rgba(236, 72, 153, 0.25);
}

.cnt-channel.tg-personal-group:active {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(139, 92, 246, 0.12));
}

.cnt-channel-icon.personal-icon {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

/* Адаптация аватара для белого фона фото */
.cnt-avatar-wrap {
  background: #fff;
}

.cnt-avatar-img {
  background: #fff;
}
