/* freshpilot — features only */

.page-hero { padding: 64px 0 24px; text-align: center; }

.page-hero p { font-size: 18px; color: var(--bark-soft); max-width: 560px; margin: 0 auto; line-height: 1.65; }

.included-banner { text-align: center; padding: 20px 0 48px; }

.included-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest-light); color: var(--forest);
  padding: 10px 22px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600;
}

.included-pill .check { font-size: 16px; }

.category-nav {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; padding-bottom: 48px;
}

.category-nav a {
  font-size: 13px; font-weight: 600; color: var(--bark-soft);
  background: var(--white); border: 1px solid var(--divider);
  padding: 8px 18px; border-radius: var(--radius-full);
  transition: all 0.2s;
}

.category-nav a:hover { color: var(--forest); border-color: var(--forest); background: var(--forest-light); }

.feature-category { margin-bottom: 48px; }

.feature-category-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid var(--divider);
}

.feature-category-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--forest-light); display: flex;
  align-items: center; justify-content: center; font-size: 18px;
  flex-shrink: 0;
}

.feature-category-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 700;
}

.feature-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}

.feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.feature-item:hover { background: var(--white); }

.feature-dot {
  width: 8px; height: 8px; min-width: 8px;
  border-radius: 50%; background: var(--forest);
  margin-top: 7px;
}

.feature-dot.addon { background: var(--clay); }

.feature-name {
  font-size: 14px; font-weight: 600;
  margin-bottom: 1px;
}

.feature-desc { font-size: 13px; color: var(--bark-soft); line-height: 1.45; }

.addon-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clay); background: var(--clay-light);
  padding: 2px 8px; border-radius: var(--radius-sm);
  margin-left: 6px; vertical-align: middle;
}

.features-legend {
  display: flex; gap: 24px; justify-content: center;
  padding: 12px 0 48px;
  font-size: 13px; color: var(--bark-muted); font-weight: 500;
}

.features-legend span { display: flex; align-items: center; gap: 8px; }

.legend-dot { width: 8px; height: 8px; border-radius: 50%; }

.legend-dot.included { background: var(--forest); }

.cta-section p { color: var(--sand); font-size: 17px; max-width: 480px; margin: 0 auto 32px; line-height: 1.6; }

.legend-dot.addon { background: var(--clay); }

.cta-section h2 { color: var(--cream); margin-bottom: 14px; font-family: 'DM Serif Display', serif; }

@media (max-width: 1000px) {
  .feature-list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .page-hero { padding: 48px 0 20px; }
  .page-hero p { font-size: 16px; }
  .category-nav { gap: 6px; }
  .category-nav a { font-size: 12px; padding: 6px 14px; }
}

