/* ==== SECTION OFFRES ==== */
.pcv4 {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff7f1, #fff);
}

.pcv4-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.pcv4-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* ==== CARD ==== */
.pcv4-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.pcv4-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.pcv4-card header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #111;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff7a00;
}
.ht {
  font-size: 0.8rem;
  color: #777;
}

.subtitle {
  margin: 0 0 20px;
  font-size: 1rem;
  color: #444;
}

/* ==== LIST ==== */
.pcv4-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.pcv4-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #333;
}

/* Check futuriste orange */
.pcv4-list .check {
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a00, #ffb463);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 3px 6px rgba(255, 122, 0, 0.4);
}

/* Cross élégant gris */
.pcv4-list .cross {
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 16px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

/* Cross élégant */
.pcv4-list .cross {
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 16px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

/* ==== FOOTER ==== */
.card-footer {
  margin-top: auto;
  text-align: center;
}

/* ==== BUTTON ==== */
.btn.reserve {
  background: #111;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 14px 22px;
  width: 100%;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.reserve:hover {
  background: #000;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* ==== NOTE ==== */
.pcv4-note {
  margin-top: 40px;
  font-size: 0.9rem;
  text-align: center;
  color: #666;
}






/* Section comparatif */
.comparatif {
  padding: 60px 0;
}

.comparatif h2 {
  text-align: center;
  margin-bottom: 10px;
}

.comparatif .lead {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

/* Table wrapper */
.table-responsive {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.pricing-table thead {
  background: linear-gradient(135deg, #ff7a00, #ffb463);
  color: #fff;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: center;
  font-size: 0.95rem;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  font-weight: 600;
}

/* Rows */
.pricing-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.pricing-table tbody tr.highlight {
  background: rgba(255, 122, 0, 0.08);
  font-weight: 600;
}

/* Checks & Crosses */
.pricing-table td {
  font-weight: bold;
  font-size: 1.05rem;
}

.pricing-table td:contains("✔") {
  color: #ff7a00; /* orange vif */
}

.pricing-table td:contains("✘") {
  color: #ccc; /* gris clair */
}

/* Note */
.comparatif .note {
  text-align: center;
  margin-top: 15px;
  font-size: 0.8rem;
  color: #777;
}

