* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Tahoma, sans-serif;
  background: #0f172a;
  color: #f8fafc;
  line-height: 1.8;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}

.navbar {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #cbd5e1;
  transition: 0.3s;
}

nav a:hover {
  color: white;
}

.hero {
  padding: 120px 0;
  text-align: center;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

.hero p {
  color: #cbd5e1;
  max-width: 700px;
  margin: auto;
  margin-bottom: 35px;
}

.btn {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  transition: 0.3s;
}

.btn:hover {
  background: #1d4ed8;
}

.services,
.pricing-preview {
  padding: 80px 0;
}

.services h2,
.pricing-preview h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
}

.card {
  background: #111c34;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.card h3 {
  margin-bottom: 15px;
}

.card p {
  color: #cbd5e1;
}

.price {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #60a5fa;
}

footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 0;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.05);
}











input,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0f172a;
  color: white;
  margin-top: 10px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

button {
  border: none;
  cursor: pointer;
}



@media (max-width: 768px) {

  .nav-inner,
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 36px;
  }

}
