/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?fit=crop&w=1200&q=80') center/cover no-repeat;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}

.hero .overlay {
  background: rgba(0,0,0,0.55);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.cta-button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #4a90e2;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.cta-button:hover {
  background: #357ab7;
}

/* Features Section */
.features {
  padding: 50px 20px;
  background: #f7f9fc;
  text-align: center;
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Demo Pages Section */
.demo-pages {
  padding: 50px 20px;
  text-align: center;
  background: #f7f9fc;
}

.demo-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Pricing Section */
.pricing {
  padding: 50px 20px;
  text-align: center;
}

.pricing ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.pricing li {
  padding: 5px 0;
}

/* Demo Preview */
.demo-preview {
  padding: 50px 20px;
  text-align: center;
  background: #fff5e6;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
}

footer a {
  color: #aaa;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.legal-links {
  margin-top: 10px;
  font-size: 0.8em;
}

.legal-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: #fff;
}

/* Responsive */
@media(max-width: 700px) {
  .feature-cards {
    flex-direction: column;
    gap: 20px;
  }
}
