/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }

/* Navbar */
.navbar {
  background: #263238;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo { font-weight: bold; font-size: 1.5rem; }
.navbar ul { list-style: none; display: flex; gap: 1.5rem; }
.navbar a { color: white; text-decoration: none; transition: color 0.3s; }
.navbar a:hover { color: #ff9800; }

/* Hero */
.hero {
  background: url('hero.jpeg ') center/cover no-repeat;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  background-blend-mode: multiply;
  background-color: rgba(38,50,56,0.7);
}
.hero h1 { font-size: 2rem; margin-bottom: 1rem; }
.hero p { font-size: 1.3rem; }

/* Steps */
.steps { text-align: center; padding: 3rem 1rem; }
.steps h2 { margin-bottom: 1.5rem; color: #263238; }
.steps ol { list-style: none; margin: 1rem auto; padding: 0; }
.steps li { margin: 0.8rem 0; font-size: 1.2rem; }

/* Buttons */
.btn-primary, .btn-secondary {
  background: #ff9800;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s;
}
.btn-primary:hover, .btn-secondary:hover { background: #e68900; }

/* Video */
.video-demo { padding: 3rem 1rem; text-align: center; }
.video-container { display: flex; justify-content: center; }
.video-container iframe { border-radius: 10px; }

/* Reasons */
.reasons { padding: 3rem 1rem; text-align: center; background: #f5f5f5; }
.reasons h2 { margin-bottom: 2rem; color: #263238; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.card h3 { margin: 1rem 0; color: #ff9800; }
.card p { color: #555; }
.card .material-icons { font-size: 3rem; color: #263238; }

/* Footer */
.footer {
  background: #263238;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}


/* Hero Small */
.hero.small {
  height: 40vh;
  background: #263238;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero.small .hero-content {
  text-align: center;
  color: white;
}

/* Pricing */
.pricing {
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
}
.price-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 350px;
}
.price-card h2 { color: #263238; margin-bottom: 1rem; }
.price-card .price { font-size: 2rem; color: #ff9800; margin: 1rem 0; }
.price-card .trial { margin-bottom: 1.5rem; color: #555; }

/* Forms */
.form-section {
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
}
.form-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 400px;
  display: flex;
  flex-direction: column;
}
.form-card label {
  margin: 0.5rem 0 0.2rem;
  font-weight: bold;
  color: #263238;
}
.form-card input {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.form-card button {
  margin-top: 1rem;
}
.alt-link {
  margin-top: 1rem;
  text-align: center;
}
.alt-link a {
  color: #ff9800;
  text-decoration: none;
  font-weight: bold;
}
.alt-link a:hover { text-decoration: underline; }
