/* Additional styles — service page enhancements */

/* Pricing table used on services page */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212,160,23,.15);
}
.pricing-card:hover { transform: translateY(-5px); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-name { font-size: 1rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.pricing-price { font-size: 2.8rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 4px; }
.pricing-price sup { font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.pricing-period { font-size: .82rem; color: var(--text-muted); margin-bottom: 28px; }

.pricing-features { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-features li {
  font-size: .88rem;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.pricing-features li.no { color: var(--text-muted); }
.pricing-features li.no::before { content: '–'; color: var(--text-muted); }

/* Process timeline */
.process-timeline { position: relative; padding-left: 40px; }
.process-timeline::before {
  content: '';
  position: absolute;
  left: 14px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--blue));
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
  padding-left: 20px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy);
}
.timeline-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.timeline-item p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }

/* Results grid for case studies page */
.results-banner {
  background: linear-gradient(135deg, rgba(212,160,23,.1), rgba(79,142,247,.1));
  border: 1px solid rgba(212,160,23,.2);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
  text-align: center;
}
@media (max-width: 768px) { .results-banner { grid-template-columns: 1fr 1fr; } }

.results-banner .rb-num { font-size: 2rem; font-weight: 900; color: var(--gold); }
.results-banner .rb-label { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }
