/* ── Hero ── */
.hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(48,12,100,0.82) 0%, rgba(96,52,197,0.65) 50%, rgba(224,37,150,0.45) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
  gap: 20px;
}
.hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: #e8d5f3;
  max-width: 640px;
  line-height: 1.6;
}
.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, #6034c5, #e02596);
  color: #fff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(224,37,150,0.4);
  transition: opacity 0.2s;
  margin-top: 8px;
}
.hero-cta:hover { opacity: 0.88; }

/* ── Content area ── */
.home-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 40px 64px;
}

/* ── Feature cards ── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.feature-card {
  background: #fff;
  border: 1px solid #e0d4f5;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(90,26,138,0.06);
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: 0 6px 24px rgba(90,26,138,0.12); }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6034c5, #e02596);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}
.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #5a1a8a;
}
.feature-card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.65;
}

/* ── About section ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-text h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #5a1a8a;
}
.about-text p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
}
.about-highlight {
  background: linear-gradient(135deg, #5a1a8a, #6034c5);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.highlight-item i {
  font-size: 1.4rem;
  color: #e040fb;
  margin-top: 2px;
  flex-shrink: 0;
}
.highlight-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.highlight-item strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.highlight-item span {
  font-size: 0.82rem;
  color: #d4b8f0;
  line-height: 1.5;
}

/* ── KYC banner ── */
.kyc-banner {
  margin-top: 48px;
  background: #f3eeff;
  border: 1px solid #e0d4f5;
  border-left: 5px solid #e02596;
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.kyc-banner i {
  font-size: 2rem;
  color: #6034c5;
  flex-shrink: 0;
}
.kyc-banner p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.65;
}
.kyc-banner strong { color: #5a1a8a; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .home-content {
    padding: 40px 24px 48px;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 300px;
  }
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .hero-cta {
    padding: 11px 24px;
    font-size: 0.8rem;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .home-content {
    padding: 32px 16px 40px;
  }
  .kyc-banner {
    flex-direction: column;
    text-align: center;
  }
}

