@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --lp-navy: #04173A;
  --lp-navy-soft: #0a2556;
  --lp-navy-deep: #020c24;
  --lp-red: #e40000;
  --lp-red-dark: #c10000;
  --lp-red-soft: #ff8585;
  --lp-bg: #ffffff;
  --lp-bg-soft: #f5f7fb;
  --lp-border: #e3e7ef;
  --lp-text: #04173A;
  --lp-muted: #5a6072;
  --lp-radius: 14px;
  --lp-radius-sm: 10px;
  --lp-shadow: 0 10px 30px -12px rgba(4,23,58,.12);
  --lp-shadow-lg: 0 24px 60px -20px rgba(4,23,58,.2);
}

.lp-wrap,
.lp-wrap *,
.lp-wrap *::before,
.lp-wrap *::after { box-sizing: border-box; }
.lp-wrap { font-family: 'Manrope', system-ui, sans-serif; color: var(--lp-text); line-height: 1.6; font-size: 16px; }
.lp-wrap img { max-width: 100%; height: auto; display: block; }
.lp-wrap p { margin: 0 0 1em; }

.lp-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.lp-section { padding: 56px 0; scroll-margin-top: 24px; }
html { scroll-behavior: smooth; }
.lp-section-alt { background: var(--lp-navy); color: #fff; }
.lp-section-alt h2,
.lp-section-alt h3 { color: #fff; }
.lp-section-alt p { color: rgba(255,255,255,.78); }
.lp-section-alt .lp-section-title em { color: var(--lp-red-soft); }

.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--lp-red); margin-bottom: 14px;
}
.lp-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--lp-red);
}
.lp-section-alt .lp-eyebrow { color: var(--lp-red-soft); }
.lp-section-alt .lp-eyebrow::before { background: var(--lp-red-soft); }

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; color: var(--lp-navy); margin: 0 0 .5em; font-weight: 600; letter-spacing: -.01em; line-height: 1.15; }

.lp-section-title { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 20px; }
.lp-section-title em { font-style: italic; font-weight: 400; color: var(--lp-red); }

/* BOUTONS */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 26px; border-radius: 999px; font-family: 'Manrope', sans-serif;
  font-weight: 600; font-size: 15px; letter-spacing: .01em; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.lp-btn-primary { background: var(--lp-red); color: #fff; }
.lp-btn-primary:hover { background: var(--lp-red-dark); transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(228,0,0,.45); }
.lp-btn-ghost { background: transparent; color: var(--lp-navy); border-color: var(--lp-navy); }
.lp-btn-ghost:hover { background: var(--lp-navy); color: #fff; }
.lp-btn-light { background: #fff; color: var(--lp-navy); }
.lp-btn-light:hover { background: var(--lp-red); color: #fff; }
.lp-section-alt .lp-btn-ghost,
.lp-hero .lp-btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.lp-section-alt .lp-btn-ghost:hover,
.lp-hero .lp-btn-ghost:hover { background: #fff; color: var(--lp-navy); border-color: #fff; }

.lp-btn-icon { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* HERO */
.lp-hero {
  position: relative; background: var(--lp-navy); color: #fff;
  padding: 48px 0 64px;
  overflow: hidden;
}
.lp-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(228,0,0,.18), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(255,255,255,.05), transparent 50%);
  pointer-events: none;
}
.lp-hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px;
  position: relative; z-index: 2;
}
.lp-hero-title {
  font-size: clamp(2.4rem, 5.4vw, 4rem); line-height: 1.05; letter-spacing: -.02em;
  margin-bottom: 22px; color: #fff;
}
.lp-hero-title em { font-style: italic; font-weight: 400; color: var(--lp-red-soft); }
.lp-hero-sub { font-size: 17px; color: rgba(255,255,255,.78); max-width: 560px; margin-bottom: 28px; }
.lp-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.lp-hero-trust {
  display: flex; flex-wrap: wrap; gap: 16px 24px; font-size: 14px; color: rgba(255,255,255,.8);
}
.lp-hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.lp-hero-trust svg { width: 16px; height: 16px; stroke: var(--lp-red-soft); fill: none; stroke-width: 2.5; }

.lp-hero-media {
  position: relative; border-radius: var(--lp-radius); overflow: hidden;
  box-shadow: var(--lp-shadow-lg); aspect-ratio: 4 / 5;
}
.lp-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.lp-hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(4,23,58,.35));
}
.lp-hero-media-tag {
  position: absolute; bottom: 18px; left: 18px; right: 18px; z-index: 2;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  padding: 12px 16px; border-radius: var(--lp-radius-sm);
  font-size: 13.5px; color: var(--lp-navy); font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.lp-hero-media-tag::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--lp-red);
  box-shadow: 0 0 0 4px rgba(228,0,0,.15);
}

/* INTRO */
.lp-intro { position: relative; }
.lp-intro-inner { max-width: 880px; margin: 0 auto; text-align: center; position: relative; }
.lp-intro-mark {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  font-size: 80px; line-height: .6; color: var(--lp-red); opacity: .18;
  display: block; margin-bottom: -8px;
}
.lp-intro-text { font-size: 19px; line-height: 1.75; color: var(--lp-text); }
.lp-intro-text strong { color: var(--lp-navy); font-weight: 600; }
.lp-intro-divider {
  width: 48px; height: 2px; background: var(--lp-red);
  margin: 28px auto 28px;
}
.lp-intro-kpis {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  margin-top: 24px;
}
.lp-kpi { text-align: center; padding: 0 8px; }
.lp-kpi-num {
  font-family: 'Fraunces', serif; font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600; line-height: 1; color: var(--lp-navy);
  margin-bottom: 6px; display: block;
}
.lp-kpi-num em { font-style: italic; font-weight: 400; color: var(--lp-red); }
.lp-kpi-label {
  font-size: 13.5px; letter-spacing: .04em; color: var(--lp-muted);
  display: block;
}
.lp-kpi + .lp-kpi { border-top: 1px solid var(--lp-border); padding-top: 24px; }

/* PRESTATIONS */
.lp-presta-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.lp-presta-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--lp-radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit;
}
a.lp-presta-card { cursor: pointer; }
a.lp-presta-card::after {
  content: ''; position: absolute; bottom: 18px; right: 22px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(228,0,0,.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ff8585' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 5l7 7-7 7'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform .25s ease, background-color .25s ease;
}
a.lp-presta-card:hover::after { transform: translateX(4px); background-color: rgba(228,0,0,.32); }
.lp-presta-card::before {
  content: ''; position: absolute; top: 0; left: 0; height: 3px; width: 0;
  background: var(--lp-red); transition: width .3s ease;
}
.lp-presta-card:hover { transform: translateY(-4px); border-color: var(--lp-red); background: rgba(255,255,255,.07); }
.lp-presta-card:hover::before { width: 100%; }
.lp-presta-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(228,0,0,.15);
  display: grid; place-items: center;
}
.lp-presta-icon svg { width: 22px; height: 22px; stroke: var(--lp-red-soft); fill: none; stroke-width: 2; }
.lp-presta-card h3 { font-size: 1.25rem; margin: 0; color: #fff; }
.lp-presta-card p { font-size: 14.5px; color: rgba(255,255,255,.78); margin: 0; flex: 1; }

/* SPLIT image+text */
.lp-split { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.lp-split-media {
  border-radius: var(--lp-radius); overflow: hidden;
  box-shadow: var(--lp-shadow); aspect-ratio: 4/3;
}
.lp-split-media img { width: 100%; height: 100%; object-fit: cover; }
.lp-split-text h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); }
.lp-split-text h2 em { font-style: italic; font-weight: 400; color: var(--lp-red); }
.lp-section-alt .lp-split-text h2 em { color: var(--lp-red-soft); }
.lp-split-text p { font-size: 16px; }
.lp-split-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.lp-split-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.lp-split-list svg { width: 18px; height: 18px; flex: 0 0 18px; stroke: var(--lp-red); fill: none; stroke-width: 2.5; margin-top: 3px; }
.lp-section-alt .lp-split-list svg { stroke: var(--lp-red-soft); }

/* VILLES */
.lp-dept-label {
  display: inline-block; background: var(--lp-red); color: #fff;
  padding: 8px 18px; border-radius: 999px; font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 28px;
}
.lp-villes-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.lp-ville {
  background: #fff; border: 1px solid var(--lp-border); border-radius: var(--lp-radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  position: relative;
}
.lp-ville:hover { border-color: var(--lp-red); box-shadow: var(--lp-shadow); transform: translateY(-2px); }
.lp-ville-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.lp-ville h3 { font-size: 1.4rem; margin: 0; }
.lp-ville-badge {
  font-size: 12px; font-weight: 600; color: var(--lp-red);
  background: rgba(228,0,0,.08); padding: 4px 10px; border-radius: 999px;
  white-space: nowrap;
}
.lp-ville p { font-size: 14.5px; color: var(--lp-muted); line-height: 1.65; margin: 0; }
.lp-ville p strong { color: var(--lp-navy); font-weight: 600; }
.lp-ville-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--lp-navy); text-decoration: none; font-size: 14px;
  margin-top: auto; padding-top: 6px;
}
.lp-ville-link:hover { color: var(--lp-red); }
.lp-ville-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform .2s; }
.lp-ville-link:hover svg { transform: translateX(4px); }

.lp-section-alt .lp-ville {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
}
.lp-section-alt .lp-ville:hover { border-color: var(--lp-red); background: rgba(255,255,255,.07); }
.lp-section-alt .lp-ville h3 { color: #fff; }
.lp-section-alt .lp-ville p { color: rgba(255,255,255,.78); }
.lp-section-alt .lp-ville p strong { color: #fff; }
.lp-section-alt .lp-ville-link { color: #fff; }
.lp-section-alt .lp-ville-link:hover { color: var(--lp-red-soft); }
.lp-section-alt .lp-ville-badge { background: rgba(228,0,0,.2); color: var(--lp-red-soft); }

/* FAQ */
.lp-faq { max-width: 880px; margin: 0 auto; }
.lp-faq-item {
  background: #fff; border: 1px solid var(--lp-border); border-radius: var(--lp-radius-sm);
  margin-bottom: 12px; overflow: hidden;
  transition: border-color .2s ease;
}
.lp-faq-item[open] { border-color: var(--lp-navy); }
.lp-faq-item summary {
  cursor: pointer; padding: 20px 24px; font-weight: 600; color: var(--lp-navy);
  font-size: 16px; list-style: none; position: relative;
  padding-right: 52px; line-height: 1.4;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: ''; position: absolute; right: 24px; top: 50%;
  width: 12px; height: 12px; border-right: 2px solid var(--lp-red);
  border-bottom: 2px solid var(--lp-red); transform: translateY(-75%) rotate(45deg);
  transition: transform .25s ease;
}
.lp-faq-item[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.lp-faq-body { padding: 0 24px 22px; color: var(--lp-muted); font-size: 15px; line-height: 1.7; }
.lp-faq-body p { color: var(--lp-muted); margin: 0 0 1em; }
.lp-faq-body p:last-child { margin-bottom: 0; }
.lp-faq-body a { color: var(--lp-red); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }

/* BREADCRUMBS (Rank Math via [wecomm_breadcrumb]) */
.lp-breadcrumbs { background: var(--lp-bg-soft); border-bottom: 1px solid var(--lp-border); padding: 11px 0; font-size: 13.5px; color: var(--lp-muted); }
.lp-breadcrumbs .lp-container { line-height: 1.5; }
.lp-breadcrumbs p, .lp-breadcrumbs ol, .lp-breadcrumbs ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; align-items: center; }
.lp-breadcrumbs li { display: inline-flex; align-items: center; }
.lp-breadcrumbs a { color: var(--lp-navy); text-decoration: none; transition: color .2s ease; }
.lp-breadcrumbs a:hover { color: var(--lp-red); text-decoration: underline; text-underline-offset: 3px; }
.lp-breadcrumbs .separator { margin: 0 8px; opacity: .45; }
.lp-breadcrumbs .last, .lp-breadcrumbs [aria-current="page"] { color: var(--lp-text); font-weight: 600; }

/* CTA FINAL */
.lp-cta-final {
  text-align: center; padding: 72px 24px;
  background: var(--lp-navy) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'%3E%3Cpath d='M30 0l4 18 18 4-18 4-4 18-4-18-18-4 18-4z'/%3E%3C/g%3E%3C/svg%3E");
  color: #fff; border-radius: var(--lp-radius-sm);
}
.lp-cta-final h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 14px; }
.lp-cta-final h2 em { font-style: italic; font-weight: 400; color: var(--lp-red-soft); }
.lp-cta-final p { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto 28px; font-size: 16px; }
.lp-cta-final-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* CTA BANNER */
.lp-cta-banner {
  background: var(--lp-navy); color: #fff;
  border-radius: var(--lp-radius); padding: 36px 28px;
  display: grid; gap: 20px; text-align: center;
  position: relative; overflow: hidden;
}
.lp-cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 90% 0%, rgba(228,0,0,.22), transparent 55%);
  pointer-events: none;
}
.lp-cta-banner > * { position: relative; }
.lp-cta-banner h3 {
  color: #fff; font-size: clamp(1.35rem, 3vw, 1.7rem); margin: 0 0 8px;
}
.lp-cta-banner h3 em { font-style: italic; font-weight: 400; color: var(--lp-red-soft); }
.lp-cta-banner p { color: rgba(255,255,255,.8); margin: 0; font-size: 15px; }
.lp-cta-banner-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ANIMATIONS */
.lp-animate { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.lp-animate.lp-in { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (min-width: 768px) {
  .lp-section { padding: 80px 0; }
  .lp-hero { padding: 56px 0 80px; }
  .lp-hero-grid { grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; }
  .lp-presta-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-villes-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-intro-kpis { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .lp-kpi { padding: 0 24px; }
  .lp-kpi + .lp-kpi { border-top: 0; border-left: 1px solid var(--lp-border); padding-top: 0; }
  .lp-split { grid-template-columns: 1fr 1fr; gap: 56px; }
  .lp-split.lp-split-rev .lp-split-media { order: 2; }
  .lp-cta-banner { grid-template-columns: 1fr auto; text-align: left; padding: 40px 44px; gap: 32px; align-items: center; }
  .lp-cta-banner-actions { justify-content: flex-end; flex-wrap: nowrap; }
}
@media (min-width: 1024px) {
  .lp-presta-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-villes-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .lp-animate { opacity: 1; transform: none; transition: none; }
  .lp-btn, .lp-presta-card, .lp-ville { transition: none; }
}