.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.feature-card p {
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.65;
}
.feature-card--highlight {
  background: var(--navy-800);
  border-color: var(--navy-700);
}
.feature-card--highlight h3 {
  color: var(--white);
}
.feature-card--highlight p {
  color: rgba(255, 255, 255, 0.72);
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.compare-table th, .compare-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.93rem;
}
.compare-table thead tr {
  background: var(--navy-900);
}
.compare-table thead th {
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare-table thead th:first-child {
  border-radius: var(--radius-md) 0 0 0;
}
.compare-table thead th:last-child {
  border-radius: 0 var(--radius-md) 0 0;
}
.compare-table tbody tr:hover {
  background: var(--gray-50);
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table td:first-child {
  font-weight: 500;
  color: var(--gray-800);
}
.compare-table .yes {
  color: var(--green-500);
  font-weight: 700;
  font-size: 1.1rem;
}
.compare-table .no {
  color: var(--red-400);
  font-weight: 700;
  font-size: 1.1rem;
}
.compare-table .partial {
  color: var(--gray-600);
  font-size: 0.85rem;
}

/* EMAIL MARKETING HERO IMAGE */
.em-hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.em-hero-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
}
.em-hero-img__overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.em-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.em-pill svg {
  color: var(--blue-600);
}