/* ══════════════════════════════════════════
   Pilier Prix panneaux solaires — CSS
   Consomme exclusivement les tokens du :root.
   Zero valeur brute.
   ══════════════════════════════════════════ */

/* ─── Layout commun ─── */
.px-pilier { font-family: var(--ff-body); color: var(--c-text); overflow-x: clip; }
.px-wrap { max-width: var(--w-wide); margin: 0 auto; padding: 0 var(--pad-desktop); }
@media (max-width:1024px) { .px-wrap { padding: 0 var(--pad-tablet); } }
@media (max-width:640px)  { .px-wrap { padding: 0 var(--pad-mobile); } }

/* ─── Typographie ─── */
.px-h1 {
  font-size: var(--fs-h1);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--c-white);
  margin: 0 0 20px;
  max-width: 800px;
}
.px-h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-extrabold);
  color: var(--c-text);
  margin: 0 0 12px;
  line-height: var(--lh-snug);
}
.px-p {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--c-text-muted);
  margin: 0 0 28px;
  max-width: var(--w-text);
}
.px-sub {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: rgba(199, 210, 222, 1);
  margin: 0 0 32px;
  max-width: 620px;
}
.px-sub strong { color: var(--c-accent); font-weight: var(--fw-bold); }

/* Bold = orange (tout le pilier) */
.px-pilier strong { color: var(--c-accent); }

/* ─── Highlight underline ─── */
.px-hl {
  background: linear-gradient(180deg, transparent 60%, var(--c-orange-45) 60%);
  padding: 0 4px;
}

/* ─── Reveal animations ─── */
.rv { opacity: 0; transform: translateY(16px); }
.rv.in { opacity: 1; transform: none; transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.rv.d1 { transition-delay: 0s; }
.rv.d2 { transition-delay: .1s; }
.rv.d3 { transition-delay: .2s; }
.rv.d4 { transition-delay: .3s; }
.rv.d5 { transition-delay: .4s; }
.rv.d6 { transition-delay: .5s; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* ─── Boutons ─── */
.px-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), transform var(--dur-fast);
}
.px-btn--primary {
  background: var(--c-accent);
  color: var(--c-white);
  padding: 14px 28px;
}
.px-btn--primary:hover {
  background: var(--c-accent-hover);
  box-shadow: var(--shadow-focus);
  transform: translateY(-1px);
}
.px-btn--ghost {
  background: transparent;
  color: var(--c-accent);
  border: 2px solid var(--c-accent);
  padding: 12px 24px;
}
.px-btn--ghost:hover { background: var(--c-orange-10); }


/* ── Link color fix (force orange across pilier) ── */
.px-pilier a { color: var(--c-accent); }
.px-pilier a:hover { color: var(--c-accent-hover); }
.px-pilier a:visited { color: var(--c-accent); }


/* ══════════ HERO (background photo, single column, aides-style CTA) ══════════ */
.px-hero {
  position: relative;
  background: var(--c-navy);
  padding: calc(var(--space-section) + 32px) 0 var(--space-section-sm);
  overflow: hidden;
}

/* Background image layer */
.px-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark gradient overlay */
.px-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 30, 41, .92) 0%,
    rgba(30, 45, 63, .82) 50%,
    rgba(20, 30, 41, .7) 100%
  );
  z-index: 1;
}

.px-hero-inner {
  position: relative;
  z-index: 2;
}

/* Breadcrumb (white text on dark bg) */
.px-bc { font-size: var(--fs-sm); color: rgba(199, 210, 222, .8); margin: 0 0 32px; }
.px-bc a { color: rgba(199, 210, 222, .8); text-decoration: none; }
.px-bc a:visited { color: rgba(199, 210, 222, .8); }
.px-bc a:hover { color: var(--c-accent); }
.px-bc .sep { margin: 0 8px; }

/* ── Hero CTA — champ adresse epure + boutons ── */
.px-hero-actions { max-width: 620px; }

.px-hero-form { position: relative; margin-bottom: 20px; }

.px-hero-field {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
  transition: border-color var(--dur-base), background var(--dur-base);
}
.px-hero-field:focus-within {
  background: rgba(255,255,255,.18);
  border-color: var(--c-accent);
}

.px-hero-field-icon {
  flex-shrink: 0;
  margin-left: 18px;
  color: rgba(255,255,255,.5);
}

.px-hero-input {
  flex: 1;
  border: none !important;
  outline: none !important;
  padding: 16px 14px;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--c-white);
  background: transparent !important;
  min-width: 0;
}
.px-hero-input::placeholder { color: rgba(255,255,255,.45); }

.px-hero-go {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin: 4px;
  border-radius: var(--radius-full);
  background: var(--c-accent) !important;
  color: var(--c-white) !important;
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-base), transform var(--dur-fast);
}
.px-hero-go:hover {
  background: var(--c-accent-hover) !important;
  transform: scale(1.08);
}

/* Suggestions dropdown */
.px-hero-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 100;
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, .2);
  max-height: 320px;
  overflow-y: auto;
}
.px-hero-suggestions.is-open { display: block; }
.px-hero-suggestions li {
  padding: 12px 16px;
  cursor: pointer;
  font-size: var(--fs-sm);
  color: var(--c-text);
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: background var(--dur-fast);
}
.px-hero-suggestions li:hover,
.px-hero-suggestions li.is-active { background: var(--c-orange-10); }
.px-hero-suggestions .px-suggest-context {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}

/* Boutons primaire + secondaire */
.px-hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.px-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: var(--c-accent) !important;
  color: var(--c-white) !important;
  border: none !important;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  text-decoration: none !important;
  cursor: pointer;
  transition: background var(--dur-base), transform var(--dur-fast);
}
.px-hero-btn-primary:hover {
  background: var(--c-accent-hover) !important;
  transform: translateY(-1px);
}
.px-hero-btn-primary svg { transition: transform var(--dur-fast); }
.px-hero-btn-primary:hover svg { transform: translateX(4px); }

.px-hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 15px 24px;
  background: transparent !important;
  color: var(--c-white) !important;
  border: 1.5px solid rgba(255,255,255,.35) !important;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  text-decoration: none !important;
  cursor: pointer;
  transition: background var(--dur-base), border-color var(--dur-base);
}
.px-hero-btn-ghost:hover {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.55) !important;
}

.px-hero-reassurance {
  font-size: var(--fs-xs);
  color: rgba(199, 210, 222, .6);
}

@media (max-width:860px) {
  .px-hero { padding: calc(var(--space-section-sm) + 32px) 0 var(--space-section-sm); }
}
@media (max-width:640px) {
  .px-h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  .px-hero-btns { flex-direction: column; gap: 10px; }
  .px-hero-btn-primary,
  .px-hero-btn-ghost { width: 100%; justify-content: center; text-align: center; }
}


/* ══════════ TABLEAU DE PRIX ══════════ */
.px-table-section {
  background: var(--c-white);
  padding: var(--space-section) 0;
  border-top: 1px solid var(--c-border);
}

.px-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
@media (max-width:860px) { .px-cards-row { grid-template-columns: 1fr; gap: 16px; } }

.px-price-card {
  position: relative;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-fast);
}
.px-price-card:hover {
  border-color: var(--c-orange-30);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.px-price-card--highlight {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 1px var(--c-orange-25);
}
.px-price-card--highlight:hover {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-card-hover);
}

.px-price-card-tag {
  background: var(--c-accent);
  color: var(--c-white);
  font-size: 11px;
  font-weight: var(--fw-bold);
  text-align: center;
  padding: 5px 0;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.px-price-card-head {
  padding: 24px 24px 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.px-price-kwc {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-extrabold);
  color: var(--c-text);
  line-height: 1;
}
.px-price-panels {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  font-weight: var(--fw-medium);
}

.px-price-card-body { padding: 16px 24px; }
.px-price-range {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.px-price-from, .px-price-to {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: var(--fw-bold);
  color: var(--c-accent);
}
.px-price-sep {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}
.px-price-unit {
  display: block;
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-bottom: 16px;
}

.px-price-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.px-price-details li {
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
  line-height: var(--lh-normal);
  padding-left: 20px;
  position: relative;
}
.px-price-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--c-orange-25);
}
.px-price-details a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.px-price-details a:hover { color: var(--c-accent-hover); }

.px-price-card-foot {
  padding: 12px 24px 16px;
  border-top: 1px solid var(--c-border);
}
.px-price-kwc-unit {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}


/* ══════════ DISCLAIMER ══════════ */
.px-disclaimer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--c-navy-4);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--c-text-muted);
}
.px-disclaimer svg { flex-shrink: 0; color: var(--c-text-muted); margin-top: 2px; }
.px-disclaimer p {
  font-size: var(--fs-xs);
  line-height: var(--lh-relaxed);
  color: var(--c-text-muted);
  margin: 0 0 6px;
}
.px-disclaimer p:last-child { margin-bottom: 0; }
.px-disclaimer strong { color: var(--c-text-secondary); }
.px-disclaimer a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.px-disclaimer a:hover { color: var(--c-accent-hover); }


/* ══════════ CONFIGURATEUR ══════════ */
.px-config {
  background: var(--c-bg);
  padding: var(--space-section) 0;
}

.px-config-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width:860px) {
  .px-config-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Visuel toit */
.px-config-visual { position: relative; }
.px-roof-wrap {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  overflow: visible;
  box-shadow: var(--shadow-sm);
}
.px-roof-wrap svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Panneaux animation */
.px-panel {
  transition: opacity var(--dur-medium) ease-out;
}

.px-panel-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}
.px-panel-counter-num {
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
  color: var(--c-accent);
  min-width: 28px;
  text-align: center;
}
.px-panel-counter-label {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}

/* ── Segmented power tabs (replaces slider) ── */
.px-config-controls-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  margin: 0 0 12px;
}

.px-power-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--c-border);
  background: var(--c-white);
}

.px-power-tab {
  flex: 1;
  padding: 16px 8px !important;
  background: var(--c-white) !important;
  color: var(--c-text-secondary) !important;
  border: none !important;
  border-right: 1px solid var(--c-border) !important;
  font-family: var(--ff-body) !important;
  font-size: var(--fs-base) !important;
  font-weight: var(--fw-semibold) !important;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: background var(--dur-base), color var(--dur-base), box-shadow var(--dur-base);
}
.px-power-tab:last-child { border-right: none !important; }

.px-power-tab:hover {
  background: var(--c-orange-10) !important;
  color: var(--c-accent) !important;
}

.px-power-tab.is-active {
  background: var(--c-accent) !important;
  color: var(--c-white) !important;
  font-weight: var(--fw-bold) !important;
  box-shadow: 0 2px 8px -2px rgba(245, 166, 35, .4);
}

.px-config-controls-label {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--c-text);
  margin: 0 0 12px;
}

/* R&#233;sultats live */
.px-config-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.px-result-card {
  padding: 16px 18px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.px-result-card--prix {
  border-color: var(--c-accent);
  border-width: 2px;
  background: var(--c-orange-10);
}
.px-result-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.px-result-value {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: var(--fw-extrabold);
  color: var(--c-text);
  line-height: var(--lh-snug);
}
.px-result-card--prix .px-result-value { color: var(--c-accent); }
.px-result-note {
  font-size: 11px;
  color: var(--c-text-muted);
  line-height: var(--lh-normal);
}

/* CTA configurateur */
.px-config-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  cursor: pointer;
  background: var(--c-accent) !important;
  color: var(--c-white) !important;
  border: none !important;
  transition: background var(--dur-base), transform var(--dur-fast);
}
.px-config-cta:hover {
  background: var(--c-accent-hover) !important;
  transform: translateY(-1px);
}

.px-config-legal {
  font-size: 10px;
  color: var(--c-gray-light);
  line-height: 1.5;
  margin: 12px 0 0;
}
.px-config-legal a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ══════════ PHOTO BREAK ══════════ */
.px-photo {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  background-color: var(--c-navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.px-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(30, 45, 63, .88) 0%,
    rgba(30, 45, 63, .45) 50%,
    rgba(30, 45, 63, .2) 100%
  );
  z-index: 1;
}

.px-photo-content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-section);
  padding-bottom: var(--space-section-sm);
  width: 100%;
}

.px-photo-text {
  font-family: var(--ff-body);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: var(--fw-medium);
  color: var(--c-white);
  line-height: var(--lh-relaxed);
  margin: 0 0 16px;
}

/* Photo link (voltaix_internal_link renders an <a>) */
.px-photo-link-wrap {
  margin: 0;
}
.px-photo-link-wrap a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  color: var(--c-white) !important;
  text-decoration: none;
  padding: 12px 24px;
  background: var(--c-accent) !important;
  border: none !important;
  border-radius: var(--radius-sm);
  transition: background var(--dur-base), transform var(--dur-fast);
}
.px-photo-link-wrap a:hover {
  background: var(--c-accent-hover) !important;
  transform: translateY(-1px);
}

@media (max-width:640px) {
  .px-photo { min-height: 320px; }
  .px-photo-text { font-size: clamp(1rem, 4vw, 1.3rem); }
}


/* ══════════ FACTEURS ══════════ */
.px-facteurs {
  background: var(--c-white);
  padding: var(--space-section) 0;
  border-top: 1px solid var(--c-border);
}

.px-facteurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width:860px) { .px-facteurs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:640px) { .px-facteurs-grid { grid-template-columns: 1fr; } }

.px-facteur-card {
  padding: 24px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.px-facteur-card:hover {
  border-color: var(--c-orange-30);
  box-shadow: var(--shadow-sm);
}

.px-facteur-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--c-orange-10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--c-accent);
}

.px-facteur-title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--c-text);
  margin: 0 0 8px;
  line-height: var(--lh-snug);
}

.px-facteur-text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--c-text-secondary);
  margin: 0;
}


/* ══════════ CAS CONCRET ══════════ */
.px-cas {
  background: var(--c-white);
  padding: var(--space-section) 0;
  border-top: 1px solid var(--c-border);
}

.px-cas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.px-cas-visual { position: relative; }

.px-cas-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

.px-cas-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--c-bg);
  border: 2px dashed var(--c-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--c-text-muted);
}
.px-cas-placeholder span {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}

.px-cas-facts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.px-cas-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.px-cas-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
}
.px-cas-list li:first-child {
  border-top: 1px solid var(--c-border);
}

.px-cas-label {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  font-weight: var(--fw-medium);
}

.px-cas-value {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--c-text);
  text-align: right;
}
.px-cas-value--accent {
  color: var(--c-accent);
}

.px-cas-note {
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}
.px-cas-note a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.px-cas-note a:hover { color: var(--c-accent-hover); }

.px-cas-disclaimer {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
  margin: 0;
  padding: 14px 16px;
  background: var(--c-navy-4);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--c-text-muted);
}
.px-cas-disclaimer a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.px-cas-disclaimer a:hover { color: var(--c-accent-hover); }

@media (max-width:860px) {
  .px-cas-grid { grid-template-columns: 1fr; gap: 28px; }
}


/* ══════════ RENTABILITE ══════════ */
.px-rentabilite {
  background: var(--c-bg);
  padding: var(--space-section) 0;
}

.px-rent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width:860px) { .px-rent-grid { grid-template-columns: 1fr; } }

/* Bloc reforme */
.px-rent-reforme {
  padding: 24px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}
.px-rent-reforme-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.px-rent-reforme-head svg { color: var(--c-accent); flex-shrink: 0; }
.px-rent-reforme-title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--c-text);
  margin: 0;
  line-height: var(--lh-snug);
}

.px-rent-reforme-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.px-rent-reforme-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
  line-height: var(--lh-normal);
}
.px-rent-reforme-list a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.px-rent-reforme-list a:hover { color: var(--c-accent-hover); }

.px-rent-reforme-more {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  margin: 16px 0 0;
}
.px-rent-reforme-more a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.px-rent-tag {
  display: inline-flex;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  white-space: nowrap;
}
.px-rent-tag--gone {
  background: rgba(180, 60, 60, .1);
  color: var(--c-error);
}
.px-rent-tag--down {
  background: var(--c-orange-10);
  color: var(--c-accent);
}
.px-rent-tag--kept {
  background: rgba(31, 168, 104, .1);
  color: var(--c-success);
}

/* Bloc impact */
.px-rent-impact {
  padding: 24px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}
.px-rent-impact-title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--c-text);
  margin: 0 0 12px;
  line-height: var(--lh-snug);
}
.px-rent-impact-text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--c-text-secondary);
  margin: 0 0 16px;
}
.px-rent-impact-text strong { color: var(--c-text); }
.px-rent-impact-text a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.px-rent-numbers {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.px-rent-num {
  flex: 1;
  min-width: 100px;
  padding: 14px;
  background: var(--c-bg);
  border-radius: var(--radius-md);
  text-align: center;
}
.px-rent-num--vs {
  flex: 0;
  min-width: auto;
  padding: 0;
  background: none;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  font-weight: var(--fw-semibold);
}
.px-rent-num-val {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: var(--fw-extrabold);
  color: var(--c-accent);
  line-height: 1.2;
}
.px-rent-num-label {
  display: block;
  font-size: 11px;
  color: var(--c-text-muted);
  margin-top: 4px;
}

.px-rent-tip {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--c-orange-10);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--c-accent);
}
.px-rent-tip svg { flex-shrink: 0; color: var(--c-accent); margin-top: 1px; }
.px-rent-tip span {
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
  line-height: var(--lh-relaxed);
}
.px-rent-tip a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.px-rent-tip a:hover { color: var(--c-accent-hover); }

@media (max-width:640px) {
  .px-rent-numbers { flex-direction: column; gap: 10px; }
  .px-rent-num--vs { flex: unset; }
  .px-rent-num { min-width: unset; width: 100%; }
}


/* ══════════ FAQ (2-column card grid, button + div hidden, plus/minus icon) ══════════ */
.px-faq {
  background: var(--c-bg);
  padding: var(--space-section) 0;
  border-top: 1px solid var(--c-border);
}

.px-faq-header { text-align: center; margin-bottom: 40px; }

.px-faq-subtitle {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--c-text-muted);
  margin: 8px 0 0;
}

/* 2-column card grid */
.px-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.px-faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.px-faq-item:hover {
  border-color: var(--c-orange-30);
  box-shadow: var(--shadow-sm);
}

.px-faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-body);
  color: var(--c-text);
  transition: color var(--dur-base);
}
.px-faq-q:hover .px-faq-q-text { color: var(--c-accent); }
.px-faq-q:focus-visible { outline: 2px solid var(--c-accent); outline-offset: -2px; border-radius: var(--radius-lg); }

.px-faq-q-text {
  flex: 1 1 auto;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
}

.px-faq-q-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  transition: transform var(--dur-base);
}

/* Plus/minus icon: vertical line rotates to become minus */
.px-faq-icon-v {
  transition: transform var(--dur-base);
  transform-origin: center;
}
.px-faq-item.is-open .px-faq-icon-v {
  transform: rotate(90deg);
}

.px-faq-a {
  padding: 0 24px 20px;
}
.px-faq-a p {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--c-text-secondary);
  margin: 0;
}
.px-faq-a a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.px-faq-a a:hover { color: var(--c-accent-hover); }
.px-faq-a[hidden] { display: none; }

@media (max-width:860px) {
  .px-faq-grid { grid-template-columns: 1fr; }
}


/* ══════════ CTA FINAL — uses pa-final.css (sun animation) ══════════ */
/* px-hl inside pa-final dark section needs lighter underline */
.pa-final .px-hl {
  background: linear-gradient(180deg, transparent 60%, rgba(245, 166, 35, .35) 60%);
  padding: 0 4px;
}


/* ══════════ RESPONSIVE 360px ══════════ */
@media (max-width:380px) {
  .px-price-card-head { padding: 18px 16px 0; }
  .px-price-card-body { padding: 14px 16px; }
  .px-price-card-foot { padding: 10px 16px 14px; }
  .px-config-cta { width: 100%; justify-content: center; }
  .px-power-tab { padding: 12px 4px; font-size: var(--fs-xs); }
}
