* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: #f8f9fc; color: #222; line-height: 1.6; }
.container { width: 90%; max-width: 1100px; margin: auto; }

/* Navbar */
.navbar {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: white;
  padding: 15px 0;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 50px;
  width: 50px;
  border-radius: 10px;
  object-fit: contain;
}
.logo-text {
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 1px;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s;
}
.navbar nav a:hover { color: #ffcc00; }

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: white;
}
.site-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.hero h2 { font-size: 2.5em; margin-bottom: 20px; }
.hero .btn {
  background: #ffb100;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}
.hero .btn:hover { background: white; color: #0072ff; }

/* Tools Section */
.tools {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}
.tools h2 { font-size: 2em; margin-bottom: 40px; color: #0072ff; }
.tools .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.tools .card {
  background: #f0f7ff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}
.tools .card:hover { transform: translateY(-5px); }
.tools .card h3 { color: #0072ff; margin-bottom: 10px; }

/* Pricing Section */
.pricing {
  background: #eef5ff;
  padding: 80px 0;
  text-align: center;
}
.pricing h2 { color: #0072ff; margin-bottom: 30px; }
.pricing .plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.plan {
  background: white;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid #0072ff;
}
.plan.popular {
  background: #0072ff;
  color: white;
  transform: scale(1.05);
}
.plan h3 { margin-bottom: 10px; }
.plan p { font-size: 1.5em; margin-bottom: 20px; }
.plan ul { list-style: none; margin-bottom: 20px; }
.plan ul li { margin-bottom: 10px; }
.plan .btn {
  background: #ffb100;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
}
.plan .btn:hover { background: white; color: #0072ff; }

/* Contact Section */
.contact {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.contact h2 { color: #0072ff; margin-bottom: 20px; }
.contact a { color: #0072ff; text-decoration: none; font-weight: 600; }

/* Footer */
footer {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: white;
  text-align: center;
  padding: 15px 0;
}
