/* Hero Section */
.hero-mma {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%), url('assets/hero-bg.jpg');
  background-size: cover;
  padding: 100px 0 60px 0;
}

/* Assessment Cards */
.assessment-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  height: 100%;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.assessment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -15px rgba(220, 53, 69, 0.12);
  border-color: rgba(220, 53, 69, 0.2);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(220, 53, 69, 0.1);
  color: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

/* Gradient Text */
.text-gradient {
  background: linear-gradient(135deg, var(--brand-red) 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Report Preview Box */
.report-preview {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
