/* ============================================================
   PAGE OFFRES + Hero générique de page interne
   ============================================================ */

/* Hero page interne (commun à offres, a-propos, contact) */
.page-hero {
  padding: 80px 0 48px;
  text-align: center;
  background: var(--ivory-soft);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 24px;
}
.page-hero .lead {
  max-width: 640px;
  margin: 0 auto;
}

/* Pricing detailed reuse from home.css, override padding */
.pricing-detailed { padding: 80px 0; }

/* ===== TABLEAU COMPARATIF ===== */
.comparison { background: var(--ivory-soft); }
.comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: var(--white);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.comparison-table thead th {
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  padding: 24px 20px;
  border-bottom: none;
}
.comparison-table thead th.comp-tier { text-align: center; }
.comparison-table thead th.comp-tier-featured { background: var(--ocre); }
.comparison-table thead th span {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: rgba(245, 241, 232, 0.7);
  margin-top: 4px;
}
.comparison-table tbody td:not(:first-child) {
  text-align: center;
  color: var(--text);
  font-weight: 500;
}
.comparison-table tbody td:first-child {
  color: var(--text-soft);
  font-weight: 500;
}
.comparison-table tr.comp-section td {
  background: var(--ivory-deep);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--navy);
  padding: 14px 20px;
  font-weight: 500;
}
.comparison-table tbody tr:hover:not(.comp-section) {
  background: var(--ivory-soft);
}

/* ===== OPTIONS ===== */
.options-section { background: var(--ivory); }
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.option-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}
.option-card:hover {
  border-color: var(--ocre-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.option-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.option-card p {
  font-size: 14px;
  margin-bottom: 16px;
  flex: 1;
}
.option-price {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ocre);
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

@media (max-width: 900px) {
  .options-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .options-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq { background: var(--ivory-soft); }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--ocre-pale); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  list-style: none;
  position: relative;
  padding-right: 56px;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--ocre);
  font-weight: 300;
  transition: transform .2s;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item summary:hover { color: var(--ocre); }
.faq-item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-soft);
}
