/* ── AI Hero Chat Bar — Dark Rich Theme ─────────────────────────────── */
#hero-ai-section {
  background: #0a0e1a;
  padding: 60px 15px 50px;
  border-radius: 0;
}
.hero-ai-headline {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 28px;
  text-align: center;
}
.hero-ai-bar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.hero-ai-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(60,131,246,0.5);
  border-radius: 50px;
  padding: 12px 12px 12px 18px;
  max-width: 850px;
  width: 100%;
  box-shadow: 0 0 0 1px rgba(60,131,246,0.15), 0 0 24px rgba(60,131,246,0.15);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.hero-ai-bar:focus-within {
  border-color: #3C83F6;
  box-shadow: 0 0 0 1px rgba(60,131,246,0.4), 0 0 32px rgba(60,131,246,0.3);
}
.hero-ai-avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex-shrink: 0;
  background: #1a2138;
  padding: 4px;
  box-sizing: border-box;
}
.hero-ai-bar textarea {
  flex: 1;
  border: none;
  outline: none;
  resize: none;
  background: transparent;
  font-size: 15px;
  font-family: inherit;
  color: #ffffff;
  padding: 8px 0;
  max-height: 100px;
  line-height: 1.4;
}
.hero-ai-bar textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.hero-ai-send {
  background: #3C83F6;
  color: #fff;
  border: none;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-ai-send:hover {
  background: #2f6fd6;
  transform: scale(1.05);
}
.hero-picks-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-bottom: 18px;
}
.hero-picks-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto 26px;
}
.hero-pick-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: left;
  min-width: 220px;
  max-width: 240px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
}
.hero-pick-btn:hover {
  border-color: #3C83F6;
  background: rgba(60,131,246,0.08);
  transform: translateY(-2px);
}
.hero-pick-btn strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}
.hero-ai-disclaimer {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}
.hero-ai-disclaimer a {
  color: #6ea8fb;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-pick-btn {
    min-width: 100%;
    max-width: 100%;
  }
  .hero-ai-headline {
    font-size: 24px;
  }
}