/* ============================================================
   CSS SITE — Variables & Reset
============================================================ */
:root {
  --gradient-start: #1a0f2e;
  --gradient-end:   #e65c25;
  --gradient-mid:   #c0390e;
  --primary-color:  #c0390e;
  --primary-dark:   #8a2208;
  --secondary-color:#4a1a00;
  --text-light:     #ffffff;
  --text-dark:      #333333;
  --spacing-sm:     0.5rem;
  --spacing-md:     1rem;
  --spacing-lg:     2rem;
  --border-radius:  8px;
  --transition:     all 0.3s ease;
  --white:          #ffffff;
  --orange:         #e65c25;
  --orange-deep:    #c0390e;
  --gold: #e07a3a; /* = orange, alias conservé */
  --gold-light:     rgba(224,122,58,.12);
}

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

body {
  font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: #f5f5f5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
}

p { text-align: left; }

/* =========================
   UTILITAIRES
========================= */
.sr-only { position: absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.hidden  { display: none !important; }
.gradient-bg { background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%); }

/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 50;
}

.main-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
}

.logo img {
  height: 48px;
  width: auto;
  order: 1;
}

.navMenu {
  display: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  order: 2;
}

.navMenu svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.navMenu:hover svg {
  transform: scale(1.1);
}

#navInput { display: none; }

.nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}

.nav a:hover { color: var(--orange-deep); }

.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: var(--orange-deep);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav a:hover::after { width: 100%; }

.close-nav { display: none; }
.fullclose  { display: none; }


/* =========================
   BOUTONS
========================= */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  color: var(--white); padding: 1rem 2rem;
  text-decoration: none; border-radius: var(--border-radius);
  font-weight: 700; font-family: 'Quicksand', sans-serif;
  margin-top: 1rem; transition: var(--transition);
  cursor: pointer; border: none; font-size: 1rem;
}
.cta-button:hover { background: linear-gradient(135deg, var(--gradient-end) 0%, var(--gradient-start) 100%); }
.cta-button--light   { background: white; color: var(--primary-color); }
.cta-button--light:hover { background: #f5f5f5; }
.cta-button--outline { background: transparent; border: 2px solid white; color: white; }
.cta-button--outline:hover { background: white; color: var(--primary-color); }
.cta-button--gold {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--orange) 100%);
  color: white;
}
.cta-button--gold:hover { background: linear-gradient(135deg, var(--orange) 0%, var(--primary-dark) 100%); }
.cta-button--lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; letter-spacing: .02em; }

/* =========================
   CONTAINER
========================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* =========================
   HERO CONCIERGE
========================= */
.hero-concierge {
  background: linear-gradient(135deg, #1a0f2e 0%, #3d1a08 45%, #c0390e 100%);
  color: white;
  padding: 130px 24px 90px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Motif losanges dorés */
.hero-concierge::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(45deg,  rgba(230,92,37,.06) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(230,92,37,.06) 25%, transparent 25%),
    linear-gradient(45deg,  transparent 75%, rgba(230,92,37,.06) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(230,92,37,.06) 75%);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Halo orange */
.hero-concierge::after {
  content: '';
  position: absolute;
  right: -10%; top: -20%;
  width: 70vw; height: 70vw;
  background: radial-gradient(ellipse, rgba(230,92,37,.28) 0%, transparent 65%);
  pointer-events: none;
}

.hero-concierge__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: center;
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 24px;
}

.hero-concierge__eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.25rem;
}
.hero-concierge__eyebrow::before {
  content: ''; display: block;
  width: 22px; height: 2px;
  background: var(--orange); border-radius: 2px;
}

.hero-concierge h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1; color: white; text-align: left;
  margin-bottom: 1.25rem;
}
.hero-concierge h1 em {
  font-style: normal; color: var(--orange);
}

.hero-concierge__lead {
  font-size: 1rem; line-height: 1.8;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem; text-align: left;
}

.hero-concierge__actions {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: .5rem;
}

/* Stats */
.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat__value {
  display: block; font-size: 1.8rem; font-weight: 700;
  color: var(--orange); line-height: 1;
}
.hero-stat__label {
  font-size: .72rem; color: rgba(255,255,255,.5);
  letter-spacing: .06em; text-transform: uppercase; margin-top: .25rem;
}

/* Carte flottante dans le hero */
.hero-concierge__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(230,92,37,.25);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(12px);
}

.hero-card__title {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.25rem; display: block;
}

.hero-service-list {
  list-style: none; display: flex; flex-direction: column; gap: .85rem;
}
.hero-service-list li {
  display: flex; align-items: center; gap: .9rem;
  font-size: .9rem; color: rgba(255,255,255,.8); font-weight: 500;
}
.hero-service-list li svg {
  flex-shrink: 0; width: 36px; height: 36px;
  background: rgba(230,92,37,.15);
  border: 1px solid rgba(230,92,37,.3);
  border-radius: 10px; padding: 7px;
  stroke: var(--orange); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.hero-card__cta {
  margin-top: 1.75rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.hero-card__cta p {
  font-size: .78rem; color: rgba(255,255,255,.45);
  margin-bottom: .6rem; text-align: center;
}

/* =========================
   SECTIONS COMMUNES
========================= */
.section { padding: 80px 0; }
.section--alt  { background: white; }
.section--dark {
  background: linear-gradient(135deg, #1a0f2e 0%, #3d1a08 60%, #8a2208 100%);
  color: white;
}
.section--gold { background: linear-gradient(135deg, #1a0f2e 0%, #5a1e06 50%, #c0390e 100%); color: white; }

.section__eyebrow {
  display: block; text-align: center;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gradient-end); margin-bottom: .75rem;
}
.section--dark  .section__eyebrow,
.section--gold  .section__eyebrow { color: var(--orange); }
.section--dark  .section__eyebrow { color: var(--orange); }

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center; margin-bottom: .75rem;
  color: var(--text-dark);
}
.section--dark .section__title,
.section--gold .section__title { color: white; }

.section__divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  border-radius: 2px; margin: 0 auto .75rem;
}
.section--gold .section__divider { background: linear-gradient(90deg, var(--orange-deep), var(--orange)); }

.section__lead {
  text-align: center; color: #666;
  max-width: 640px; margin: 0 auto 3.5rem;
  font-size: .95rem; line-height: 1.75;
}
.section--dark .section__lead,
.section--gold .section__lead { color: rgba(255,255,255,.62); }

/* =========================
   SERVICES — grille 2×2
========================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2.25rem 2rem;
  border: 1px solid #eee;
  display: flex; gap: 1.5rem;
  align-items: flex-start;
  transition: box-shadow .3s, transform .3s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover::after  { transform: scaleX(1); }
.service-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.09);
  transform: translateY(-4px);
}

.service-card__icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex; align-items: center; justify-content: center;
}
.service-card__icon svg {
  width: 28px; height: 28px;
  stroke: white; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.service-card__body h3 { font-size: 1.05rem; text-align: left; margin-bottom: .6rem; color: var(--text-dark); }
.service-card__body p  { font-size: .87rem; color: #666; line-height: 1.7; text-align: left; }

.service-card__tag {
  display: inline-block; margin-top: .75rem;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gradient-end);
  background: rgba(230,92,37,.08);
  border-radius: 100px; padding: .25em .8em;
}

/* =========================
   PARTENARIAT — 3 étapes
========================= */
.steps-list { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; }

.step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 1.5rem; align-items: flex-start;
  position: relative; padding-bottom: 2.25rem;
}
.step:last-child { padding-bottom: 0; }
.step:not(:last-child)::before {
  content: ''; position: absolute;
  left: 27px; top: 56px; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}
.step__num {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: white;
  box-shadow: 0 4px 16px rgba(192,57,14,.4);
  z-index: 1;
}
.step__content { padding-top: .75rem; }
.step__content h3 { font-size: 1rem; text-align: left; color: white; margin-bottom: .4rem; }
.step__content p  { font-size: .87rem; color: rgba(255,255,255,.62); line-height: 1.65; text-align: left; }

/* =========================
   AVANTAGES — badges
========================= */
.badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.badge-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(230,92,37,.25);
  border-radius: 14px; padding: 1.75rem 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: background .25s, transform .25s;
  backdrop-filter: blur(6px);
}
.badge-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.badge-card__icon {
  flex-shrink: 0; width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(230,92,37,.15);
  display: flex; align-items: center; justify-content: center;
}
.badge-card__icon svg {
  width: 22px; height: 22px;
  stroke: var(--orange); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.badge-card h3 { font-size: .95rem; text-align: left; color: white; margin-bottom: .3rem; }
.badge-card p  { font-size: .83rem; color: rgba(255,255,255,.58); line-height: 1.6; text-align: left; }

/* =========================
   TESTIMONIAL / QUOTE
========================= */
.quote-block {
  max-width: 760px; margin: 0 auto;
  text-align: center; padding: 3rem 2rem;
}
.quote-block__icon {
  font-size: 3.5rem; line-height: 1;
  color: var(--orange); margin-bottom: 1.25rem; display: block;
}
.quote-block p {
  font-size: 1.15rem; font-weight: 500;
  color: white; line-height: 1.7;
  text-align: center; font-style: italic;
}
.quote-block cite {
  display: block; margin-top: 1.25rem;
  font-size: .82rem; color: rgba(255,255,255,.5);
  letter-spacing: .08em; text-transform: uppercase;
  font-style: normal;
}

/* =========================
   FORMULAIRE PARTENARIAT
========================= */
.partner-section { padding: 80px 0; background: white; }
.partner-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}

.partner-info h2 { font-size: clamp(1.5rem,3vw,2rem); text-align:left; color:var(--text-dark); margin-bottom:1.25rem; }
.partner-info p   { font-size:.9rem; color:#666; line-height:1.75; margin-bottom:1rem; }

.partner-info__list { list-style:none; margin:1.5rem 0; }
.partner-info__list li {
  display:flex; align-items:center; gap:.75rem;
  font-size:.9rem; color:var(--text-dark);
  margin-bottom:.75rem; font-weight:500;
}
.partner-info__list li::before {
  content:''; flex-shrink:0;
  width:20px; height:20px; border-radius:50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2.5 7l3.5 3.5 5.5-6' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 14px 14px;
}

.partner-contact {
  margin-top:2rem; padding:1.25rem 1.5rem;
  background:#f9f9f9; border-radius:12px;
  border-left:4px solid var(--orange);
}
.partner-contact p { font-size:.85rem; color:#555; margin-bottom:.4rem; text-align:left; }
.partner-contact a { color:var(--primary-color); text-decoration:none; font-weight:600; }
.partner-contact a:hover { text-decoration:underline; }

.partner-form {
  background:#f9f9f9; border-radius:16px;
  padding:2rem; border:1px solid #eee;
  box-shadow:0 4px 16px rgba(0,0,0,.06);
}
.partner-form h3 { font-size:1.1rem; text-align:left; color:var(--text-dark); margin-bottom:1.5rem; }

.form-group { margin-bottom:1.1rem; }
.form-group label {
  display:block; font-size:.82rem; font-weight:600;
  color:#555; margin-bottom:.4rem;
  text-transform:uppercase; letter-spacing:.05em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width:100%; padding:.75rem 1rem;
  border:1px solid #ddd; border-radius:var(--border-radius);
  font-family:'Quicksand',sans-serif; font-size:.9rem;
  color:var(--text-dark); background:white;
  transition:border-color .2s, box-shadow .2s; outline:none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(230,92,37,.15);
}
.form-group textarea { resize:vertical; min-height:110px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-submit { width:100%; text-align:center; justify-content:center; margin-top:.5rem; }

/* =========================
   SITE FOOTER
========================= */
.site-footer {
  background: linear-gradient(135deg, #1a0f2e 0%, #e65c25 100%);
  color: rgba(255,255,255,0.75);
  padding: 56px 24px 24px;
  font-size: 0.875rem;
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.site-footer .footer-brand img {
  height: 42px; width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  display: block;
}
.site-footer .footer-brand p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  text-align: left;
}
.site-footer .footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.site-footer .footer-contact a:hover { color: #e65c25; }
.site-footer .footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.site-footer .footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
}
.site-footer .footer-col ul li {
  margin-bottom: 10px;
}
.site-footer .footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.site-footer .footer-col a:hover { color: white; }
.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.site-footer .footer-bottom strong { color: rgba(255,255,255,0.55); }
@media (max-width: 768px) {
  .site-footer .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .site-footer .footer-top { grid-template-columns: 1fr; }
  .site-footer .footer-bottom { flex-direction: column; text-align: center; }
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
.anim-fade-up { opacity:0; animation:fadeUp .7s ease forwards; }
.anim-delay-1 { animation-delay:.1s; }
.anim-delay-2 { animation-delay:.25s; }
.anim-delay-3 { animation-delay:.4s; }
.anim-delay-4 { animation-delay:.55s; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1024px) {
  .badges-grid { grid-template-columns:1fr 1fr; }
  .hero-concierge__inner { grid-template-columns:1fr; }
  .hero-concierge { min-height:auto; padding:110px 24px 60px; }
}

@media (max-width: 768px) {
  .navMenu { display: block; }

  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: white;
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #navInput:checked ~ .nav { display: flex; }

  .nav ul {
    flex-direction: column;
    gap: 32px;
    font-size: 1.2rem;
  }

  .close-nav { display: list-item; }

  .fullclose { display: block; }

  .close {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--orange-deep);
    font-weight: 600;
  }

  .close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .services-grid { grid-template-columns: 1fr; }
  .partner-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width:640px) {
  .badges-grid  { grid-template-columns:1fr; }
  .hero-stats   { flex-wrap:wrap; gap:1.25rem; }
  .form-row     { grid-template-columns:1fr; }
  .hero-concierge__actions { flex-direction:column; }
  .hero-concierge__actions .cta-button { text-align:center; }
  .service-card { flex-direction:column; }
}
/* =========================
   PRICING CARDS
========================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pricing-card {
  background: white;
  border-radius: 20px;
  border: 1px solid #eee;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
  position: relative;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.pricing-card--featured { border: 2px solid var(--orange); }
.pricing-card__badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-dark), var(--orange));
  color: white; font-size: .65rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .3rem 1.1rem; border-radius: 0 0 10px 10px;
  white-space: nowrap;
}
.pricing-card__head {
  padding: 2rem 1.75rem 1.5rem;
  background: linear-gradient(135deg, #1a0f2e 0%, #3d1a08 100%);
  color: white; text-align: center;
}
.pricing-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(230,92,37,.2);
  border: 1px solid rgba(230,92,37,.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.pricing-card__icon svg {
  width: 26px; height: 26px;
  stroke: var(--orange); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.pricing-card__name { font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: .35rem; text-align: left; }
.pricing-card__sub  { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.5; text-align: left; }
.pricing-card__price {
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.pricing-card__rates { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .5rem; }
.pricing-card__rate {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .82rem; color: rgba(255,255,255,.75);
}
.pricing-card__rate strong { color: var(--orange); font-size: 1rem; }
.pricing-card__minimum {
  font-size: .7rem; color: rgba(255,255,255,.4);
  letter-spacing: .06em; text-transform: uppercase; margin-top: .35rem;
}
.pricing-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .87rem; color: #555; padding: .5rem 0;
  border-bottom: 1px solid #f5f5f5; line-height: 1.45;
}
.pricing-features li span {
  flex: 1;
  min-width: 0;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: ''; flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2.5 7l3.5 3.5 5.5-6' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
}

/* =========================
   SIMULATEUR
========================= */
.simulator-section { padding: 80px 0; background: white; }
.simulator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2.5rem;
}
.simulator-form-panel {
  background: #f9f9f9;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #eee;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.simulator-form-panel h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 1.5rem; text-align: left; }

.vehicle-selector { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.25rem; }
.vehicle-option {
  display: flex; align-items: center; gap: 1rem;
  padding: .9rem 1rem;
  border: 2px solid #e5e5e5; border-radius: 12px;
  cursor: pointer; background: white;
  transition: border-color .2s, box-shadow .2s; position: relative;
}
.vehicle-option:hover { border-color: var(--orange); }
.vehicle-option.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(230,92,37,.12);
  background: rgba(230,92,37,.03);
}
.vehicle-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.vehicle-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, #1a0f2e, #c0390e);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vehicle-icon svg {
  width: 22px; height: 22px;
  stroke: white; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.vehicle-info { flex: 1; }
.vehicle-name { font-weight: 700; font-size: .92rem; color: var(--text-dark); display: block; margin-bottom: .15rem; }
.vehicle-rates { font-size: .76rem; color: #888; }
.vehicle-min {
  font-size: .7rem; font-weight: 600; color: var(--orange);
  background: rgba(230,92,37,.08); border-radius: 20px; padding: .2rem .6rem; white-space: nowrap;
}
.vehicle-check {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid #ddd;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; flex-shrink: 0;
}
.vehicle-option.active .vehicle-check { background: var(--orange); border-color: var(--orange); }
.vehicle-option.active .vehicle-check::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: white; display: block;
}

.address-input-wrapper { position: relative; }
.address-input-wrapper svg {
  position: absolute; left: .9rem; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; stroke: var(--orange); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; pointer-events: none;
}
.address-input-wrapper input {
  width: 100%; padding: .75rem 1rem .75rem 2.4rem;
  border: 1px solid #ddd; border-radius: var(--border-radius);
  font-family: 'Quicksand', sans-serif; font-size: .9rem;
  color: var(--text-dark); background: white;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.address-input-wrapper input:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(230,92,37,.15);
}
.route-connector__line {
  width: 2px; height: 24px;
  background: linear-gradient(to bottom, var(--orange), rgba(230,92,37,.2));
  border-radius: 2px; margin: .35rem 0 .35rem 1.6rem;
}

.btn-simulate {
  width: 100%; padding: .9rem;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white; border: none; border-radius: var(--border-radius);
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: opacity .25s, transform .2s;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  margin-top: 1.25rem;
}
.btn-simulate:hover:not(:disabled) { opacity: .9; transform: translateY(-1px); }
.btn-simulate:disabled { opacity: .45; cursor: not-allowed; }
.btn-simulate svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-simulate .spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3); border-top-color: white;
  border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.simulator-result {
  display: none; margin-top: 1.25rem;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(230,92,37,.25);
}
.simulator-result.visible { display: block; animation: fadeUp .4s ease; }
.result-header {
  background: linear-gradient(135deg, #1a0f2e, #3d1a08);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
}
.result-header__label { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); display: block; margin-bottom: .2rem; }
.result-header__vehicle { color: white; font-weight: 700; font-size: .95rem; }
.result-price__from { font-size: .65rem; color: rgba(255,255,255,.4); letter-spacing: .1em; text-transform: uppercase; display: block; }
.result-price__amount { font-size: 2.2rem; font-weight: 700; color: var(--orange); line-height: 1; display: block; }
.result-price__ttc { font-size: .7rem; color: rgba(255,255,255,.35); }
.result-body { background: white; padding: 1.25rem 1.5rem; }
.result-details { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid #f0f0f0; }
.result-detail { display: flex; align-items: center; gap: .5rem; font-size: .84rem; color: #555; }
.result-detail svg { width: 15px; height: 15px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.result-route { font-size: .82rem; color: #888; line-height: 1.6; }
.result-route strong { color: var(--text-dark); }
.result-notice { font-size: .75rem; color: #aaa; margin-top: .75rem; padding-top: .75rem; border-top: 1px solid #f0f0f0; text-align: center; line-height: 1.5; }
.result-cta { margin-top: 1rem; display: flex; gap: .75rem; }
.result-cta a { flex: 1; text-align: center; justify-content: center; padding: .75rem; font-size: .88rem; }

.simulator-map-panel {
  position: sticky; top: 90px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  border: 1px solid #eee; height: 520px;
}
#map { width: 100%; height: 100%; }
.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #f5f5f5, #ebebeb);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem; color: #bbb;
  font-family: 'Quicksand', sans-serif;
}
.map-placeholder svg { width: 56px; height: 56px; stroke: #ccc; fill: none; stroke-width: 1.5; stroke-linecap: round; }
.map-placeholder p { font-size: .9rem; font-weight: 500; }

/* =========================
   FAQ
========================= */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; cursor: pointer;
  font-size: .97rem; font-weight: 600; color: var(--text-dark);
  list-style: none; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold-light); color: var(--orange); font-size: 1.2rem; font-weight: 400;
  display: flex; align-items: center; justify-content: center;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { font-size: .9rem; color: #666; line-height: 1.75; padding-bottom: 1.25rem; text-align: left; }

/* =========================
   ZONES
========================= */
.zones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem; }
.zone-chip { background: white; border: 1px solid #eee; border-radius: 12px; padding: 1.1rem 1rem; text-align: center; transition: border-color .25s, box-shadow .25s; }
.zone-chip:hover { border-color: var(--orange); box-shadow: 0 4px 14px rgba(230,92,37,.12); }
.zone-chip__name { font-weight: 700; font-size: .92rem; color: var(--text-dark); display: block; margin-bottom: .2rem; }
.zone-chip__detail { font-size: .74rem; color: #999; }

/* =========================
   BANDEAU CTA
========================= */
.simulator-band { background: linear-gradient(135deg, #1a0f2e 0%, #3d1a08 50%, #c0390e 100%); padding: 60px 24px; text-align: center; position: relative; overflow: hidden; }
.simulator-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(45deg, rgba(230,92,37,.06) 25%, transparent 25%), linear-gradient(-45deg, rgba(230,92,37,.06) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(230,92,37,.06) 75%), linear-gradient(-45deg, transparent 75%, rgba(230,92,37,.06) 75%);
  background-size: 32px 32px; pointer-events: none;
}
.simulator-band__inner { position: relative; z-index: 1; }
.simulator-band h2 { color: white; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .75rem; }
.simulator-band p  { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 2rem; }
.simulator-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================
   GOOGLE AUTOCOMPLETE
========================= */
.pac-container { font-family: 'Quicksand', sans-serif; border-radius: 10px; border: 1px solid #eee; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.pac-item { padding: .5rem .75rem; font-size: .88rem; }
.pac-item:hover { background: rgba(230,92,37,.06); }
.pac-icon { display: none; }

/* =========================
   RESPONSIVE — TARIFS
========================= */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; margin-left: auto; margin-right: auto; }
  .simulator-wrapper { grid-template-columns: 1fr; }
  .simulator-map-panel { position: static; height: 300px; }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .zones-grid { grid-template-columns: 1fr 1fr; }
  .result-cta { flex-direction: column; }
}

/* =========================
   DISCLAIMER TARIF INDICATIF
========================= */
.pricing-card__disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.5;
  margin: 12px 0 10px;
  font-style: italic;
}

/* =========================
   CARTE PREMIUM
========================= */
.pricing-card--premium {
  border: 1px solid rgba(230, 92, 37, 0.4);
  position: relative;
}

.pricing-card__badge--premium {
  background: linear-gradient(135deg, #b8860b 0%, #e6a817 100%);
  color: #1a0f00;
}

.pricing-card--premium .pricing-card__icon {
  background: rgba(230,92,37,0.15);
}

.pricing-card--premium .pricing-card__icon svg {
  fill: var(--orange);
  stroke: none;
}

.pricing-card__premium-on-request {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 0 4px;
}

.pricing-card__on-request-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.02em;
}

.pricing-card__on-request-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}
