/* src/css/sections/deployment.css — Full Deployment Offer */
.deployment {
  background: var(--color-bg);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
}

.deployment-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}

/* Two-tier comparison */
.deployment-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .deployment-tiers {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* Tier card base */
.tier-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tier-card-top {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.tier-name {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.tier-headline {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.tier-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.tier-price-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.tier-card-body {
  padding: var(--space-lg);
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: var(--space-lg);
}

.tier-feature-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.tier-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  flex-shrink: 0;
}

.tier-feature-row.active .tier-feature-dot {
  background: var(--color-primary);
}

.tier-feature-row.active {
  font-weight: 500;
  color: var(--color-text-main);
}

.tier-setup {
  padding: var(--space-md);
  background: var(--color-bg-surface);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.tier-setup svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
  stroke-width: 2;
  flex-shrink: 0;
}

.tier-setup strong {
  color: var(--color-text-main);
}

/* Highlighted full-deploy card */
.tier-card.is-featured {
  border: 2px solid var(--color-navy);
  box-shadow: var(--shadow-navy);
}

.tier-tag {
  display: inline-block;
  padding: 3px 12px;
  background: var(--color-navy);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}
