/* =========================================================
   PAGE : PRONOSTIC FOOT IA GRATUIT
   ========================================================= */

:root {
  --pfia-primary: #1e40af;
  --pfia-accent: #2563eb;
  --pfia-light: #f3f6ff;
  --pfia-success: #16a34a;
  --pfia-border: #e5e7eb;
  --pfia-text-soft: #6b7280;
}

/* =========================
   HERO
   ========================= */

.tp-hero {
  background: linear-gradient(135deg, var(--pfia-primary), var(--pfia-accent));
  padding: 70px 20px;
  color: white;
  text-align: center;
}

.tp-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 20px auto;
  line-height: 1.25;
}

.tp-subtitle {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
  opacity: 0.95;
}

/* Badge */
.tp-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  backdrop-filter: blur(4px);
}

/* =========================
   CTA BUTTONS
   ========================= */

.tp-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tp-hero .cta-button {
  background: white;
  color: var(--pfia-primary);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
  border: 2px solid white;
}

.tp-hero .cta-button:hover {
  background: transparent;
  color: white;
}

/* =========================
   SECTIONS
   ========================= */

.tp-section {
  padding: 60px 20px;
}

.tp-section--filters {
  background: var(--pfia-light);
}

.tp-section--results {
  background: #ffffff;
}

.tp-h2 {
  font-size: 1.9rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

/* =========================
   GRID METRICS
   ========================= */

.tp-day-summary__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.tp-day-metric {
  background: white;
  border: 1px solid var(--pfia-border);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  transition: 0.25s ease;
}

.tp-day-metric:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.tp-day-metric__label {
  font-size: 0.9rem;
  color: var(--pfia-text-soft);
  margin-bottom: 8px;
}

.tp-day-metric__value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pfia-primary);
}

.tp-day-metric__hint {
  font-size: 0.85rem;
  margin-top: 6px;
  color: var(--pfia-text-soft);
}

/* =========================
   NOTE / CALLOUT
   ========================= */

.tp-note {
  background: #fff;
  border-left: 4px solid var(--pfia-primary);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* =========================
   QUICK NAV
   ========================= */

.quick-nav {
  margin-top: 20px;
}

.quick-chip {
  display: inline-block;
  margin: 6px 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  color: white;
  transition: 0.2s ease;
}

.quick-chip:hover {
  background: rgba(255,255,255,0.35);
}

/* =========================
   FAQ STYLE
   ========================= */

.seo-footer {
  margin-bottom: 12px;
  border: 1px solid var(--pfia-border);
  border-radius: 8px;
  padding: 10px 14px;
  background: white;
}

.seo-footer summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
}

.seo-footer__content {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--pfia-text-soft);
}

/* =========================
   SEO SUMMARY
   ========================= */

.seo-summary {
  background: var(--pfia-light);
  padding: 25px;
  border-radius: 10px;
  margin-top: 20px;
}

.seo-summary h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {

  .tp-hero h1 {
    font-size: 1.8rem;
  }

  .tp-subtitle {
    font-size: 1rem;
  }

  .tp-h2 {
    font-size: 1.5rem;
  }

}
