/* MAG EU - Финальный фронтенд */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #0a0a0f;
  --bg-card: #141420;
  --bg-hover: #1a1a2e;
  --gold: #c9a84c;
  --gold-dark: #a68936;
  --text-primary: #ffffff;
  --text-secondary: #b0b0c3;
  --text-muted: #6b6b80;
  --success: #4ade80;
  --border: #2a2a3e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Навигация */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

/* Hero секция */
.hero {
  padding: 4rem 1.5rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, #e6d5a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-dark);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  min-height: 44px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  min-height: 44px;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--gold);
}

/* Как это работает */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}

.step:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--bg-dark);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-secondary);
}

/* Карточки экспертов */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.expert-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
  text-align: center;
}

.expert-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.15);
}

.expert-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto 1rem;
  display: block;
}

.expert-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.expert-title {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.expert-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--success);
}

.expert-status.busy {
  background: rgba(251, 146, 60, 0.1);
  color: #fb923c;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status-dot.busy {
  background: #fb923c;
  animation: none;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.expert-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
}

.rating-number {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.expert-sessions {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.expert-experience {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.expert-price {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.expert-bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Отзывы под экспертами */
.expert-reviews {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: left;
}

.expert-reviews h4 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.review-item {
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--bg-hover);
  border-radius: 8px;
}

.review-item:last-child {
  margin-bottom: 0;
}

.review-text {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.review-author {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
}

/* Отзывы общие */
.testimonials {
  background: var(--bg-card);
  padding: 4rem 2rem;
  border-radius: 16px;
  margin: 3rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial {
  background: var(--bg-hover);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 3px solid var(--gold);
}

.testimonial-text {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Cookie баннер */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 999;
  display: none;
  animation: slideUp 0.3s ease-out;
}

.cookie-banner.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  color: var(--text-secondary);
  flex: 1;
  min-width: 250px;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

.btn-accept {
  padding: 0.8rem 2rem;
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  min-height: 44px;
}

.btn-accept:hover {
  background: var(--gold-dark);
}

/* Чат */
.chat-container {
  max-width: 900px;
  margin: 0 auto;
  height: calc(100dvh - 70px);
  height: calc(100vh - 70px); /* fallback */
  display: flex;
  flex-direction: column;
  background: var(--bg-dark);
  position: relative;
}

.chat-header {
  background: var(--bg-card);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.back-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.back-btn:hover {
  color: var(--gold);
}

.chat-expert-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.chat-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.chat-expert-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.chat-expert-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--success);
  font-size: 0.9rem;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  display: flex;
  gap: 0.8rem;
  max-width: 80%;
  animation: fadeIn 0.3s ease-out;
}

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

.message.expert {
  align-self: flex-start;
}

.message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.message-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.message-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.message-bubble {
  padding: 0.8rem 1.2rem;
  border-radius: 16px;
  line-height: 1.5;
}

.message.expert .message-bubble {
  background: var(--bg-hover);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}

.message.user .message-bubble {
  background: var(--gold);
  color: var(--bg-dark);
  border-bottom-right-radius: 4px;
}

.message-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0 0.5rem;
}

.message.user .message-time {
  text-align: right;
}

.message-image {
  max-width: 300px;
  border-radius: 12px;
  margin-top: 0.5rem;
}

.typing-indicator {
  display: none;
  align-items: center;
  gap: 0.8rem;
  padding: 0 1.5rem;
  align-self: flex-start;
}

.typing-indicator.active {
  display: flex;
}

.typing-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.typing-dots {
  display: flex;
  gap: 4px;
  padding: 0.8rem 1.2rem;
  background: var(--bg-hover);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

.chat-input-container {
  background: var(--bg-card);
  padding: 0.8rem 1rem;
  padding-bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  z-index: 10;
}

.chat-input-wrapper {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}

.chat-input {
  flex: 1;
  background: var(--bg-hover);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 0.8rem 1.2rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  resize: none;
  max-height: 120px;
  min-height: 44px;
}

.chat-input:focus {
  outline: none;
  border-color: var(--gold);
}

.send-btn {
  background: var(--gold);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--bg-dark);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.send-btn:hover:not(:disabled) {
  background: var(--gold-dark);
  transform: scale(1.05);
}

.send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Страницы About, FAQ, Privacy */
.page-header {
  padding: 4rem 0 2rem;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.page-content h2 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.page-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.page-content ul {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Мобильные стили */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: var(--bg-card);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transition: left 0.3s;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu.active {
    left: 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .experts-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .chat-container {
    height: 100dvh;
    height: -webkit-fill-available;
    max-height: 100dvh;
    overflow: hidden;
  }

  .chat-messages {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .message {
    max-width: 85%;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: center;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Утилиты */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.hidden {
  display: none !important;
}
/* Таймер сессии */
.session-timer {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  transition: background 0.3s;
}

.session-timer.free {
  background: rgba(74, 222, 128, 0.1);
  border-bottom-color: var(--success);
}

.session-timer.paid {
  background: rgba(201, 168, 76, 0.1);
  border-bottom-color: var(--gold);
}

.session-timer.low {
  background: rgba(239, 68, 68, 0.1);
  border-bottom-color: #ef4444;
}

.timer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.timer-icon {
  font-size: 1.2rem;
}

.session-timer.free .timer-icon {
  color: var(--success);
}

.session-timer.paid .timer-icon {
  color: var(--gold);
}

.session-timer.low .timer-icon {
  color: #ef4444;
}

.timer-text {
  color: var(--text-secondary);
}

.timer-value {
  color: var(--text-primary);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.timer-status {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
}

.session-timer.free .timer-status {
  background: rgba(74, 222, 128, 0.2);
  color: var(--success);
}

.session-timer.paid .timer-status {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold);
}

.session-timer.low .timer-status {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* Paywall оверлей */
.paywall-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.paywall-overlay.show {
  opacity: 1;
}

.paywall-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  animation: slideUpFade 0.4s ease-out;
}

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

.paywall-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.paywall-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.paywall-message {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Кнопки оплаты в оверлее */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.payment-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  background: var(--bg-hover);
  border: 2px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  min-height: 70px;
}

.payment-btn:hover {
  border-color: var(--gold);
  background: var(--bg-card);
  transform: translateY(-2px);
}

.payment-btn.popular {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, rgba(201, 168, 76, 0.05) 100%);
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.payment-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.payment-minutes {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.paywall-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Страница оплаты */
.payment-page {
  min-height: calc(100vh - 200px);
  padding: 3rem 1.5rem;
}

.payment-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
}

.payment-header {
  text-align: center;
  margin-bottom: 2rem;
}

.payment-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.payment-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.payment-method-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.payment-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: var(--bg-hover);
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.payment-method:hover {
  border-color: var(--gold);
}

.payment-method.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.payment-method-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.payment-method-icon {
  font-size: 2rem;
}

.payment-method-details h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.payment-method-details p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.payment-method-check {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-radius: 50%;
  transition: all 0.3s;
}

.payment-method.selected .payment-method-check {
  border-color: var(--gold);
  background: var(--gold);
  position: relative;
}

.payment-method.selected .payment-method-check::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--bg-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.payment-support {
  background: var(--bg-hover);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 2rem;
}

.payment-support h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.payment-support p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.payment-support a {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--gold);
  color: var(--bg-dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.payment-support a:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .timer-content {
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  .timer-icon {
    font-size: 1rem;
  }

  .timer-status {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
  }

  .paywall-content {
    padding: 2rem 1.5rem;
  }

  .paywall-title {
    font-size: 1.25rem;
  }

  .paywall-message {
    font-size: 0.95rem;
  }

  .payment-amount {
    font-size: 1.5rem;
  }

  .payment-container {
    padding: 2rem 1.5rem;
  }

  .payment-header h1 {
    font-size: 1.5rem;
  }

  .payment-method {
    padding: 1.25rem;
  }

  .payment-method-icon {
    font-size: 1.5rem;
  }
}
