/* ═══════════════════════════════════════════════════════
   LDLC Orléans — Espace Pro · Premium B2B Dark Theme
   Shared across: index.html / formulaire.html / evenements.html
═══════════════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────────────── */
:root {
  --bg:           #06101d;
  --surface:      #0c1929;
  --surface-2:    #102238;
  --surface-3:    #152944;
  --border:       rgba(255,255,255,0.07);
  --border-blue:  rgba(0,145,220,0.28);
  --blue:         #0080e0;
  --blue-dark:    #004494;
  --blue-light:   #00a0e9;
  --blue-glow:    rgba(0,128,224,0.22);
  --text:         #eef4ff;
  --text-2:       rgba(238,244,255,0.58);
  --text-3:       rgba(238,244,255,0.30);
  --green:        #00cc7a;
  --red:          #ff4757;
  --radius-xl:    24px;
  --radius-lg:    18px;
  --radius-md:    12px;
  --radius-sm:    8px;
  --shadow-card:  0 2px 24px rgba(0,0,0,0.5);
  --shadow-blue:  0 8px 32px rgba(0,100,200,0.28);
}

/* ─── Base overrides ─────────────────────────────────── */
body.pro-page {
  background: var(--bg) !important;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
}
body.pro-page * { box-sizing: border-box; }

/* ─── Animations ─────────────────────────────────────── */
@keyframes px-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes px-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes px-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,160,233,0.25); }
  50%       { box-shadow: 0 0 0 8px rgba(0,160,233,0.04); }
}
@keyframes px-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes px-spin {
  to { transform: rotate(360deg); }
}

/* ─── Scroll reveal ──────────────────────────────────── */
.px-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.22,1,.36,1),
              transform 0.65s cubic-bezier(.22,1,.36,1);
}
.px-reveal.from-left  { transform: translateX(-28px); }
.px-reveal.from-right { transform: translateX(28px); }
.px-reveal.scale      { transform: scale(0.92) translateY(14px); }
.px-reveal.visible    { opacity: 1; transform: none; }
.px-d1 { transition-delay: 0.07s; }
.px-d2 { transition-delay: 0.14s; }
.px-d3 { transition-delay: 0.21s; }
.px-d4 { transition-delay: 0.28s; }
.px-d5 { transition-delay: 0.35s; }

/* ─── Pro Sub-Navigation ─────────────────────────────── */
.px-subnav {
  position: sticky;
  top: 64px; /* height of main nav */
  z-index: 90;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.px-subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
}
.px-subnav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  margin-right: 32px;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-right: 1px solid var(--border);
  padding-right: 32px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.px-subnav-brand:hover { color: var(--text); }
.px-subnav-brand i { color: var(--blue-light); font-size: 14px; }
.px-subnav-tabs {
  display: flex;
  gap: 0;
}
.px-subnav-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.px-subnav-tab:hover { color: var(--text); }
.px-subnav-tab.active {
  color: var(--blue-light);
  border-bottom-color: var(--blue-light);
}
.px-subnav-tab i { font-size: 12px; opacity: 0.7; }

/* ─── Section system ─────────────────────────────────── */
.px-section {
  padding: 88px 24px;
}
.px-section-alt { background: var(--surface); }
.px-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.px-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 14px;
}
.px-tag::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-light));
  border-radius: 2px;
}
.px-h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.14;
  margin: 0 0 16px;
}
.px-lead {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 560px;
}
.px-section-header { margin-bottom: 56px; }

/* ─── Buttons ────────────────────────────────────────── */
.px-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.px-btn-primary {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.px-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,100,200,0.4);
  color: #fff;
}
.px-btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text);
}
.px-btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--border-blue);
  transform: translateY(-2px);
  color: var(--text);
}
.px-btn-outline-blue {
  background: transparent;
  border: 1.5px solid var(--border-blue);
  color: var(--blue-light);
}
.px-btn-outline-blue:hover {
  background: rgba(0,160,233,0.08);
  border-color: var(--blue-light);
  transform: translateY(-2px);
  color: var(--blue-light);
}
.px-btn-lg { padding: 17px 36px; font-size: 15px; border-radius: var(--radius-lg); }
.px-btn-sm { padding: 10px 20px; font-size: 12.5px; }

/* ─── Hero (shared base) ─────────────────────────────── */
.px-hero {
  padding: 80px 24px 72px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.px-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.px-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(0,160,233,0.1);
  border: 1px solid rgba(0,160,233,0.22);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 28px;
  animation: px-fade-up 0.5s ease both;
}
.px-hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  animation: px-pulse-dot 2s ease-in-out infinite;
}
.px-hero-title {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin: 0 0 20px;
  animation: px-fade-up 0.55s 0.08s ease both;
}
.px-hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, #4da8ff 0%, var(--blue-light) 50%, #60d0ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: px-shimmer 5s linear infinite;
}
.px-hero-desc {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.72;
  max-width: 580px;
  margin: 0 0 40px;
  animation: px-fade-up 0.55s 0.14s ease both;
}
.px-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: px-fade-up 0.55s 0.2s ease both;
}

/* ─── Trust strip ────────────────────────────────────── */
.px-trust {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.px-trust-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.px-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.px-trust-item:last-child { border-right: none; }
.px-trust-item:hover { background: var(--surface-2); }
.px-trust-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,128,224,0.12);
  border: 1px solid rgba(0,128,224,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--blue-light);
  flex-shrink: 0;
}
.px-trust-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.px-trust-sub {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
}

/* ─── Service cards ──────────────────────────────────── */
.px-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.px-svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.px-svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,68,148,0.06) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.px-svc-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.px-svc-card:hover::after { opacity: 1; }
.px-svc-card-num {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 56px; font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
}
.px-svc-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(0,100,200,0.3);
}
.px-svc-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}
.px-svc-card p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.75;
  margin: 0 0 20px;
}
.px-svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.px-svc-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0,128,224,0.1);
  color: var(--blue-light);
  border: 1px solid rgba(0,128,224,0.18);
}

/* ─── Stats band ─────────────────────────────────────── */
.px-stats {
  padding: 72px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.px-stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.px-stat {
  padding: 44px 32px;
  text-align: center;
  background: var(--surface);
  transition: background 0.2s;
}
.px-stat:hover { background: var(--surface-2); }
.px-stat-val {
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  margin-bottom: 8px;
}
.px-stat-val span {
  background: linear-gradient(130deg, #fff 20%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.px-stat-label {
  font-size: 12.5px;
  color: var(--text-3);
  font-weight: 500;
  line-height: 1.5;
}

/* ─── Process ────────────────────────────────────────── */
.px-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.px-process-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-light), var(--blue-dark));
  opacity: 0.4;
}
.px-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.px-step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-3);
  margin-bottom: 22px;
  position: relative;
  transition: all 0.3s;
}
.px-step-circle .px-step-num {
  position: absolute;
  top: -5px; right: -5px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.px-step.active .px-step-circle {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,100,200,0.35);
}
.px-step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.px-step-desc {
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ─── Leasing highlight ──────────────────────────────── */
.px-leasing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.px-leasing-visual {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.px-leasing-visual::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,128,224,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.px-leasing-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.px-leasing-item:last-child { border-bottom: none; padding-bottom: 0; }
.px-leasing-item:first-child { padding-top: 0; }
.px-leasing-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,204,122,0.12);
  border: 1px solid rgba(0,204,122,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.px-leasing-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.px-leasing-item-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ─── Client types ───────────────────────────────────── */
.px-cibles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.px-cible {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 16px 28px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: default;
}
.px-cible:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}
.px-cible-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,128,224,0.1);
  border: 1px solid rgba(0,128,224,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--blue-light);
  margin: 0 auto 16px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.px-cible:hover .px-cible-icon {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  border-color: transparent;
  color: #fff;
}
.px-cible-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}
.px-cible-desc {
  font-size: 11.5px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ─── Chorus banner ──────────────────────────────────── */
.px-chorus-wrap {
  background: var(--surface);
  padding: 0 24px 88px;
}
.px-chorus-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.px-chorus-card::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,128,224,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.px-chorus-icon {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,68,148,0.35), rgba(0,128,224,0.2));
  border: 1px solid rgba(0,128,224,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--blue-light);
  flex-shrink: 0;
}
.px-chorus-content { flex: 1; position: relative; z-index: 1; }
.px-chorus-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 10px;
}
.px-chorus-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.px-chorus-desc {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
}

/* ─── CTA final ──────────────────────────────────────── */
.px-cta-section {
  padding: 88px 24px;
  background: var(--bg);
}
.px-cta-card {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(135deg, #022060 0%, #003ea8 45%, #005acc 70%, var(--blue-light) 100%);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,60,180,0.35);
}
.px-cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.px-cta-card::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.px-cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.px-cta-card h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.15;
  position: relative; z-index: 1;
}
.px-cta-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 0 0 40px;
  position: relative; z-index: 1;
}
.px-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.px-cta-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  background: #fff;
  color: #003ea8;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.px-cta-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.22);
  color: #003ea8;
}
.px-cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  font-family: inherit;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.px-cta-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-2px);
  color: #fff;
}

/* ─── Form page ──────────────────────────────────────── */
.px-form-page {
  min-height: 80vh;
  padding: 72px 24px 88px;
  background: var(--bg);
}
.px-form-layout {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}
/* Left sidebar */
.px-form-sidebar {
  position: sticky;
  top: 140px;
}
.px-form-sidebar-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 12px;
}
.px-form-sidebar-desc {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0 0 36px;
}
.px-form-reasons {
  list-style: none;
  padding: 0; margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.px-form-reasons li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
.px-form-reasons li::before {
  content: "";
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,204,122,0.12);
  border: 1px solid rgba(0,204,122,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%2300cc7a' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.px-form-reasons li strong {
  font-weight: 700;
  color: var(--text);
}
.px-form-contact-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.px-form-contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.px-form-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color 0.2s;
}
.px-form-contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.px-form-contact-item:hover { color: var(--text); }
.px-form-contact-item i {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(0,128,224,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--blue-light);
  flex-shrink: 0;
}
.px-form-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(0,204,122,0.06);
  border: 1px solid rgba(0,204,122,0.15);
  border-radius: var(--radius-md);
  font-size: 12.5px;
  color: rgba(0,204,122,0.9);
  font-weight: 600;
}
.px-form-badge i { font-size: 14px; flex-shrink: 0; }
/* Right: form card */
.px-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.px-form-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 6px;
}
.px-form-card-sub {
  font-size: 14px;
  color: var(--text-3);
  margin: 0 0 36px;
}
.px-form-card-sub .req { color: #ff6b6b; }
.px-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.px-form-grid .full { grid-column: 1 / -1; }
.px-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.px-field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.04em;
}
.px-field label .req { color: #ff6b6b; margin-left: 2px; }
.px-field input:not([type="checkbox"]),
.px-field select,
.px-field textarea {
  padding: 13px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.px-field input::placeholder,
.px-field textarea::placeholder {
  color: var(--text-3);
}
.px-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(238,244,255,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.px-field select option { background: #0d1829; color: var(--text); }
.px-field input:focus,
.px-field select:focus,
.px-field textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(0,160,233,0.12);
}
.px-field input.error,
.px-field select.error,
.px-field textarea.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255,71,87,0.1);
}
.px-field textarea { min-height: 120px; resize: vertical; line-height: 1.6; }

/* GDPR Checkbox special style */
.px-checkbox-field {
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.px-checkbox-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue-light);
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}
.px-checkbox-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  line-height: 1.55;
  letter-spacing: normal;
}
.px-form-submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.px-form-feedback {
  grid-column: 1 / -1;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.px-form-feedback.success {
  display: block;
  background: rgba(0,204,122,0.1);
  border: 1px solid rgba(0,204,122,0.22);
  color: var(--green);
}
.px-form-feedback.error {
  display: block;
  background: rgba(255,71,87,0.1);
  border: 1px solid rgba(255,71,87,0.22);
  color: var(--red);
}
.px-form-note {
  font-size: 12px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── Events page ────────────────────────────────────── */
.px-events-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.px-event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: stretch;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.px-event-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.px-event-date {
  background: linear-gradient(180deg, var(--blue-dark), #003088);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 8px;
  text-align: center;
  flex-shrink: 0;
}
.px-event-date-month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.px-event-date-day {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin: 2px 0;
}
.px-event-date-year {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.px-event-date.tbc {
  background: var(--surface-2);
  border-right: 1px solid var(--border);
}
.px-event-date.tbc .px-event-date-month,
.px-event-date.tbc .px-event-date-day,
.px-event-date.tbc .px-event-date-year { color: var(--text-3); }
.px-event-date.past { background: rgba(255,255,255,0.04); border-right: 1px solid var(--border); }
.px-event-date.past .px-event-date-month,
.px-event-date.past .px-event-date-day,
.px-event-date.past .px-event-date-year { color: var(--text-3); }
.px-event-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.px-event-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.px-event-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(0,128,224,0.12);
  color: var(--blue-light);
  border: 1px solid rgba(0,128,224,0.18);
}
.px-event-tag.past {
  background: rgba(255,255,255,0.05);
  color: var(--text-3);
  border-color: var(--border);
}
.px-event-tag.tbc {
  background: rgba(255,165,0,0.1);
  color: #ffaa33;
  border-color: rgba(255,165,0,0.2);
}
.px-event-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-3);
}
.px-event-meta-item i { font-size: 11px; color: var(--text-3); }
.px-event-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}
.px-event-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}
.px-event-actions {
  display: flex;
  align-items: center;
  padding: 24px 24px 24px 16px;
  gap: 8px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}
.px-event-card.past .px-event-title,
.px-event-card.past .px-event-desc { opacity: 0.5; }

/* Events CTA card */
.px-events-cta {
  margin-top: 56px;
  background: var(--surface-2);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.px-events-cta-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 10px;
}
.px-events-cta-content p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
}
.px-events-cta-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Divider between sections */
.px-section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.px-section-divider-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.px-section-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ─── FAQ ────────────────────────────────────────────── */
.px-faq { display: flex; flex-direction: column; gap: 1px; }
.px-faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
}
.px-faq-item:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.px-faq-item:last-child  { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.px-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition: background 0.2s;
}
.px-faq-q:hover { background: var(--surface-2); }
.px-faq-q i {
  font-size: 12px;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.px-faq-item.open .px-faq-q i { transform: rotate(180deg); }
.px-faq-a {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.px-faq-item.open .px-faq-a {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .px-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .px-trust-item:nth-child(2) { border-right: none; }
  .px-trust-item:nth-child(3) { border-top: 1px solid var(--border); }
  .px-trust-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .px-leasing { grid-template-columns: 1fr; gap: 40px; }
  .px-cibles-grid { grid-template-columns: repeat(3, 1fr); }
  .px-form-layout { grid-template-columns: 1fr; }
  .px-form-sidebar { position: static; }
  .px-chorus-card { flex-direction: column; gap: 28px; padding: 40px 36px; }
}
@media (max-width: 768px) {
  .px-services-grid { grid-template-columns: 1fr; }
  .px-stats-grid { grid-template-columns: 1fr 1fr; }
  .px-process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .px-process-grid::before { display: none; }
  .px-event-card { grid-template-columns: 72px 1fr; }
  .px-event-actions { display: none; }
  .px-events-cta { flex-direction: column; gap: 28px; padding: 36px 28px; }
  .px-events-cta-actions { flex-direction: row; }
  .px-cta-card { padding: 48px 28px; }
  .px-form-card { padding: 32px 24px; }
  .px-form-grid { grid-template-columns: 1fr; }
  .px-form-grid .full { grid-column: 1; }
}
@media (max-width: 600px) {
  .px-section { padding: 64px 16px; }
  .px-subnav-brand { display: none; }
  .px-cibles-grid { grid-template-columns: repeat(2, 1fr); }
  .px-hero-actions { flex-direction: column; align-items: flex-start; }
  .px-stats-grid { grid-template-columns: 1fr 1fr; }
  .px-process-grid { grid-template-columns: 1fr; }
}
