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

/* ================= BODY ================= */
body {
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top right, #0f2a44, #050914);
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= NAVBAR ================= */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0d1117;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 1000;
}

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

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #38CFFB, #4f9cff);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 10px;
  font-weight: bold;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.nav-links a:hover,
.nav-links .active {
  color: #fff;
}

/* BUTTON */
.btn {
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(90deg,#38CFFB,#4f9cff);
  color: #000;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(56,207,251,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* ================= HERO ================= */
.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  text-align: center;
}

.hero h1 {
  font-size: 44px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.3;
}

.hero p {
  color: #aaa;
  margin-top: 20px;
  font-size: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn {
  margin-top: 25px;
}

/* TRUST TEXT */
.hero-trust {
  margin-top: 15px;
  font-size: 14px;
  color: #9ca3af;
}

/* TEXT GRADIENT */
.highlight {
  background: linear-gradient(90deg, #38CFFB, #7aa2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= SECTION ================= */
.section {
  padding: 80px 0;
}

/* HEADINGS */
h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

/* ================= GRID ================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  margin-top: 20px;
}

/* ================= CARD ================= */
.card {
  background: rgba(255,255,255,0.03);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}

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

.card p {
  color: #bbb;
  font-size: 14px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ================= CONTACT FORM ================= */
form input,
form textarea,
form select {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: none;
  background: #0f1626;
  color: white;
}

form textarea {
  min-height: 100px;
}

/* ================= FOOTER ================= */
.footer {
  padding: 40px 0;
  text-align: center;
  color: #777;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 60px;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  /* NAV STACK FIX */
  .nav-inner {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px 0;
  }

  .nav-logo {
    margin-bottom: 6px;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    gap: 0;
  }

  .nav-links a {
    font-size: 13px;
  }

  .btn-primary {
    margin-top: 8px;
    padding: 8px 14px;
    font-size: 13px;
  }

  /* HERO */
  .hero {
    padding-top: 170px;
  }

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

  .hero p {
    font-size: 14px;
  }

  /* GRID STACK */
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ================= FORM STATUS ================= */
#form-status {
  margin-top: 15px;
  font-size: 14px;
}

.hidden-field {
  display: none;
}