/* Millionaires Academy Homepage */

.home-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 55%, var(--secondary-blue) 100%);
  color: #fff;
  padding: 4rem 0 3.5rem;
}

.home-eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #fff;
}

.home-hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.home-hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}

.home-hero-card h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.home-hero-card p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}

.home-section {
  padding: 3.5rem 0;
}

.home-section-alt {
  background: var(--bg-light);
}

.home-section-title {
  color: var(--text-dark);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.home-section-subtitle {
  color: var(--text-gray);
  /* max-width: 720px; */
  margin: 0.5rem auto 0;
  line-height: 1.6;
}

.home-content-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
}

.home-content-card h3 {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.home-content-card p {
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.home-highlight {
  border-left: 4px solid var(--primary-blue);
}

.home-stats {
  padding-top: 0;
  margin-top: -1.5rem;
}

.home-stat-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  height: 100%;
}

.home-stat-card strong {
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.home-stat-card span {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.home-tags {
  margin-top: 1.5rem;
}

.home-tag {
  display: block;
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(14, 165, 233, 0.08));
  border: 1px solid rgba(59, 130, 246, 0.18);
  color: var(--primary-dark);
  font-weight: 600;
}

.home-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.home-checklist li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.home-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-blue);
  font-weight: 700;
}

.home-cta {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: #fff;
  padding: 3.5rem 0;
}

.home-cta h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.home-cta p {
  color: rgba(255, 255, 255, 0.92);
  /* max-width: 760px; */
  margin: 0 auto 0.75rem;
  line-height: 1.7;
}

.home-cta-note {
  margin-bottom: 1.5rem !important;
}

.home-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.75);
  padding: 1.25rem 0;
  font-size: 0.9rem;
}

.brand-logo-footer {
  height: 36px;
  width: auto;
}

@media (max-width: 768px) {
  .home-hero {
    padding: 2.5rem 0 2rem;
  }

  .home-section {
    padding: 2.5rem 0;
  }

  .home-hero-actions .btn {
    width: 100%;
  }
}
