/* ================================================================
   PAGE TARIFS / PALIERS
   ================================================================ */

.am-note-banner {
  background: var(--am-lav-pale);
  border: 1px solid var(--am-lav);
  color: var(--am-text);
  text-align: center;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 600;
}

.am-tiers-section {
  padding-bottom: 80px;
}

.am-tiers-header {
  text-align: center;
  margin-bottom: 40px;
}

.am-tiers-header h1 {
  margin-top: 16px;
}

.am-tiers-header .lead {
  margin: 16px auto 0;
  max-width: 50ch;
}

.am-tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
}

@media (max-width: 1024px) {
  .am-tiers {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .am-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.am-tier {
  background: var(--am-white);
  border: 1px solid var(--am-line);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.am-tier.featured {
  border-color: var(--am-orange);
  box-shadow: 0 8px 32px -8px rgba(244, 71, 31, 0.25);
  position: relative;
}

.am-tier-badge {
  display: inline-block;
  background: var(--am-orange);
  color: var(--am-white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.am-tier h3 {
  font-family: 'Jost', Georgia, serif;
  font-weight: 400;
  font-size: 1.3rem;
  margin: 0 0 8px;
}

.am-tier-price {
  font-family: 'Jost', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  color: var(--am-black);
}

.am-tier-price small {
  font-size: 0.9rem;
  color: var(--am-muted);
  font-weight: 400;
}

.am-tier-price-note {
  color: var(--am-sub);
  font-size: 0.82rem;
  margin-bottom: 20px;
}

.am-tier ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.am-tier li {
  font-size: 0.9rem;
  padding-left: 24px;
  position: relative;
  color: var(--am-sub);
  line-height: 1.5;
}

.am-tier li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--am-lav-d);
  font-weight: 700;
}

.am-tier li.off {
  color: var(--am-muted);
  text-decoration: line-through;
}

.am-tier li.off::before {
  content: '–';
  color: #ccc;
}

.am-tier .btn {
  margin-top: auto;
}

.am-tiers-footnote {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--am-sub);
}

.am-matrix-section {
  background: var(--am-gray);
  padding: 70px 0;
}

.am-matrix-header {
  text-align: center;
  margin-bottom: 40px;
}

.am-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.am-matrix th {
  font-family: 'Jost', Georgia, serif;
  font-weight: 400;
  font-size: 1rem;
  padding: 12px 16px;
  text-align: center;
  border-bottom: 2px solid var(--am-line);
}

.am-matrix th:first-child {
  text-align: left;
}

.am-matrix td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--am-line);
  color: var(--am-sub);
}

.am-matrix td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--am-black);
}

.am-matrix td.yes {
  text-align: center;
  color: var(--am-lav-d);
  font-weight: 700;
  font-size: 1rem;
}

.am-matrix td.no {
  text-align: center;
  color: #ccc;
  font-size: 1.1rem;
}

.am-matrix-footnote {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--am-sub);
  text-align: center;
}
