@charset "UTF-8";
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: box-shadow var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-md);
}
.pricing-card--popular {
  border-color: var(--blue-600);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.18);
  transform: translateY(-6px);
}
@media (max-width: 900px) {
  .pricing-card--popular {
    transform: none;
  }
}
.pricing-card__popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}
.pricing-card__header {
  margin-bottom: 1.75rem;
}
.pricing-card__header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.pricing-card__header p {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.5;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.pricing-card__price .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-900);
}
.pricing-card__price .period {
  font-size: 0.85rem;
  color: var(--gray-600);
}
.pricing-card__features {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pricing-card__features li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-700);
}
.pricing-card__features li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pricing-card__features li.yes::before {
  background: rgba(34, 197, 94, 0.2);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 700;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-card__features li.no {
  color: var(--gray-400);
  text-decoration: line-through;
}
.pricing-card__features li.no::before {
  background: rgba(0, 0, 0, 0.08);
  content: "—";
  font-size: 0.7rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-note {
  text-align: center;
  color: var(--gray-600);
  font-size: 0.85rem;
  margin-top: 2rem;
}

.full-compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.full-compare th, .full-compare td {
  padding: 0.9rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
}
.full-compare td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--gray-800);
}
.full-compare thead tr {
  background: var(--navy-900);
}
.full-compare thead th {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.full-compare thead th:first-child {
  text-align: left;
}
.full-compare .highlight-col {
  background: rgba(37, 99, 235, 0.05);
  font-weight: 600;
}
.full-compare thead .highlight-col {
  background: var(--blue-600);
}
.full-compare .yes-cell {
  color: var(--green-500);
  font-weight: 700;
}
.full-compare .no-cell {
  color: var(--gray-400);
}
.full-compare tbody tr:last-child td {
  border-bottom: none;
}
.full-compare tbody tr:hover {
  background: var(--gray-50);
}
.full-compare tbody tr:hover .highlight-col {
  background: rgba(37, 99, 235, 0.08);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  gap: 1rem;
  transition: background 150ms;
}
.faq-item__question:hover {
  background: var(--gray-50);
}
.faq-item__chevron {
  flex-shrink: 0;
  transition: transform 250ms;
  stroke: var(--gray-500);
  fill: none;
  stroke-width: 2;
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
}
.faq-item__answer p {
  padding: 0 1.5rem;
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.7;
}
.faq-item.open {
  border-color: var(--blue-400);
}
.faq-item.open .faq-item__chevron {
  transform: rotate(180deg);
}
.faq-item.open .faq-item__answer {
  max-height: 200px;
}
.faq-item.open .faq-item__answer p {
  padding-bottom: 1.25rem;
}