/* Improvement 6: Buyer Segment Section */

/* Buyer segment cards container */
.buyer-segments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* Individual buyer segment card */
.buyer-segment-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.buyer-segment-card:hover {
  border-color: var(--primary-color, #2563EB);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

/* Icon container */
.buyer-segment-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light, #EFF6FF);
  border-radius: 10px;
  flex-shrink: 0;
}

.buyer-segment-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary-color, #2563EB);
}

/* Card content */
.buyer-segment-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.buyer-segment-headline {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.3;
}

.buyer-segment-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #4B5563;
  margin: 0;
}

/* CTA button */
.buyer-segment-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--primary-color, #2563EB);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  white-space: nowrap;
}

.buyer-segment-cta:hover {
  background: var(--primary-dark, #1D4ED8);
  transform: translateX(2px);
}

.buyer-segment-cta::after {
  content: '→';
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.buyer-segment-cta:hover::after {
  transform: translateX(3px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .buyer-segments {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .buyer-segment-card {
    padding: 1.5rem;
  }
  
  .buyer-segment-headline {
    font-size: 1.25rem;
  }
  
  .buyer-segment-description {
    font-size: 0.9375rem;
  }
  
  .buyer-segment-cta {
    width: 100%;
    padding: 1rem;
  }
}
