.home-hero {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 18px 44px rgba(157, 23, 77, .24);
}

.home-hero-copy {
  max-width: 900px;
}

.home-eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .15em;
}

.home-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
}

.home-intro {
  max-width: 760px;
  margin: 0;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
}

.home-customer-card {
  margin-top: 22px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.home-label {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-customer-details h2 {
  margin: 5px 0 2px;
  font-size: 25px;
}

.home-customer-details p {
  margin: 0;
  color: var(--muted);
}

.home-dashboard-btn {
  flex: 0 0 auto;
}

.home-feature-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-feature-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid #f5e2e9;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.home-feature-icon {
  color: var(--primary);
  font-size: 28px;
}

.home-feature-card h3 {
  margin: 12px 0 7px;
  font-size: 18px;
}

.home-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .home-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .home-customer-card {
    align-items: stretch;
    flex-direction: column;
  }

  .home-dashboard-btn {
    width: 100%;
  }

  .home-feature-grid {
    grid-template-columns: 1fr;
  }
}
