/* ── Landing page ──────────────────────────────────────────────────────── */
#page-landing {
  position: relative;
  overflow: hidden;
}

.landing-contour-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.landing-contour-bg svg {
  width: 100%;
  height: 100%;
}

.landing-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.landing-hero {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: calc(80vh - 60px);
  padding: 40px 0;
}

.hero-left {
  flex: 1;
  max-width: 560px;
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-banner {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #64748b;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  padding: 6px 20px;
  margin-bottom: 20px;
  transition: opacity 0.6s ease;
  white-space: nowrap;
}

.hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: #64748b;
  margin: 0 0 32px;
}

.hero-search-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.hero-search {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-search-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
}

.hero-input {
  width: 100%;
  padding: 14px 20px !important;
  border-radius: 100px !important;
  font-size: 15px !important;
  border: 2px solid #e5e7eb !important;
  background: #fff !important;
  color: #111;
  transition: border-color 0.2s;
}

.hero-input:focus {
  border-color: #1d4ed8 !important;
  box-shadow: 0 0 0 4px rgba(29,78,216,0.08) !important;
}

.hero-search .address-suggestions {
  top: calc(100% + 6px);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.hero-cta {
  width: auto !important;
  flex-shrink: 0;
  padding: 14px 28px !important;
  border-radius: 100px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  background: #1d4ed8 !important;
  color: #fff !important;
  border: none !important;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s;
}

.hero-cta:hover {
  background: #1e40af !important;
}

.hero-sources {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

.hero-preview {
  width: 100%;
  max-width: 440px;
  height: calc((100vh - 56px) / 3);
  min-height: 200px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f4f8 100%);
  overflow: hidden;
}

.hero-preview-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #94a3b8;
  font-size: 14px;
}

.preview-icon {
  font-size: 48px;
  opacity: 0.5;
}

/* ── Feature cards ─────────────────────────────────────────────────────── */
.landing-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 80px;
}

.feature-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 24px;
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 0 0 8px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .landing-hero {
    flex-direction: column;
    gap: 40px;
    min-height: auto;
    padding: 40px 0 20px;
  }
  .hero-left { max-width: 100%; }
  .hero-title { font-size: 28px; }
  .hero-right { width: 100%; }
  .hero-preview { max-width: 100%; }
  .landing-features {
    grid-template-columns: 1fr;
  }
  .hero-search {
    flex-direction: column;
  }
}
