/* ═══════════════════════════════════════════════════════════════
   tarifs.css — Styles spécifiques à tarifs.html
   Chargé après global.css et landing.css
═══════════════════════════════════════════════════════════════ */

/* ── HERO PRICING ────────────────────────────────────────────── */
.pricing-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 20px 64px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  text-align: center;
}

.pricing-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.pricing-hero .eyebrow { margin-bottom: 12px; }

.pricing-hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 7vw, 60px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.pricing-hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 24px;
}

.pricing-hero .hero-trust {
  justify-content: center;
  margin-bottom: 32px;
}

/* ── TOGGLE MENSUEL / ANNUEL ─────────────────────────────────── */
.billing-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.billing-card {
  background: var(--white);
  border-radius: 50px;
  padding: 5px;
  display: inline-flex;
  gap: 4px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.billing-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  background: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.billing-btn.active {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(255,107,44,0.30);
}

.save-badge {
  display: inline-block;
  background: var(--green-light);
  color: #15803d;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 5px;
}

/* ── PLANS SECTION ───────────────────────────────────────────── */
.plans-section {
  padding-top: 48px;
  padding-bottom: 64px;
}

/* Prix Premium : <sup>€</sup>2,49 */
.plan-price sup {
  font-size: 18px;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
  font-weight: 900;
}

/* Prix barré en mode annuel */
.plan-price-orig {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
  margin-top: 2px;
  margin-bottom: 16px;
  display: none;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); }

.faq-q {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--orange); }

.faq-icon {
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--orange);
  line-height: 1;
}
.faq-icon.open { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a.open { max-height: 240px; }

.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
