/* =====================================================================
   ShowRide — Landing Page Styles
   ===================================================================== */

:root {
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --brand-light: #eff6ff;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --border: #e5e7eb;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Nav --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 14px;
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--brand);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
}

.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-block { display: block; width: 100%; text-align: center; }

.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }

.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

.btn-ghost { background: transparent; color: var(--brand); }
.btn-ghost:hover { background: var(--brand-light); }

.btn-white { background: #fff; color: var(--brand); }
.btn-white:hover { background: #f1f5f9; }

/* --- Badge --- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* --- Hero --- */
.hero {
  padding: 80px 0 60px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand), #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-trust {
  font-size: 13px;
  color: var(--text-light);
}

/* Widget preview */
.widget-preview {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.wp-header {
  background: var(--brand);
  color: #fff;
  padding: 16px 20px;
}

.wp-header h3 { font-size: 16px; font-weight: 600; }

.wp-body {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.wp-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.15s;
}

.wp-card span { font-size: 24px; }
.wp-card .wp-card-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.wp-card strong { font-size: 14px; }
.wp-card small { color: var(--text-light); font-size: 12px; }

.wp-card-active {
  border-color: var(--brand);
  background: var(--brand-light);
}

/* --- Section --- */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-light);
  margin-top: 8px;
  font-size: 16px;
}

/* --- Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.15s;
}

.feature-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.step {
  text-align: center;
  padding: 24px;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--text-light); }

.embed-example {
  max-width: 600px;
  margin: 0 auto;
}

.embed-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.embed-example pre {
  background: #1e293b;
  color: #a5f3fc;
  padding: 20px;
  border-radius: var(--radius);
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.5;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.pricing-toggle {
  display: inline-flex;
  margin: 0 auto 32px;
  padding: 4px;
  background: #f1f5f9;
  border-radius: 999px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.pricing-toggle .toggle-btn {
  border: 0;
  background: transparent;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s, color .15s;
  position: relative;
}
.pricing-toggle .toggle-btn.is-active {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.pricing-toggle .toggle-badge {
  display: inline-block;
  margin-left: 6px;
  background: #10b981;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  vertical-align: middle;
}
.price-from {
  font-size: 12px;
  color: var(--text-light);
  margin: -12px 0 16px;
}

.price-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.price {
  font-size: 40px;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 20px;
}

.price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
}

.price-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.price-card li {
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid #f3f4f6;
}

.price-card-popular {
  border-color: var(--brand);
  box-shadow: 0 8px 30px rgba(37,99,235,0.12);
  transform: scale(1.04);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* --- CTA --- */
.cta {
  background: var(--brand);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.cta h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.cta p { font-size: 17px; opacity: 0.9; margin-bottom: 24px; max-width: 720px; margin-left:auto; margin-right:auto; }

.cta-dark { background: #0F172A; color: #fff; }
.cta-dark h2 { color: #fff; }
.cta-dark .btn-primary { background: var(--brand); color: #fff; }
.cta-dark .btn-primary:hover { background: var(--brand-dark); }
.cta-secondary { margin-top: 16px; font-size: 14px; }
.cta-secondary a { color: rgba(255,255,255,0.85); text-decoration: underline; }
.cta-secondary a:hover { color: #fff; }

/* --- Problem section --- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.problem-ico { color: var(--brand); margin-bottom: 12px; display: block; }
.problem-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.problem-card p { font-size: 14px; color: var(--text-light); line-height: 1.5; }

/* --- Features grid 3x3 + unique pill --- */
.features-grid-3 { grid-template-columns: repeat(3, 1fr); }
.feature-card { position: relative; }
.feature-icon { color: var(--brand); display: inline-flex; }
.feature-card-unique { border-color: var(--brand); background: linear-gradient(180deg, var(--brand-light), #fff 60%); }
.unique-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 999px;
}

/* --- Pricing checkmark --- */
.price-card li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-card .check { color: var(--brand); flex-shrink: 0; }
.pricing-note {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* --- ROI calculator --- */
.roi-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.roi-field { margin-bottom: 20px; }
.roi-field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.roi-field input[type=range] { width: 100%; accent-color: var(--brand); }
.roi-field output { display: inline-block; margin-top: 6px; font-size: 14px; color: var(--brand); font-weight: 700; }
.roi-results {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.roi-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.roi-line:last-of-type { border-bottom: none; }
.roi-line strong { font-size: 16px; }
.roi-line-final { padding: 16px 0 20px; }
.roi-line-final span { font-weight: 600; font-size: 15px; }
.roi-line-final strong { font-size: 28px; color: var(--brand); font-weight: 800; }

/* --- FAQ --- */
.container-narrow { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 4px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  position: relative;
  padding-right: 28px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--brand);
  transition: transform .15s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Widget preview icon (replace emoji) --- */
.wp-card .wp-ico { color: var(--brand); flex-shrink: 0; }

/* --- Widget mockup enrichment --- */
.wp-stage {
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.wp-screen {
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* Ensure hidden attribute wins over display:flex */
[data-screen][hidden] {
  display: none !important;
}
.wp-step {
  padding: 10px 20px 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.wp-step-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 0;
}
.wp-step-row .wp-step { padding: 0; }
.wp-back {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.wp-back:hover { color: var(--brand); }
.wp-section-title {
  padding: 6px 20px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.wp-recap {
  padding: 6px 20px 8px;
  font-size: 12px;
  color: var(--text-light);
}

/* Card buttons reset (motos) */
.wp-card {
  width: 100%;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  background: #fff;
}
.wp-card:hover:not(.wp-card-active) {
  border-color: var(--brand);
}

/* Events list (step 2) */
.wp-events {
  padding: 0 16px;
  display: grid;
  gap: 8px;
}
.wp-event {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.wp-event:hover:not(.wp-event-active) { border-color: var(--brand); }
.wp-event-active {
  border-color: var(--brand);
  background: var(--brand-light);
}
.wp-event-ico { color: var(--brand); flex-shrink: 0; }
.wp-event-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.wp-event-text strong { font-size: 13px; font-weight: 600; color: var(--text); }
.wp-event-text small { font-size: 11px; color: var(--text-light); }

/* FOMO banner (step 3) */
.wp-fomo {
  margin: 8px 16px 8px;
  padding: 6px 10px;
  background: #FFF4E6;
  color: #854F0B;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wp-fomo svg { color: #C2410C; flex-shrink: 0; }

/* Slots */
.wp-slots {
  padding: 0 16px;
  display: grid;
  gap: 8px;
}
.wp-slot {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 12px;
  min-height: 56px;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.wp-slot:hover:not(.wp-slot-disabled):not(.wp-slot-active):not(.wp-slot-active-waitlist) {
  border-color: var(--brand);
}
.wp-slot-time {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.wp-slot-meta {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}
.wp-slot-meta-low {
  color: #C2410C;
  font-weight: 600;
}
.wp-slot-meta-waitlist {
  background: #FAEEDA;
  color: #854F0B;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.wp-slot-active {
  border-color: var(--brand);
  background: var(--brand-light);
}
.wp-slot-active-waitlist {
  border-color: #D97706;
  background: #FFF7ED;
}
.wp-slot-disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  font-weight: 500;
}

.wp-weather {
  margin: 12px 16px 12px;
  padding: 8px 12px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wp-weather svg { color: var(--brand); }
.wp-weather-dual {
  background: #E6F1FB;
  color: #0C447C;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 8px 0;
}
.wp-weather-dual .wp-weather-period {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  padding: 0 10px;
}
.wp-weather-dual .wp-weather-period:first-child {
  border-right: 1px solid rgba(12, 68, 124, 0.18);
}
.wp-weather-dual svg { color: #0C447C; flex-shrink: 0; }
.wp-footer {
  padding: 0 16px 16px;
  margin-top: auto;
}
.wp-cta {
  width: 100%;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, opacity .15s;
}
.wp-cta:hover:not(:disabled) { background: var(--brand-dark); }
.wp-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.wp-cta-outline {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--brand);
}
.wp-cta-outline:hover:not(:disabled) {
  background: var(--brand-light);
}

/* Success screen */
.wp-success {
  padding: 24px 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.wp-success-ico {
  color: #10b981;
  margin: 0 auto 12px;
  display: block;
}
.wp-success h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.wp-success-sub {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.wp-summary {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: left;
  margin-bottom: 12px;
}
.wp-summary > div {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 13px;
  border-bottom: 1px solid #e5e7eb;
}
.wp-summary > div:last-child { border-bottom: none; }
.wp-summary dt {
  color: var(--text-light);
  font-weight: 500;
}
.wp-summary dd {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}
.wp-success-note {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin: 4px 0 12px;
}
.wp-success-ico-brand { color: var(--brand) !important; }

/* --- Mode selector (écran d'accueil widget) --- */
.wp-modes {
  padding: 12px 16px 0;
  display: grid;
  gap: 8px;
}
.wp-mode {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.wp-mode:hover { border-color: var(--brand); background: var(--brand-light); }
.wp-mode-ico { color: var(--brand); flex-shrink: 0; }
.wp-mode-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.wp-mode-text strong { font-size: 13px; font-weight: 600; color: var(--text); }
.wp-mode-text small { font-size: 11px; color: var(--text-light); }
.wp-mode-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 4px;
  vertical-align: 1px;
}

/* --- Demand mode : grille jour × heure --- */
.wp-grid {
  margin: 0 16px;
  display: grid;
  gap: 6px;
}
.wp-grid-head,
.wp-grid-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr 1fr;
  gap: 6px;
  align-items: stretch;
}
.wp-grid-head span {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
  text-align: center;
  padding: 0 0 2px;
}
.wp-grid-hour {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6px;
}
.wp-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 4px;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  font-family: inherit;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.wp-cell:hover:not(:disabled):not(.wp-cell-active) { border-color: var(--brand); }
.wp-cell-label { font-size: 11px; font-weight: 500; color: var(--text); }
.wp-cell-meta { font-size: 10px; color: #C2410C; font-weight: 600; }
.wp-cell-low { background: #FFF4E6; }
.wp-cell-low .wp-cell-label { color: #854F0B; }
.wp-cell-active { border-color: var(--brand); background: var(--brand-light); }
.wp-cell-active .wp-cell-label { color: var(--brand); font-weight: 600; }
.wp-cell-full {
  background: #f3f4f6;
  cursor: not-allowed;
  opacity: 0.5;
}
.wp-cell-full .wp-cell-label { color: #9ca3af; font-size: 10px; }
.wp-grid-hours {
  margin: 8px 16px 0;
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
}

/* --- Request mode : marques --- */
.wp-brands {
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.wp-brand {
  padding: 16px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.wp-brand:hover:not(.wp-brand-active) { border-color: var(--brand); }
.wp-brand-active {
  border-color: var(--brand);
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 600;
}

/* --- Request mode : préférences --- */
.wp-prefs {
  padding: 4px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wp-pref-field { display: flex; flex-direction: column; gap: 4px; }
.wp-pref-label {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.wp-pref-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
  color: var(--text-light);
}
.wp-pref-input svg { color: var(--text-light); flex-shrink: 0; }
.wp-pref-times {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.wp-pref-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  font-family: inherit;
  font-size: 12px;
  color: var(--text);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.wp-pref-time svg { color: var(--text-light); flex-shrink: 0; }
.wp-pref-time:hover:not(.wp-pref-time-active) { border-color: var(--brand); }
.wp-pref-time-active {
  border-color: var(--brand);
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 600;
}
.wp-pref-time-active svg { color: var(--brand); }
.wp-pref-textarea {
  padding: 10px 12px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-alt);
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.4;
}

/* --- Nav muted link (Connexion) --- */
.nav-link-muted {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 0 4px;
  transition: color .15s;
}
.nav-link-muted:hover { color: var(--text); }

/* --- ROI secondary link (matches CTA final style) --- */
.roi-secondary {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
}
.roi-secondary a {
  color: var(--text-light);
  text-decoration: underline;
}
.roi-secondary a:hover { color: var(--brand); }

/* --- Footer --- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer p { font-size: 13px; color: var(--text-light); margin-top: 4px; }

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: none;
}

.footer-links a:hover { color: var(--brand); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .features-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .hero-visual { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .features-grid, .features-grid-3, .steps, .pricing-grid, .problem-grid { grid-template-columns: 1fr; }
  .price-card-popular { transform: none; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .roi-card { grid-template-columns: 1fr; padding: 20px; }
  .section { padding: 56px 0; }
  .section-header h2 { font-size: 26px; }
  .cta h2 { font-size: 24px; }
}
