* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #020617;
  color: #e5e7eb;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 8%;
  background: rgba(15, 23, 42, 0.96);
  border-bottom: 1px solid #1f2937;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
}

.navbar nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #e5e7eb;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.navbar nav a:hover {
  color: #4ade80;
}

/* Hero */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 2.5rem 8%;
  background: radial-gradient(circle at top, #064e3b, #020617 55%);
}

.hero-content h1 {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
}

.subtitle {
  color: #cbd5f5;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.note {
  font-size: 0.9rem;
  color: #e5e7eb;
}

/* Buttons */
.btn {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: 0.2s;
}

.btn.primary {
  background: #22c55e;
  color: #022c22;
  font-weight: 600;
}

.btn.primary:hover {
  background: #16a34a;
}

.btn.secondary {
  border-color: #22c55e;
  color: #e5e7eb;
}

.btn.secondary:hover {
  background: rgba(34, 197, 94, 0.1);
}

.btn.full {
  width: 100%;
}

/* Sections */
.section {
  padding: 3.5rem 8%;
}

.section-alt {
  background: #020617;
  border-top: 1px solid #111827;
  border-bottom: 1px solid #111827;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.section-text {
  color: #9ca3af;
  margin-bottom: 1.3rem;
}

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.card {
  background: #020617;
  border-radius: 0.9rem;
  border: 1px solid #1f2937;
  padding: 1.2rem 1.3rem;
}

.card h3 {
  margin-bottom: 0.4rem;
}

.price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 0.6rem;
}

.card ul {
  list-style: disc;
  margin-left: 1.1rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.small {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Info Box */
.info-box {
  background: #022c22;
  border-radius: 0.9rem;
  border: 1px solid #065f46;
  padding: 1.1rem 1.3rem;
}

.info-box h3 {
  margin-bottom: 0.5rem;
}

.info-box ul {
  list-style: disc;
  margin-left: 1.1rem;
  font-size: 0.95rem;
}

/* Steps */
.steps {
  list-style: decimal;
  margin-left: 1.2rem;
  color: #e5e7eb;
}

.steps li {
  margin-bottom: 0.5rem;
}

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-box {
  background: #020617;
  border-radius: 0.9rem;
  border: 1px solid #1f2937;
  padding: 1.2rem 1.3rem;
}

.contact-box h3 {
  margin-bottom: 0.6rem;
}

.contact-list {
  list-style: none;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-list li {
  margin-bottom: 0.3rem;
}

/* Form */
.field {
  margin-bottom: 0.7rem;
}

.field label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.45rem 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid #374151;
  background: #020617;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #22c55e;
}

.field textarea {
  resize: vertical;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1.4rem 0;
  font-size: 0.85rem;
  color: #6b7280;
  border-top: 1px solid #111827;
  background: #020617;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar nav {
    margin-top: 0.4rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}
