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

body {
  background: #0f172a;
  color: #e5e7eb;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.header {
  position: fixed;
  width: 100%;
  background: #020617;
  z-index: 1000;
}

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

.logo {
  font-weight: 600;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li a {
  color: #e5e7eb;
  text-decoration: none;
  margin-left: 20px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #020617, #0f172a);
}

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

.btn-primary {
  background: #d4af37;
  color: #020617;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
}

.section.light {
  background: #f8fafc;
  color: #020617;
}

.section.dark {
  background: #0f172a;
}

.cards,
.process,
.cases {
  display: grid;
  gap: 30px;
}

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

.card,
.case,
.service-block {
  background: #ffffff;
  padding: 30px;
  border-radius: 4px;
  color: #020617;
}

.process {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.testimonials blockquote {
  margin-bottom: 20px;
}

.contact-form {
  display: grid;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #020617;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
  }

  .menu-toggle {
    display: block;
  }
}
