/* ─── Plans Grid ─────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}
.plan-card {
  position: relative;
  border-top: 4px solid var(--yellow);
  overflow: visible;
}
.plan-card.plan-featured {
  border-top-color: var(--red);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(192,57,43,.2);
}
.plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-header { padding: 32px 28px 24px; border-bottom: 1px solid rgba(0,0,0,.06); }
.plan-icon { font-size: 2rem; margin-bottom: 12px; }
.plan-header h3 { font-family: var(--font-head); font-size: 1.4rem; color: var(--navy); margin-bottom: 16px; }
.plan-price { margin-bottom: 8px; }
.price-free {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--navy);
  line-height: 1;
}
.price-from {
  font-family: var(--font-head);
  font-size: .8rem;
  color: var(--gray);
  letter-spacing: .05em;
  display: block;
  margin-bottom: 2px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--navy);
  line-height: 1;
}
.plan-featured .price-amount { color: var(--red); }
.plan-tagline { font-size: .85rem; color: var(--gray); margin-top: 8px; font-style: italic; }

.plan-features {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--charcoal);
  line-height: 1.45;
}
.plan-features li.unavail { color: var(--gray); }
.check { color: #27AE60; font-weight: 700; flex-shrink: 0; }
.plan-features li.unavail span { color: var(--gray); flex-shrink: 0; }
.plan-cta {
  display: block;
  margin: 0 28px 28px;
  text-align: center;
  width: calc(100% - 56px);
  justify-content: center;
}

/* ─── À la carte ─────────────────────────────────────────── */
.ala-carte-section {
  background: var(--navy);
  padding: 88px 0;
}
.price-table {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  overflow: hidden;
}
.price-table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(242,196,61,.12);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
}
.price-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  padding: 14px 24px;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  border-top: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition);
}
.price-row:hover { background: rgba(255,255,255,.04); }
.price-row span:last-child {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--yellow);
}
.price-row span:nth-child(2) {
  font-size: .83rem;
  color: rgba(255,255,255,.4);
}
.price-note {
  margin-top: 20px;
  font-size: .83rem;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-container { max-width: 760px; }
.faq-list { margin-top: 12px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.faq-item summary {
  padding: 18px 20px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--yellow-dk);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 20px 20px;
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ─── CTA (reuse from home.css) ──────────────────────────── */
.cta-section {
  background: var(--gray-lt);
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
  padding: 72px 0;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card.plan-featured { transform: none; }
}
@media (max-width: 768px) {
  .plans-grid { grid-template-columns: 1fr; }

  /* Compact price table: show service + price, hide lead time */
  .price-table-head {
    grid-template-columns: 1fr auto;
  }
  .price-table-head span:nth-child(2) { display: none; }
  .price-row {
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
    align-items: baseline;
  }
  .price-row span:nth-child(2) { display: none; }
  .price-row span:last-child {
    font-size: .85rem;
    white-space: nowrap;
  }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}
