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

body {
  background: #0d0d0d;
  color: #e5e5e5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

:root {
  --accent: #14b8a6;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0d0d0d;
  border-bottom: 1px solid #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.nav-logo span {
  color: var(--accent);
}

.nav-links a {
  margin-left: 28px;
  color: #e5e5e5;
  text-decoration: none;
  transition: 0.25s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 8px 16px;
  border: 1px solid var(--accent);
  border-radius: 6px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 140px 20px 90px;
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  color: #b3b3b3;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary {
  background: var(--accent);
  padding: 14px 28px;
  color: #0d0d0d;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.btn-secondary {
  border: 1px solid var(--accent);
  padding: 14px 28px;
  color: var(--accent);
  text-decoration: none;
  border-radius: 6px;
}

/* VALUE */
.value {
  text-align: center;
  padding: 80px 20px;
}

.value h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

/* FEATURES */
.features {
  max-width: 1000px;
  margin: 60px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-box {
  background: #111;
  padding: 30px;
  width: 280px;
  border-radius: 10px;
  border: 1px solid #1f1f1f;
  transition: 0.25s ease;
}

.feature-box:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 20px;
  margin-top: 100px;
}

.cta h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

/* CLEAN INPUTS — UNIFIED FONT */
label,
input,
select,
textarea {
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #e5e5e5;
}

input,
select,
textarea {
  padding: 12px 14px;
  margin-top: 10px;
  margin-bottom: 20px;
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: 0.25s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  background: #111;
}

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

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: #777;
  font-size: 0.9rem;
}
