/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

body {
  background: #0b1020;
  color: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* CONTAINER */
.container {
  max-width: 1140px;
  margin: auto;
  padding: 0 22px;
}

/* NAVBAR */
.nav {
  position: sticky;
  top: 0;
  background: rgba(0,0,0,.8);
  padding: 14px 0;
  z-index: 50;
}

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

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
}

.brand__mark {
  width: 56px;
  height: 56px;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav__links a {
  margin-left: 20px;
  padding: 6px 8px;
  font-size: 15px;
  transition: .3s;
}

.nav__links a:hover {
  opacity: .7;
}

/* HERO */
.hero {
  padding: 100px 0 60px;
  text-align: left;
  background: linear-gradient(135deg, #070a12, #0b1020);
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 14px;
}

.lead {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ccc;
}

.btn {
  background: linear-gradient(135deg, #7C5CFF, #00D4FF);
  color: #06101f;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
}

/* SECTION HEADINGS */
.section {
  padding: 60px 0;
}

.section--alt {
  background: #0e1222;
}

.section__head {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

/* SERVICES */
.grid {
  display: grid;
  gap: 24px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card--service {
  background: rgba(13,20,43,.7);
  padding: 22px;
  border-radius: 16px;
  text-align: center;
  transition: .3s;
}

.card--service:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 50px rgba(0,0,0,.35);
}

/* TEAM */
.team-grid{
  gap: 24px;
  margin-top: 20px;
}

.card--team {
  background: rgba(13,20,43,.8);
  border-radius: 16px;
  text-align: center;
  padding: 16px;
  transition: .3s;
}

.card--team img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* TESTIMONIALS */
.testimonial {
  background: rgba(13,20,43,.6);
  padding: 18px;
  border-radius: 14px;
}

.testimonial strong {
  margin-top: 8px;
  display: block;
  font-weight: bold;
}

/* CONTACT FORM */
.contact-form {
  display: grid;
  gap: 16px;
  max-width: 600px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #0a0f20;
  color: #fff;
}

.contact-form button {
  margin-top: 8px;
  cursor: pointer;
}

/* FOOTER */
.footer {
  background: #070a12;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: #aaa;
}

/* RESPONSIVE */
@media(max-width:980px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .nav__links {
    display: none;
  }
}
