/*
 * Services Page Styles
 */

/* Hero */
.services-hero {
  padding-top: 8rem;
  padding-bottom: 3rem;
  text-align: center;
}

.services-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Services Overview */
.services-overview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.service-card.primary {
  border-color: var(--brown);
  background: var(--bg-card);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border-radius: 0;
}

.service-card.primary .service-icon {
  background: var(--brown);
}

.service-card.primary .service-icon svg {
  color: #ffffff;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--text-secondary);
}

.service-icon.muted svg {
  color: var(--text-muted);
}

.service-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-status {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.service-status.available {
  color: var(--success);
}

.service-status.coming-soon {
  color: var(--text-muted);
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Tier Cards */
.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
}

.tier-header h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.tier-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tier-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
}

.features-list {
  padding: 0.5rem 0;
}

.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item span:first-child {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.feature-item .price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--brown);
}

.feature-item.included {
  background: rgba(34, 197, 94, 0.05);
}

.tag-included {
  color: var(--success) !important;
}

/* Intro Banner */
.intro-banner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brown);
  border-radius: 0;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.intro-banner h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.intro-banner p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Included Grid */
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.included-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.included-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.included-icon svg {
  width: 24px;
  height: 24px;
  color: var(--success);
}

.included-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.included-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Active nav */
.nav-links a.active {
  color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .services-overview {
    grid-template-columns: 1fr;
  }

  .tier-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .included-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}
