* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f8f9fa;
  color: #374151;
  text-align: center;
  padding: 40px 20px;
}

header img {
  width: 100px;
}

h1 {
  margin-top: 10px;
  font-size: 2.5rem;
  color: #374151;
}

.coming-soon {
  font-size: 1.5rem;
  margin: 20px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #374151;
}

.dot {
  width: 12px;
  height: 12px;
  background: #374151;
  border-radius: 50%;
  position: relative;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* Pricing Section */
.pricing {
  margin: 50px auto;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1100px;
}

.card {
  background: #ffffff;
  color: #374151;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #374151;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
  height: fit-content;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(55, 65, 81, 0.3);
}

.card h3 {
  color: #374151;
  margin-bottom: 15px;
  font-size: 1.8rem;
  text-align: center;
}

.price {
  font-size: 2rem;
  margin: 15px 0 25px 0;
  font-weight: bold;
  text-align: center;
  color: #374151;
}

.plan-includes {
  margin-top: 20px;
}

.plan-includes h4 {
  color: #374151;
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #374151;
  padding-bottom: 5px;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #374151;
  font-weight: bold;
  font-size: 1.1rem;
}

.get-started-btn {
  width: 100%;
  background: #374151;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 25px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.get-started-btn:hover {
  background: #2d3748;
  transform: translateY(-2px);
}

/* Floating Button */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #374151;
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: glow 1.5s infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px #374151; }
  50% { box-shadow: 0 0 20px #374151; }
}

/* Slide-in Pricing Box */
.pricing-box {
  position: fixed;
  top: 50%;
  right: -400px;
  transform: translateY(-50%);
  width: 350px;
  background: #ffffff;
  color: #374151;
  padding: 25px;
  border-radius: 12px 0 0 12px;
  border: 1px solid #374151;
  box-shadow: -5px 0 15px rgba(0,0,0,0.3);
  transition: right 0.5s ease;
}

.pricing-box.active {
  right: 0;
}

.pricing-box h2 {
  color: #374151;
  margin-bottom: 20px;
}

.pricing-box .plan-summary {
  margin-bottom: 15px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 8px;
}

.pricing-box .plan-summary strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: #374151;
  cursor: pointer;
  font-weight: bold;
}

.close-btn:hover {
  color: #2d3748;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  .pricing {
    grid-template-columns: 1fr;
    margin: 30px auto;
  }
  
  .pricing-box {
    width: 90%;
    right: -90%;
  }
  
  .pricing-box.active {
    right: 5%;
  }
}