/* pricing-landing.css */
/* landing page pre-login: banner prova gratuita, card prezzi/piani, sezione FAQ/assistenza */

/* ── STILI COMPLETI PER LE CARD CLICCABILI E EXTRA ── */
.landing-extras {
  width: 100%;
  max-width: 620px;
  margin: 0;
  text-align: center;
}

.trial-banner {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.trial-banner h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.trial-banner p {
  font-size: 13.5px;
  opacity: 0.9;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.clickable-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s, box-shadow 0.25s;
}

.clickable-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card h4 {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 12px;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1;
}
.pricing-card .price span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.pricing-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.clickable-card.highlighted {
  border-color: var(--accent-register);
  position: relative;
}
.clickable-card.highlighted:hover {
  box-shadow: 0 10px 25px rgba(184, 121, 31, 0.2);
  border-color: var(--accent-register);
}

.card-action-btn {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  background: var(--border);
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}
.clickable-card:hover .card-action-btn {
  background: var(--text);
  color: var(--surface);
}
.clickable-card:hover .card-action-btn.primary {
  background: var(--accent);
  color: white;
}
.clickable-card.highlighted:hover .card-action-btn.primary {
  background: var(--accent-register);
  color: white;
}

.faq-section h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.faq-section p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.faq-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}
.faq-buttons a.btn {
  width: 100%;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 12px;
}

.site-credit {
  text-align: center;
  margin-top: 28px;
  font-size: 12px;
  color: var(--muted);
  opacity: 0.8;
}
.site-credit a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-credit a:hover { opacity: 1; color: var(--accent-dark); }