/* ============================================
   FEATURE ROWS (alternating layout)
   ============================================ */
.feature-row {
  display: flex;
  align-items: center;
  gap: var(--sp-xxl);
  padding: var(--sp-section) 0;
}

.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-row__content {
  flex: 1;
  min-width: 0;
}

.feature-row__visual {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.feature-row__badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-text);
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-row__badge--unique {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.feature-row__title {
  margin-bottom: var(--sp-md);
}

.feature-row__text {
  font-size: var(--fs-lg);
  color: var(--color-text-light);
  margin-bottom: var(--sp-xl);
  line-height: 1.7;
}

.feature-row__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.feature-row__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: var(--fs-md);
  line-height: 1.5;
}

.feature-row__list li::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  background: var(--color-primary-dark);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Divider between feature rows */
.feature-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0 auto;
  max-width: 200px;
}

/* Mobile */
@media (max-width: 767px) {
  .feature-row,
  .feature-row:nth-child(even) {
    flex-direction: column;
    text-align: center;
    padding: var(--sp-xxl) 0;
    gap: var(--sp-xl);
  }

  .feature-row__visual {
    order: -1;
  }

  .feature-row__visual .phone-mockup {
    width: 220px;
  }

  .feature-row__list {
    align-items: center;
  }

  .feature-row__list li {
    text-align: left;
  }
}

/* ============================================
   FEATURE COMPARISON TABLE
   ============================================ */
.comparison-table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: var(--fs-md);
}

.comparison-table th,
.comparison-table td {
  padding: var(--sp-md) var(--sp-lg);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table thead th {
  font-weight: 700;
  background: var(--color-bg);
  border-bottom: 2px solid var(--color-border);
}

.comparison-table .check {
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: var(--fs-lg);
}

.comparison-table .cross {
  color: var(--color-text-light);
  font-size: var(--fs-lg);
}
