/* Кейсфера — лендинг: футер, CTA, доверие, категории, согласия */

.footer {
  background: #0a0f1a;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 0 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-logo span {
  color: #d4af37;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-description {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
}

.footer-column h4 {
  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #d4af37;
}

.legal-info li {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.5;
}

.legal-info li strong {
  color: #f8fafc;
  font-size: 14px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #64748b;
  font-size: 13px;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* CTA */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1f3a 0%, #0f172a 100%);
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-content h2 {
  color: #f8fafc;
  font-size: 32px;
  margin-bottom: 12px;
}

.cta-content p {
  color: #94a3b8;
  font-size: 16px;
  max-width: 520px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.cta-buttons .btn-primary {
  background: #f8fafc;
  color: #0f172a;
}

.cta-buttons .btn-primary:hover {
  background: #d4af37;
  color: #0f172a;
}

.cta-buttons .btn-outline {
  background: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
}

.cta-buttons .btn-outline:hover {
  background: #d4af37;
  color: #0f172a;
}

@media (max-width: 600px) {
  .cta-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

/* Trust */
.trust-section {
  padding: 80px 0;
  background: #0f172a;
}

.trust-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  margin-bottom: 40px;
}

.section-label {
  display: inline-block;
  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.trust-section h2 {
  color: #f8fafc;
  font-size: 32px;
  margin-bottom: 16px;
}

.section-subtitle {
  color: #94a3b8;
  font-size: 16px;
  max-width: 600px;
  margin-bottom: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.trust-card {
  background: #1e293b;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.trust-card h3 {
  color: #f8fafc;
  font-size: 18px;
  margin-bottom: 12px;
}

.trust-card p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  padding: 40px;
  background: #1e293b;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 8px;
}

.stat-label {
  color: #94a3b8;
  font-size: 14px;
}

.trust-reviews h3 {
  color: #f8fafc;
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #1e293b;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-text {
  color: #e2e8f0;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author strong {
  display: block;
  color: #f8fafc;
  font-size: 14px;
  margin-bottom: 4px;
}

.review-author span {
  color: #64748b;
  font-size: 13px;
}

@media (max-width: 768px) {
  .trust-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .trust-stats {
    flex-direction: column;
    gap: 30px;
  }
}

/* Categories 3×3 */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.category-card {
  background: #1e293b;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: border-color 0.2s, transform 0.2s;
}

.category-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.category-card .category-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

.category-card h3 {
  color: #f8fafc;
  font-size: 18px;
  margin-bottom: 8px;
}

.category-card p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #b8bcc8;
  max-width: 42rem;
  margin-bottom: 2rem;
}

.hero-description strong {
  color: #f4d03f;
}

/* Для экспертов */
.for-experts-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.for-experts-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.for-experts-section .section-label {
  display: inline-block;
  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.for-experts-section h2 {
  color: #f8fafc;
  font-size: 32px;
  margin-bottom: 16px;
}

.for-experts-section .section-subtitle {
  color: #94a3b8;
  font-size: 16px;
  max-width: 700px;
  margin-bottom: 48px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.benefit-card {
  background: rgba(30, 41, 59, 0.6);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  color: #f8fafc;
  font-size: 18px;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.cta-center {
  text-align: center;
  padding-top: 20px;
}

.cta-center .btn-gold {
  display: inline-block;
  padding: 16px 32px;
  background: #d4af37;
  color: #0f172a;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid #d4af37;
}

.cta-center .btn-gold:hover {
  background: transparent;
  color: #d4af37;
  transform: translateY(-2px);
}

.cta-note {
  margin-top: 16px;
  color: #64748b;
  font-size: 14px;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .for-experts-section h2 {
    font-size: 24px;
  }
}

/* Consent (регистрация) */
.consent-block {
  margin: 24px 0;
  padding: 20px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.5;
}

.checkbox-label:last-child {
  margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #d4af37;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.checkbox-label a {
  color: #d4af37;
  text-decoration: underline;
}

.checkbox-label a:hover {
  color: #f8fafc;
}

.auth-page .consent-block {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.12);
}

.auth-page .checkbox-label {
  color: #334155;
}

.auth-page .checkbox-label a {
  color: #b8860b;
}
