/* Journey Plan — public homepage styles */

* { box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  margin: 0;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.55;
}

a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}

.wordmark {
  font-weight: 700;
  font-size: 1.125rem;
  color: #111827;
  text-decoration: none;
}

.header-nav { display: flex; gap: 1rem; align-items: center; }
.btn-login-text { color: #374151; }
.btn-start-planning {
  background: #2563eb;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}
.btn-start-planning:hover { background: #1d4ed8; text-decoration: none; }

main.homepage {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-band {
  text-align: center;
  padding: 4rem 1rem 3rem;
}

.hero-band h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.hero-sub {
  font-size: 1.2rem;
  color: #4b5563;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.hero-cta-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  background: #2563eb;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
}
.btn-cta:hover { background: #1d4ed8; text-decoration: none; }

.btn-cta-secondary {
  background: #fff;
  color: #2563eb;
  border: 1px solid #2563eb;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
}
.btn-cta-secondary:hover { background: #eff6ff; text-decoration: none; }

.homepage-section { padding: 3rem 0; border-top: 1px solid #e5e7eb; }
.homepage-section h2 {
  font-size: 1.75rem;
  margin: 0 0 1.5rem;
  text-align: center;
}

.step-list, .why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.step-list li, .why-list li {
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 10px;
}

.step-list li h3, .why-list li h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.step-list li { counter-increment: step; position: relative; }
.step-list li::before {
  content: counter(step);
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  background: #2563eb;
  color: #fff;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.destination-bridge .section-intro {
  text-align: center;
  color: #4b5563;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.country-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.country-link {
  padding: 0.5rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  color: #1f2937;
  background: #fff;
}
.country-link:hover { background: #f3f4f6; text-decoration: none; }

.all-destinations-link { text-align: center; font-weight: 600; }

.use-cases p {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
  color: #4b5563;
}

.faq-list { list-style: none; padding: 0; margin: 0; }
.faq-item { padding: 1.25rem 0; border-bottom: 1px solid #e5e7eb; }
.faq-item:last-child { border-bottom: none; }
.faq-q { margin: 0 0 0.5rem; font-size: 1.05rem; }
.faq-a { margin: 0; color: #374151; }

.cta-band {
  background: #111827;
  color: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
}
.cta-band h2 { margin: 0 0 0.5rem; font-size: 1.75rem; }
.cta-band p { margin: 0 0 1.5rem; color: #d1d5db; }

.site-footer {
  padding: 2rem 1.5rem;
  text-align: center;
  color: #6b7280;
  border-top: 1px solid #e5e7eb;
}
.site-footer a { color: #6b7280; }
