/* ========== Base ========== */
* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  margin: 0;
  color: #111;
  background: #f5f7fa;
}

a {
  color: inherit;
}

/* ========== Header / Nav ========== */
header {
  background: #0b0f1a;
  color: white;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  min-width: 0;
}

.brand-logo {
  height: 46px;
  width: auto;
  display: block;
}

.brand-text {
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

nav a {
  color: white;
  margin-left: 14px;
  text-decoration: none;
}

/* Buttons */
.btn {
  background: #2563eb;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  border: 0;
  cursor: pointer;
}

/* ========== Hero ========== */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: white;
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0 0 10px;
}

.hero p {
  margin: 0 0 18px;
}

/* ========== Sections ========== */
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

section.alt {
  background: white;
  border-radius: 10px;
  padding: 60px 20px;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* ========== Cards ========== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ========== Form ========== */
form {
  max-width: 520px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea, select {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: white;
  font-size: 1rem;
}

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

.form-status {
  max-width: 520px;
  margin: 15px auto 0;
  font-weight: 600;
}

.form-status.success { color: #16a34a; }
.form-status.error { color: #dc2626; }
/* ========== How It Works ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  background: white;
  padding: 24px 20px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #2563eb;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 12px;
}

.how-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Ghost button to match your theme */
.btn-ghost {
  background: transparent;
  border: 2px solid #2563eb;
  color: #2563eb;
}
/* ========== Footer ========== */
footer {
  text-align: center;
  padding: 20px;
  background: #0b0f1a;
  color: white;
}

/* ========== Mobile ========== */
@media (max-width: 600px) {
  header {
    flex-wrap: wrap;
  }

  .brand-logo {
    height: 40px;
  }

  nav {
    width: 100%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  nav a {
    margin-left: 0;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
/* ========== FAQ ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-body {
  margin-top: 10px;
  color: #444;
}

.faq-body p {
  margin: 0;
  line-height: 1.5;
}