/* Landing page styles - скроются при загрузке React */
#landing {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

header {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  width: 100%;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.auth-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: none;
  text-align: center;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #667eea;
}

.btn-primary {
  background: white;
  color: #667eea;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hero {
  text-align: center;
  padding: 60px 20px;
  color: white;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.pricing {
  padding: 40px 20px 60px;
}

.section-title {
  text-align: center;
  color: white;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

.pricing-grid {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  width: 240px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    width: 246px;
  border: 3px solid #667eea;
  position: relative;
}

.pricing-card.subscription {
  position: relative;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #667eea;
  color: white;
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.plan-name {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.plan-price {
  font-size: 36px;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 8px;
}

.plan-price .currency {
  font-size: 20px;
}

.plan-period {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  margin-bottom: 24px;
  text-align: left;
  flex-grow: 1;
}

.plan-features li {
  padding: 8px 0;
  color: #666;
  font-size: 14px;
}

.plan-features li:before {
  content: "✓";
  color: #667eea;
  font-weight: 700;
  margin-right: 8px;
}

.subscription-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #667eea;
  color: white;
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.plan-cta {
  width: 100%;
  padding: 12px;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  text-align: center;
}

.plan-cta:hover {
  background: #5568d3;
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 40px 20px;
  color: white;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .header-content {
    justify-content: center;
    text-align: center;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .pricing {
    padding: 30px 15px 40px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .auth-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn {
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .auth-buttons {
    width: 100%;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

