/* ============================================
   JUNIOR TRADER — Homepage Styles
   ============================================ */

/* --- Hero --- */
.hero {
  background: var(--gradient-hero);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 20px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* --- Silos Grid --- */
.silos-grid {
  padding: 80px 0;
}

.silos-grid .grid-4 {
  gap: 24px;
}

.silo-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: block;
  text-decoration: none;
}

.silo-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.12);
  color: inherit;
}

.silo-card .card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.silo-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  margin-top: 0;
  color: var(--text-primary);
}

.silo-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* --- Why Us --- */
.why-us {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.why-card {
  text-align: center;
  padding: 32px 24px;
}

.why-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.why-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.why-card p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  max-width: 340px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Latest Blog --- */
.latest-blog {
  padding: 80px 0;
}

/* --- CTA Bottom --- */
.cta-bottom {
  padding: 80px 0;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
}

.cta-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 100%, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-bottom .container {
  position: relative;
  z-index: 1;
}

.cta-bottom h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.cta-bottom p {
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 32px;
}

/* --- Responsive --- */
@media (max-width: 480px) {
  .hero {
    padding: 60px 0 50px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
