/* PIX|WEB — generated stylesheet. Edit source modules, then run tools/rebuild_site.py. */


/* --- assets/css/00-tokens.css --- */

/* ─── DESIGN TOKENS ───────────────────────────────────── */
:root {
  --font-ui: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: var(--font-ui);
  --font-accent: var(--font-ui);

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-display: 800;
  --fw-display-strong: 900;

  --color-text: #111111;
  --color-text-soft: #333333;
  --color-muted: #5f6368;
  --color-muted-2: #767676;
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f7f8;
  --color-bg-soft: #f4f4f5;
  --color-bg-dark: #111111;
  --color-border: #e7e7ea;
  --color-border-dark: rgba(255,255,255,0.10);
  --color-blue: #4a90e0;
  --color-purple: #6a5acd;
  --color-accent-2: #8030c0;
  --color-star: #f59e0b;

  /* Aliases de compatibilité */
  --text: var(--color-text);
  --text-soft: var(--color-text-soft);
  --muted: var(--color-muted);
  --muted-2: var(--color-muted-2);
  --white: var(--color-white);
  --bg: var(--color-bg);
  --bg-alt: var(--color-bg-alt);
  --bg-dark: var(--color-bg-dark);
  --border: var(--color-border);
  --blue: var(--color-blue);
  --purple: var(--color-purple);

  --grad: linear-gradient(135deg, #4a90e0 0%, #6a5acd 50%, #8030c0 100%);
  --grad-h: linear-gradient(90deg, #4a90e0 0%, #6a5acd 50%, #8030c0 100%);

  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 10px 24px rgba(0, 0, 0, 0.06);
  --shadow-float: 0 8px 22px rgba(0, 0, 0, 0.18);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-2xl: 28px;
  --radius-pill: 999px;

  --content-max: 1280px;
  --nav-h: 58px;
  --strip-h: 32px;
  --header-offset: calc(var(--nav-h) + var(--strip-h));

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 88px;
  --space-9: 120px;

  --section-x: 36px;
  --section-y: 64px;

  --tr-base: 0.15s ease;
  --tr-slow: 0.25s ease;
  --tr-card: 0.2s ease;
}


/* --- assets/css/01-reset.css --- */

/* ─── RESET / BASE ───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, p, ul, ol, figure {
  margin: 0;
}

img, svg, iframe, video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--tr-base), background-color var(--tr-base), border-color var(--tr-base), opacity var(--tr-base), transform var(--tr-base), box-shadow var(--tr-base);
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color var(--tr-base), background-color var(--tr-base), border-color var(--tr-base), opacity var(--tr-base), transform var(--tr-base), box-shadow var(--tr-base);
}

input, select, textarea {
  font: inherit;
  color: inherit;
}

textarea {
  resize: vertical;
}

ul, ol {
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--purple);
  color: var(--white);
}

:target {
  scroll-margin-top: calc(var(--header-offset) + 12px);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}


/* --- assets/css/02-base.css --- */

/* ─── BASE ───────────────────────────────────────────── */
body {
  background: var(--color-bg);
  color: var(--color-text);
}

.site {
  min-height: 100vh;
}

.grad {
  color: var(--color-blue);
  background: var(--grad-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.skip-link:focus { top: 16px; }

.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.is-hidden { display: none; }


/* --- assets/css/03-layout.css --- */

/* ─── HELPERS ────────────────────────────────────────────── */
.section,
.cta-section,
footer {
  padding-left: var(--section-x);
  padding-right: var(--section-x);
}

.section-inner-pad {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding-left: var(--section-x);
  padding-right: var(--section-x);
}

.section--flush .section-inner-pad {
  padding-left: 0;
  padding-right: 0;
}


/* ─── STRIP ──────────────────────────────────────────────── */
.strip {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  min-height: var(--strip-h);
  background: var(--color-bg-soft);
  border-bottom: 1px solid #e1e1e4;
  padding: 1px var(--section-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--color-text-soft);
  z-index: 250;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }
.strip-dot { font-size: 15px; flex-shrink: 0; }
.strip strong { font-weight: 700; }
.strip-link,
.strip-link-blue {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.strip-link { color: var(--color-text); }
.strip-link-blue { color: var(--color-blue); }

/* ─── SECTIONS ───────────────────────────────────────────── */
.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.section-white { background: #ffffff; }
.section-alt { background: var(--color-bg-alt); }
.section--flush { padding-left: 0; padding-right: 0; }

/* ─── LARGEUR PARTAGÉE ───────────────────────────────────── */
.pw-shell,
.section-inner-pad,
.pw-hero-inner,
.footer-grid,
.footer-bottom {
  width: min(100%, var(--content-max));
  margin-inline: auto;
}


/* --- assets/css/04-typography.css --- */

/* ─── TYPOGRAPHIE GLOBALE ───────────────────────────────── */
body,
p, li, a, button, input, textarea, select, label, small, strong, em, span {
  font-family: var(--font-ui);
  letter-spacing: -0.011em;
}

.nav-logo,
.footer-logo,
.nav-pix,
.nav-web,
.footer-pix,
.footer-web,
.nav-link,
.nav-dropdown-link,
.nav-cta,
.mobile-menu-link,
.mobile-submenu-link,
.mobile-panel-title,
.mobile-panel-back,
.footer-col h4,
.footer-col a,
.footer-brand p,
.footer-bottom,
.btn,
.btn-primary,
.btn-outline,
.btn-outline-white,
.btn-outline-black,
.btn-ghost,
.float-btn,
.strip,
.strip a,
.tag,
.forfait-visual-tag,
.price-note,
.mobile-menu-home,
.mobile-menu-sep,
.portal-note,
.rappel-form-note,
.merci-note,
.pw-card-kicker {
  font-family: var(--font-ui);
}

h1, h2, h3, h4,
.pw-hero-title,
.pw-section-hd h2,
.pw-card-body h3,
.split-divider p,
.faq-q,
.contact-title,
.parrainage-title,
.parrainage-stat-num,
.legal-hero h1,
.legal-side-title,
.legal-section h2,
.pw-hero-price-big,
.forfait-price,
.forfait-creation,
.forfait-creation-dark,
.forfait-visual-simple,
.portal-left h1,
.portal-form-top h2,
.recrutement-left h1,
.recrutement-form-top h2,
.merci-media-title,
.merci-copy h1,
.rappel-copy h1,
.rappel-media-title,
.rappel-form-title,
.contact-side-title,
.contact-form-head h3,
.cta-title,
.projets-title,
.garantie-left h2,
.pw-cta-panel h2 {
  font-family: var(--font-ui);
  letter-spacing: -0.043em;
}

.pw-hero-title,
.portal-left h1,
.recrutement-left h1 {
  font-weight: var(--fw-display);
  line-height: 0.98;
}

.pw-section-hd h2,
.pw-card-body h3,
.split-divider p,
.contact-side-title,
.contact-form-head h3,
.cta-title,
.projets-title,
.garantie-left h2,
.pw-cta-panel h2,
.faq-q,
.parrainage-title,
.contact-title,
.legal-hero h1,
.legal-side-title,
.legal-section h2,
.merci-copy h1,
.rappel-copy h1,
.portal-form-top h2,
.recrutement-form-top h2,
.merci-media-title,
.rappel-media-title,
.rappel-form-title {
  font-weight: var(--fw-display-strong);
  line-height: 1.04;
}

.pw-hero-price-big,
.forfait-price,
.forfait-creation,
.forfait-creation-dark,
.forfait-visual-simple,
.parrainage-stat-num,
.pw-card-price {
  font-weight: var(--fw-display);
  letter-spacing: -0.05em;
}

.pw-hero-eyebrow,
.tag,
.forfait-visual-tag,
.price-note,
.mobile-menu-home,
.mobile-menu-sep,
.footer-col h4,
.pw-card-kicker {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-pix,
.nav-web,
.footer-pix,
.footer-web {
  letter-spacing: -0.025em;
}

.nav-web,
.footer-web {
  font-weight: var(--fw-medium);
}

.nav-links a,
.nav-item > .nav-link,
.nav-dropdown-link,
.nav-cta,
.mobile-menu-link,
.mobile-submenu-link,
.mobile-panel-title,
.mobile-panel-back,
.btn,
.btn-primary,
.btn-outline,
.btn-outline-white,
.btn-outline-black,
.btn-ghost {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.014em;
}

.strip,
.strip a {
  font-size: 13px;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.014em;
}

.pw-section-intro,
.pw-hero-sub,
.footer-brand p,
.footer-col a,
.footer-bottom,
.faq-a,
.contact-card p,
.contact-side-card p,
.parrainage-subtitle,
.parrainage-note,
.rappel-copy p,
.merci-copy p,
.portal-sub,
.recrutement-sub {
  font-size: 15px;
  line-height: 1.68;
  letter-spacing: -0.011em;
}

.footer-col a,
.footer-brand p,
.footer-bottom {
  color: rgba(255,255,255,0.74);
}

.footer-col h4 {
  color: rgba(255,255,255,0.46);
}

.pw-section-hd h2 {
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.06;
  letter-spacing: -1.6px;
  color: var(--color-text);
  margin: 0;
}

.pw-section-intro,
.pw-section-hd p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
}

.pw-card--offer h3,
.pw-card--mini-offer h3 {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--color-text);
  margin: 0;
}

.pw-card--offer p,
.pw-card--mini-offer p {
  font-size: 14px;
  line-height: 1.72;
  color: #616770;
  font-weight: 400;
  margin: 0;
}

.pw-card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(74,144,224,.08);
  border: 1px solid rgba(74,144,224,.14);
  color: #315f9b;
}

.pw-card-price {
  font-size: 18px;
  line-height: 1.2;
  color: var(--color-text);
  text-align: right;
}

.pw-card--mini-offer .pw-card-price {
  font-size: 22px;
  letter-spacing: -1px;
}

.pw-card-price span {
  font-size: 12px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .pw-section-hd h2 {
    font-size: clamp(28px, 4vw, 42px);
  }

  .pw-section-intro,
  .pw-section-hd p {
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .pw-section-hd h2 {
    font-size: clamp(24px, 7vw, 34px);
  }
}


/* --- assets/css/05-buttons.css --- */

/* ─── BUTTON SYSTEM ──────────────────────────────────── */
.btn,
.nav-cta,
.merci-btn,
.rappel-btn,
.portal-btn,
.recrutement-btn,
.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 26px;
  border-radius: 999px;
  font: inherit;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, opacity .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.btn-primary,
.nav-cta,
.merci-btn,
.rappel-btn,
.portal-btn,
.recrutement-btn,
.contact-submit {
  background: var(--grad);
  color: #ffffff;
  border: none;
  box-shadow: 0 6px 16px rgba(74, 144, 224, 0.16);
}

.btn-primary:hover,
.nav-cta:hover,
.merci-btn:hover,
.rappel-btn:hover,
.portal-btn:hover,
.recrutement-btn:hover,
.contact-submit:hover {
  opacity: .92;
  transform: translateY(-1px);
}

.btn-primary:active,
.merci-btn:active,
.rappel-btn:active,
.portal-btn:active,
.recrutement-btn:active,
.contact-submit:active {
  transform: translateY(1px) scale(0.985);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline-black {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid #cfcfd5;
}

.btn-outline-black:hover {
  border-color: var(--color-text);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid #e1e4ea;
}

.btn-ghost:hover {
  border-color: rgba(17,17,17,.24);
  background: rgba(17,17,17,.02);
}

.btn-inline {
  min-height: 40px;
  padding: 9px 16px;
}

.btn-cta-lg { min-height: 44px; padding: 11px 28px; font-size: 14px; }
.btn-cta-xl { min-height: 44px; padding: 11px 30px; font-size: 14px; }

/* ─── BOUTON FLOTTANT ────────────────────────────────────── */
.float-btn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 320;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: var(--shadow-float);
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--tr-base), box-shadow var(--tr-base), opacity var(--tr-base);
}
@media (hover: hover) {
  .float-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.24); }
}
.float-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.float-btn:hover svg { animation: phonering 1.2s ease-in-out; }
@keyframes phonering {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(15deg); }
  30% { transform: rotate(-15deg); }
  45% { transform: rotate(10deg); }
  60% { transform: rotate(-8deg); }
  75% { transform: rotate(4deg); }
  90% { transform: rotate(0deg); }
}
.float-btn::after {
  content: "On vous rappelle";
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(17,17,17,0.95);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}
.float-btn:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }


/* --- assets/css/06-hero.css --- */

/* ─── HERO · COMPOSANT PARTAGÉ ───────────────────────────── */
.pw-hero {
  position: relative;
  margin-top: var(--header-offset);
  background: var(--bg-dark);
  min-height: 570px;
  padding: 80px 36px 88px;
  overflow: hidden;
  isolation: isolate;
}

.pw-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.pw-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pw-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17,17,17,.74) 0%, rgba(17,17,17,.52) 100%),
    linear-gradient(to right, rgba(17,17,17,.68) 0%, rgba(17,17,17,.22) 55%, rgba(17,17,17,.68) 100%);
}

.pw-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 3.5%;
}

.pw-hero-copy {
  width: 100%;
  max-width: 760px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.pw-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--grad);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pw-hero-title {
  font-family: var(--font-ui);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -2px;
  color: #ffffff;
  margin-bottom: 14px;
  word-break: break-word;
}

.pw-hero-sub {
  max-width: 700px;
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.68;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  margin-bottom: 24px;
}

.pw-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pw-hero-price {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.pw-hero-price-big {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 72px;
  letter-spacing: -3px;
  color: var(--blue);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.pw-hero-price-duration {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  margin-top: 6px;
  font-weight: 400;
}

.pw-hero-price-then {
  font-size: 14px;
  color: rgba(255,255,255,0.80);
  font-weight: 600;
  margin-top: 10px;
}

.pw-hero-price-engage {
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  margin-top: 4px;
}

.page-home .pw-hero-overlay {
  background: transparent;
}

.page-home .pw-hero-price {
  justify-self: end;
  width: 240px;
  min-width: 240px;
}


/* --- assets/css/07-sections.css --- */

/* ─── SECTION HEADERS ────────────────────────────────── */
.pw-section-hd {
  max-width: 960px;
  margin: 0 auto 40px;
  padding: 64px 0 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.pw-section-hd--center {
  text-align: center;
}

.pw-section-hd--compact {
  margin-bottom: 32px;
}

.pw-section-hd--plain {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.pw-section-intro {
  max-width: 760px;
  margin-inline: auto;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .pw-section-hd {
    padding: 40px 0 20px;
    gap: 12px;
  }
}


/* --- assets/css/08-cards.css --- */

/* ─── CARD SYSTEM ───────────────────────────────────── */
.pw-card,
.forfait-highlight,
.forfait-main,
.forfait-visual,
.avis-card,
.contact-side-card,
.contact-form-card,
.legal-card,
.legal-side-card,
.merci-card,
.rappel-card,
.portal-card,
.recrutement-card {
  border-radius: 22px;
}

.pw-card-body,
.split-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pw-card-actions,
.forfait-footer,
.forfait-footer-dark {
  margin-top: auto;
}

.pw-card-grid--offers {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pw-card--offer {
  background: #fff;
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
  transition: transform var(--tr-card), box-shadow var(--tr-card), border-color var(--tr-card);
}

@media (hover: hover) {
  .pw-card--offer:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,.09);
  }

  .pw-card--offer:hover .pw-card-media img,
  .pw-card--mini-offer:hover .pw-card-media img {
    transform: scale(1.05);
  }
}

.pw-card-media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #111;
}

.pw-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

.pw-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.30) 100%);
}

.pw-card--offer .pw-card-body {
  padding: 24px 24px 22px;
  gap: 12px;
}

.pw-card-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.pw-card-list {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.pw-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #1f2328;
}

.pw-card-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='7' viewBox='0 0 9 7'%3E%3Cpath d='M1 3.5l2.5 2.5 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"), var(--grad);
  background-repeat: no-repeat;
  background-position: center;
}

.pw-card--offer .pw-card-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.pw-card--offer .btn-primary {
  width: 100%;
}

/* ─── FORFAITS (HOMEPAGE) ────────────────────────────────── */
.forfait-grid {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 328px) minmax(280px, 328px) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}
.forfait-highlight,
.forfait-main {
  border-radius: var(--radius-md);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
  transition: transform var(--tr-card), box-shadow var(--tr-card), border-color var(--tr-card);
  cursor: pointer;
}
.forfait-highlight { background: var(--color-bg-dark); color: #ffffff; }
.forfait-main {
  background: #ffffff;
  border: 1.5px solid var(--color-text);
  position: relative;
  overflow: hidden;
}
.forfait-main::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad);
}
@media (hover: hover) {
  .forfait-highlight:hover,
  .forfait-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0,0,0,.09);
  }
}
.forfait-price {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--color-blue);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.forfait-highlight .forfait-price {
  background: none;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}
.forfait-period {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 400;
  white-space: nowrap;
  align-self: flex-end;
  padding-bottom: 6px;
}
.forfait-highlight .forfait-period { color: rgba(255,255,255,0.74); }
.forfait-creation,
.forfait-creation-dark {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.forfait-creation { color: rgba(255,255,255,0.68); }
.forfait-creation-dark { color: var(--color-blue); }
.forfait-price-wrap { margin: 16px 0 14px; }
.forfait-price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.forfait-engage { font-size: 11px; color: var(--color-muted-2); margin-top: 6px; }
.forfait-highlight .forfait-engage { color: rgba(255,255,255,0.66); }
.forfait-duration { font-size: 13px; color: rgba(255,255,255,0.88); margin-top: 4px; font-weight: 400; }
.forfait-then { font-size: 13px; color: rgba(255,255,255,0.78); font-weight: 600; margin-top: 8px; }
.forfait-sans-engage,
.forfait-sans-engage-dark {
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}
.forfait-sans-engage { color: #ffffff; }
.forfait-sans-engage-dark { color: var(--color-text); margin-top: 4px; }
.forfait-footer,
.forfait-footer-dark {
  margin-top: 24px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.forfait-footer { border-top: 1px solid rgba(255,255,255,0.10); }
.forfait-footer-dark { border-top: 1px solid var(--color-border); }
.forfait-cta { flex: 0 0 auto; padding: 13px 32px; }
.include-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex-grow: 1;
}
.include-list li {
  font-size: 13px;
  color: var(--color-text-soft);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.38;
}
.include-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='7' viewBox='0 0 9 7'%3E%3Cpath d='M1 3.5l2.5 2.5 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"), var(--grad);
  background-repeat: no-repeat;
  background-position: center;
}
.forfait-highlight .include-list li { color: rgba(255,255,255,0.80); }
.forfait-highlight .include-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='7' viewBox='0 0 9 7'%3E%3Cpath d='M1 3.5l2.5 2.5 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"), linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
  background-repeat: no-repeat;
  background-position: center;
}

.forfait-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease .1s, transform .65s ease .1s, box-shadow var(--tr-card);
  cursor: pointer;
}
.fade-up.visible .forfait-visual { opacity: 1; transform: none; }
.forfait-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}
@media (hover: hover) {
  .forfait-visual:hover img { transform: scale(1.05); }
}
.forfait-visual-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,20,.85) 0%, rgba(10,10,20,.60) 60%, rgba(10,10,20,.40) 100%), linear-gradient(to bottom, rgba(10,10,20,.60) 0%, transparent 40%, transparent 55%, rgba(10,10,20,.95) 100%);
}
.forfait-visual-top { position: relative; z-index: 1; padding: 36px 36px 0; max-width: 100%; display: flex; flex-direction: column; gap: 12px; }
.forfait-visual-content { position: relative; z-index: 1; padding: 0 36px 36px; display: flex; flex-direction: column; justify-content: space-between; flex: 1; }
.forfait-visual-simple { margin: 0; font-size: 44px; font-weight: 900; line-height: 1.0; color: #ffffff; letter-spacing: -2px; }
.forfait-visual-text { margin: 0; font-weight: 500; font-size: 17px; color: rgba(255,255,255,0.80); line-height: 1.45; max-width: 100%; }
.forfait-visual-divider { width: 48px; height: 2px; background: rgba(255,255,255,0.50); border-radius: 999px; margin: 0 0 4px; }
.forfait-visual-why { display: flex; flex-direction: column; gap: 18px; }
.forfait-visual-why-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin: 0 0 2px; }
.forfait-visual-why-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
.forfait-visual-why-label { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.94); }
.struck { font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.55); text-decoration: line-through; text-decoration-thickness: 2px; text-align: right; }
.forfait-visual-why-free { font-size: 16px; font-weight: 800; font-family: var(--font-ui); text-align: right; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.forfait-visual .btn-primary { width: fit-content; }
.forfait-visual .forfait-cta { margin-top: 0; }

/* ─── AVIS CLIENTS ───────────────────────────────────────── */
.avis-carousel-section { overflow: hidden; }
.avis-carousel-section .pw-section-hd { margin-bottom: 32px; }
.avis-carousel-outer {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, var(--content-max));
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
.avis-carousel-track-wrap { flex: 1; overflow: hidden; }
.avis-carousel-track { display: flex; gap: 20px; will-change: transform; }
.avis-card {
  flex: 0 0 calc(33.333% - 14px);
  max-width: 380px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--tr-card), box-shadow var(--tr-card), border-color var(--tr-card);
  width: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
@media (hover: hover) {
  .avis-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.09); }
}
.avis-stars { color: var(--color-star); font-size: 18px; letter-spacing: 2px; }
.avis-text { font-size: 14px; color: #44484d; font-weight: 400; line-height: 1.72; font-style: italic; flex: 1; }
.avis-author { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.avis-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 15px;
  color: #ffffff;
  flex-shrink: 0;
}
.avis-name { font-size: 14px; font-weight: 700; color: var(--color-text); }
.avis-job { font-size: 12px; color: var(--color-muted); font-weight: 400; margin-top: 2px; }
.avis-carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,.10);
  background: #fff;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--tr-base), background var(--tr-base), color var(--tr-base), border-color var(--tr-base);
  flex-shrink: 0;
}
.avis-carousel-arrow svg { width: 18px; height: 18px; }
.avis-carousel-arrow:hover { border-color: #4a90e0; background: #4a90e0; color: #fff; transform: scale(1.08); }
.avis-carousel-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}
.avis-carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,.16);
  background: rgba(17,17,17,.12);
  padding: 0;
}
.avis-carousel-dot.is-active {
  width: 24px;
  background: var(--grad);
  border-color: transparent;
}

/* ─── SERVICES+ CAROUSEL ─────────────────────────────────── */
.sp-carousel-section { overflow: hidden; }
.sp-carousel-section .pw-section-hd { margin-bottom: 32px; }
.sp-carousel-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--color-blue); margin-bottom: 14px; }
.sp-carousel-outer { display: flex; align-items: center; gap: 12px; max-width: 100%; margin: 0 auto; padding: 0; }
.sp-carousel-track-wrap { overflow: hidden; flex: 1; }
.sp-carousel-track { display: flex; gap: 20px; will-change: transform; }
.pw-card--mini-offer {
  flex: 0 0 calc(33.333% - 14px);
  max-width: 380px;
  background: #fff;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
  transition: transform var(--tr-card), box-shadow var(--tr-card);
}
@media (hover: hover) {
  .pw-card--mini-offer:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.09); }
}
.pw-card--mini-offer .pw-card-kicker {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(255,255,255,.92);
}
.pw-card--mini-offer .pw-card-body { padding: 24px 24px 22px; gap: 8px; }
.pw-card--mini-offer .pw-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.sp-carousel-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid #e0e0e0; background: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0;
  transition: border-color .2s, background .2s, transform .15s; color: #333;
}
.sp-carousel-arrow svg { width: 18px; height: 18px; }
.sp-carousel-arrow:hover { border-color: #4a90e0; background: #4a90e0; color: #fff; transform: scale(1.08); }
.sp-carousel-footer { text-align: center; margin-top: 32px; }


/* --- assets/css/09-forms.css --- */

/* ─── CONTACT FORM ───────────────────────────────────────── */
.contact-form {
  width: min(100%, 680px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-field label { font-size: 13px; font-weight: 600; color: var(--text); }
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1.5px solid #e0e0e5;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  background: #ffffff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #8a8f98; }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(74,144,224,0.12);
}
.contact-submit { width: 100%; justify-content: center; min-height: 44px; padding: 12px 15px; font-size: 14px; }
.contact-note { text-align: center; font-size: 12px; color: #8e8e95; margin-top: 12px; font-weight: 400; }


/* --- assets/css/10-navigation.css --- */

/* ─── NAVIGATION DESKTOP ─────────────────────────────────── */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 var(--section-x);
  z-index: 300;
  border-bottom: 1px solid transparent;
  transition: background-color var(--tr-slow), border-color var(--tr-slow), backdrop-filter var(--tr-slow);
}
nav.scrolled {
  background: rgba(17, 17, 17, 0.84);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}
.mini-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-right: 9px;
  position: relative;
  top: -2px;
  padding-right: 8px;
}
.mini-grid-row { display: flex; gap: 2px; }
.mini-grid .sq {
  width: 8px;
  height: 7px;
  border-radius: 2px;
}
.sq1 { background: #5ab4ea; position: relative; top: -7px; }
.sq2 { background: #587ee0; }
.sq3 { background: #6358d4; position: relative; top: -1px; }
.sq4 { background: #577ee0; }
.sq5 { background: #6355d0; }
.sq6 { background: #7338be; }
.sq7 { background: #6252c8; }
.sq8 { background: #7335b0; }

.nav-pix {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -1px;
  color: var(--blue);
  background: var(--grad-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-bar {
  width: 2px;
  height: 18px;
  background: #ffffff;
  margin: 0 6px;
  animation: blink 1.2s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.nav-web {
  font-family: var(--font-ui);
  font-weight: 100;
  font-size: 20px;
  letter-spacing: 1px;
  color: #ececec;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover,
.nav-links a.active { color: #ffffff; }

.nav-cta {
  background: var(--grad);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 650;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(74, 144, 224, 0.16);
}
.nav-cta:hover { opacity: .92; transform: translateY(-1px); }
.nav-cta:active { transform: translateY(0); }

/* Dropdown desktop */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: var(--nav-h);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
}
.nav-item > .nav-link:hover,
.nav-item > .nav-link.active,
.nav-item.nav-item--has-dropdown:hover > .nav-link,
.nav-item.nav-item--has-dropdown:focus-within > .nav-link { color: #ffffff; }

.nav-caret {
  width: 12px;
  height: 12px;
  opacity: .85;
  transition: transform var(--tr-base), opacity var(--tr-base);
}
.nav-item--has-dropdown:hover .nav-caret,
.nav-item--has-dropdown:focus-within .nav-caret {
  opacity: 1;
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 10px;
  display: grid;
  gap: 4px;
  background: rgba(17, 17, 17, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 350;
  margin-top: 0;
}
.nav-dropdown--services { min-width: 250px; }
.nav-dropdown--sm { min-width: 190px; }
.nav-dropdown--right { left: auto; right: 0; }
.nav-item--has-dropdown:hover > .nav-dropdown,
.nav-item--has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-item--has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}
.nav-dropdown-link {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 500;
}
.nav-dropdown-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

/* Burger & Mobile Menu */
.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border-radius: 0;
  z-index: 305;
}
.nav-burger-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.nav-burger-bars span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--purple);
  border-radius: 999px;
  transition: transform .28s ease, opacity .22s ease, background-color .22s ease;
}
.nav-burger.open .nav-burger-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open .nav-burger-bars span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open .nav-burger-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  z-index: 301;
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 90vw;
  background: rgba(17, 17, 17, 0.98);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  z-index: 304;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -18px 0 38px rgba(0, 0, 0, 0.22);
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-shell {
  position: relative;
  height: 100%;
  isolation: isolate;
}
.mobile-menu-panel {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.98);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .34s cubic-bezier(.4, 0, .2, 1), opacity .22s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu-panel.is-active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-panel.is-left {
  transform: translateX(-22%);
  opacity: .3;
  pointer-events: none;
}
.mobile-menu-inner { padding: 84px 24px 28px; display: flex; flex-direction: column; gap: 10px; min-height: 100%; }
.mobile-menu-inner--panel { gap: 8px; }
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  z-index: 5;
}
.mobile-menu-close:hover { color: #fff; background: rgba(255,255,255,.08); }
.mobile-menu-home { font-family: var(--font-ui); font-size: 12px; font-weight: 800; letter-spacing: 2.4px; text-transform: uppercase; color: rgba(255,255,255,.56); margin-bottom: 4px; }
.mobile-menu-sep { font-family: var(--font-ui); font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); background: var(--grad-h); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; width: fit-content; margin-top: 4px; margin-bottom: 2px; }
.mobile-menu-link {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.2px;
  color: #fff;
  padding: 10px 0;
}
.mobile-menu-link:hover { color: var(--blue); }
.mobile-menu-link--panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
}
.mobile-panel-arrow,
.mobile-panel-back-icon,
.mobile-caret {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.mobile-panel-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.mobile-panel-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
}
.mobile-panel-back span {
  background: var(--grad-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mobile-panel-back:hover { color: #fff; }
.mobile-panel-back:hover span {
  background: none;
  -webkit-text-fill-color: currentColor;
}
.mobile-panel-title {
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: #fff;
}

/* Ancien accordéon mobile : conservé pour compatibilité sur les autres pages */
.mobile-menu-item {
  display: flex;
  flex-direction: column;
}


.mobile-caret {
  opacity: 0.8;
  transition: transform 0.25s ease;
}

.mobile-menu-item > .mobile-submenu {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  margin-bottom: 8px;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.mobile-menu-item > .mobile-submenu .mobile-submenu-link,
.mobile-menu-panel .mobile-submenu-link {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-item > .mobile-submenu .mobile-submenu-link:hover,
.mobile-menu-panel .mobile-submenu-link:hover {
  color: #fff;
}


/* --- assets/css/11-footer.css --- */

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--bg-dark);
  padding-top: 52px;
  padding-bottom: 28px;
}
.footer-grid {
  width: min(100%, var(--content-max));
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand p {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.46);
  line-height: 1.72;
  margin-top: 14px;
  max-width: 260px;
}
.footer-logo { display: inline-flex; }
.footer-col { display: flex; flex-direction: column; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.78); }
.footer-col a:hover { color: #ffffff; }
.footer-bottom {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.42);
}
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { font-size: 12px; color: rgba(255,255,255,0.44); }
.footer-socials a:hover { color: var(--blue); }


/* --- assets/css/12-utilities.css --- */

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .nav-bar { animation: none !important; opacity: 1; }
}

@media (max-width: 1200px) {
  :root { --section-x: 32px; --section-y: 56px; }
  .pw-hero { min-height: 500px; padding: 64px 32px 72px; }
  .pw-hero-inner { gap: 36px; }
  .pw-card-grid--offers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .forfait-grid { grid-template-columns: 1fr 1fr; }
  .forfait-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; }
}

@media (max-width: 1024px) {
  .nav-caret, .nav-dropdown, .nav-item--has-dropdown::after { display: none !important; }
  .nav-item > .nav-link { pointer-events: none; }
  :root { --section-x: 24px; --section-y: 48px; }
  nav { padding: 0 var(--section-x); }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
  .nav-cta { padding: 7px 15px; font-size: 12.5px; }
  .strip { font-size: 12.5px; padding: 9px var(--section-x); }
  .pw-hero { padding: 48px 32px; min-height: 400px; }
  .pw-hero-inner { grid-template-columns: minmax(0, 1fr); gap: 24px; align-items: flex-start; }
  .pw-hero-price { width: 100%; align-items: flex-start; text-align: left; }
  .pw-hero-title { font-size: clamp(24px, 3.5vw, 36px); }
  .pw-hero-price-big { font-size: 52px; letter-spacing: -2px; }
  .btn { padding: 10px 18px; font-size: 13px; }
  .forfait-grid { gap: 14px; max-width: 100%; }
  .forfait-highlight, .forfait-main { padding: 24px 22px; }
  .forfait-price { font-size: 36px; }
  .parrainage-visual { min-height: auto; }
  .parrainage-img { width: 100%; margin-left: 0; height: 420px; object-fit: cover; }
  .parrainage-overlay { left: 28px; width: min(72%, calc(100% - 56px)); padding: 28px; }
  .parrainage-title { font-size: 30px; }
  .faq-grid { grid-template-columns: 1fr 1fr; gap: 0 32px; }
  .projets-inner { grid-template-columns: 1fr; gap: 36px; }
  .projets-grid { grid-template-columns: 1fr 1fr; }
  .avis-carousel-track { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .cta-section { padding-top: 56px; padding-bottom: 56px; }
  .cta-title { font-size: clamp(24px, 3.5vw, 38px); }
  .pw-card--mini-offer { flex: 0 0 calc(50% - 10px); }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .pw-card--split { grid-template-columns: 1fr !important; }
  .split-media { min-height: 250px; }
  .split-content { padding: 30px 28px; }
  .recap-grid { grid-template-columns: 1fr 1fr; }
  .process-section { padding: 60px 28px; }
  .process-steps { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .page-home .map-wrap { min-height: 500px; }
  .page-home .forfait-price { font-size: 38px; }
  .page-home .hero-cards { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-x: 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .pw-card-grid--offers { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  footer { padding-top: 44px; padding-bottom: 24px; }
}

@media (max-width: 560px) {
  :root { --section-x: 16px; --section-y: 32px; }
  .strip { min-height: 42px; font-size: 11px; justify-content: flex-start; padding: 1px 16px; }
  .strip span { display: inline-flex; align-items: center; gap: 6px; }
  .forfait-highlight, .forfait-main { padding: 20px 18px; }
  .forfait-price { font-size: 38px; }
  .parrainage-overlay { position: static; transform: none; width: 100%; max-width: none; margin-top: -88px; padding: 22px; }
  .parrainage-visual { height: auto; }
  .parrainage-img { height: 320px; }
  .faq-grid { grid-template-columns: 1fr; }
  .projets-grid { grid-template-columns: 1fr; }
  .cta-title { font-size: clamp(22px, 7vw, 30px); }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .quick-grid, .recap-grid, .process-steps { grid-template-columns: 1fr; }
  .process-section { padding: 40px 18px; }
  .pw-hero { min-height: 360px; padding: 40px 18px; }
  .pw-hero-inner { grid-template-columns: minmax(0, 1fr); width: 100%; }
  .pw-hero-price { width: 100%; align-items: flex-start; text-align: left; }
  .pw-hero-title { font-size: clamp(28px, 7vw, 40px); }
  .pw-hero-price-big { font-size: 48px; letter-spacing: -2px; }
  .page-home .map-wrap { min-height: 420px; }
  .page-home .hero-cards { grid-template-columns: 1fr; }
}

/* ─── CONSENTEMENT / COOKIES ─────────────────────────────── */
.cookie-consent {
  position: relative;
  z-index: 1400;
}
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity .24s ease, transform .24s ease;
}
.cookie-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-bar.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
}
.cookie-bar__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 28px 32px;
  background: rgba(255,255,255,.98);
  border-top: 1px solid rgba(17,17,17,.12);
  box-shadow: 0 -18px 50px rgba(0,0,0,.14);
}
.cookie-bar__content {
  max-width: 1120px;
}
.cookie-bar__title {
  margin: 0 0 10px;
  color: #111;
  font-size: 1.1rem;
  font-weight: 800;
}
.cookie-bar__text {
  margin: 0;
  color: rgba(17,17,17,.78);
  font-size: .97rem;
  line-height: 1.7;
}
.cookie-bar__status {
  margin: 12px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(17,17,17,.72);
  font-size: .92rem;
}
.cookie-bar__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a90e0 0%, #8030c0 100%);
  flex: 0 0 auto;
}
.cookie-bar__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}
.cookie-action {
  appearance: none;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  font: inherit;
  font-weight: 700;
  letter-spacing: -.01em;
  padding: 14px 22px;
  min-height: 52px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.cookie-action:hover {
  transform: translateY(-1px);
}
.cookie-action--solid {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #4a90e0 0%, #8030c0 100%);
  box-shadow: 0 10px 26px rgba(74,144,224,.26);
}
.cookie-action--dark {
  background: #111;
  color: #fff;
}
.cookie-action--link {
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding-left: 10px;
  padding-right: 10px;
}
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1450;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.cookie-modal.is-visible,
.cookie-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,8,20,.6);
  backdrop-filter: blur(4px);
}
.cookie-modal__dialog {
  position: relative;
  width: min(760px, calc(100vw - 32px));
  max-height: min(86vh, 920px);
  overflow: auto;
  margin: 48px auto;
  padding: 34px 40px 30px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.cookie-modal__close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(17,17,17,.06);
  color: #111;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.cookie-modal__eyebrow {
  margin: 0 0 10px;
  color: #5c6a7f;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cookie-modal__title {
  margin: 0;
  color: #111;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -.03em;
}
.cookie-modal__intro {
  margin: 14px 0 0;
  color: rgba(17,17,17,.72);
  font-size: 1rem;
  line-height: 1.75;
}
.cookie-pref {
  margin-top: 26px;
  padding: 22px 0;
  border-top: 1px solid rgba(17,17,17,.08);
}
.cookie-pref--muted {
  opacity: .82;
}
.cookie-pref__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}
.cookie-pref h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: 1.2rem;
  font-weight: 800;
}
.cookie-pref p {
  margin: 0;
  color: rgba(17,17,17,.72);
  font-size: .98rem;
  line-height: 1.7;
}
.cookie-pref__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,.14);
  color: #111;
  font-weight: 700;
  background: rgba(17,17,17,.03);
}
.cookie-pref__badge--locked {
  border-color: rgba(74,144,224,.18);
  background: rgba(74,144,224,.08);
}
.cookie-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(17,17,17,.07);
}
.cookie-toggle button {
  appearance: none;
  border: 0;
  min-width: 110px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  color: rgba(17,17,17,.72);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.cookie-toggle button.is-active {
  background: #111;
  color: #fff;
  box-shadow: 0 8px 18px rgba(17,17,17,.18);
}
.cookie-modal__footer {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(17,17,17,.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.cookie-modal__footer a,
.footer-col [data-open-consent] {
  color: rgba(255,255,255,.72);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.cookie-modal__footer a {
  color: #111;
}
.footer-col [data-open-consent] {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.footer-col [data-open-consent]:hover {
  color: #fff;
}
html.has-cookie-modal,
html.has-cookie-modal body {
  overflow: hidden;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 0;
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}
.form-consent--compact {
  margin-top: 16px;
}
.form-consent input[type="checkbox"] {
  margin: 3px 0 0;
  flex: 0 0 auto;
}
.form-consent a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-form-card .form-consent {
  color: #444;
}
.contact-form-card .form-consent a {
  color: #4a90e0;
}
@media (max-width: 1024px) {
  .cookie-bar__inner,
  .cookie-pref__head,
  .cookie-modal__footer {
    grid-template-columns: 1fr;
  }
  .cookie-bar__actions {
    justify-content: flex-start;
  }
}
@media (max-width: 560px) {
  .cookie-bar__inner {
    gap: 18px;
    padding: 20px 16px;
  }
  .cookie-bar__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-action {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .cookie-modal__dialog {
    width: min(100vw - 18px, 760px);
    margin: 10px auto;
    max-height: calc(100vh - 20px);
    padding: 24px 18px 22px;
    border-radius: 22px;
  }
  .cookie-modal__close {
    top: 14px;
    right: 14px;
  }
  .cookie-pref {
    margin-top: 18px;
    padding: 18px 0;
  }
  .cookie-toggle {
    width: 100%;
  }
  .cookie-toggle button {
    min-width: 0;
    width: 50%;
  }
}

.strip span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-col ul {
  min-width: 0;
}
.footer-col li {
  min-width: 0;
}
.footer-col a {
  display: inline-block;
  line-height: 1.55;
}
@media (max-width: 560px) {
  .strip span:last-child {
    display: inline;
  }
}


/* --- assets/css/pages/home.css --- */

/* ─── PARRAINAGE ─────────────────────────────────────────── */
.parrainage-visual {
  position: relative;
  height: 540px;
  overflow: hidden;
}
.parrainage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-left: 15%;
}
.parrainage-overlay {
  position: absolute;
  top: 50%;
  left: 48px;
  transform: translateY(-50%);
  width: min(640px, calc(100% - 96px));
  max-width: 560px;
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: transform var(--tr-card), box-shadow var(--tr-card);
}
@media (hover: hover) {
  .parrainage-overlay:hover {
    transform: translateY(calc(-50% - 4px));
    box-shadow: 0 16px 36px rgba(0,0,0,.22);
  }
}
.parrainage-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin-bottom: 14px;
}
.parrainage-title {
  font-size: 38px;
  letter-spacing: -1.5px;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 6px;
}
.parrainage-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin-bottom: 20px;
}
.parrainage-cards {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.parrainage-stat {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  text-align: center;
}
.parrainage-stat-num {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 15px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.parrainage-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.58);
  margin-top: 3px;
}
.parrainage-note {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  margin-bottom: 24px;
  font-weight: 300;
}
.parrainage-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.parrainage-cta { padding: 13px 28px; }
.parrainage-link {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  font-weight: 600;
}
.parrainage-link:hover { color: #ffffff; }


/* ─── CONTACT SPLIT ─────────────────────────────────────── */
.contact-split {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr);
  gap: 20px;
  align-items: stretch;
}
.contact-side-card,
.contact-form-card {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}
.contact-side-card {
  padding: 34px 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8fb 100%);
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
.contact-side-card--callback {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 12, 31, 0.70) 0%, rgba(13, 17, 43, 0.70) 100%),
    url("../../../images/services-web-site-internet.webp") center right / cover no-repeat;
  color: #ffffff;
  border-color: rgba(255,255,255,.10);
}
.contact-side-card--callback::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,144,224,.18) 0%, rgba(128,48,192,.12) 100%);
  pointer-events: none;
  z-index: -1;
}
.contact-side-card--callback .contact-side-badge {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.20);
  color: #ffffff;
  backdrop-filter: blur(10px);
}
.contact-side-card--callback .contact-side-sub,
.contact-side-card--callback .contact-side-note,
.contact-side-card--callback .contact-side-link {
  color: rgba(255,255,255,.86);
}
.contact-side-card--callback .contact-side-point {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.16);
  color: #ffffff;
  backdrop-filter: blur(10px);
}
.contact-side-card--callback .contact-side-link--static {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  border-radius: 12px;
  min-height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
}
.contact-side-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(74,144,224,.08);
  border: 1px solid rgba(74,144,224,.14);
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.contact-side-title {
  font-size: clamp(32px, 3.4vw, 44px);
  letter-spacing: -1.7px;
  line-height: 1.04;
  margin-bottom: 10px;
}
.contact-side-sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 22px;
}
.contact-side-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.contact-side-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.contact-side-point::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='7' viewBox='0 0 9 7'%3E%3Cpath d='M1 3.5l2.5 2.5 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"), linear-gradient(135deg, #4a90e0 0%, #8030c0 100%);
  background-repeat: no-repeat;
  background-position: center;
}
.contact-side-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-side-cta {
  padding-inline: 26px;
}
.contact-side-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-soft);
}
.contact-side-link:hover {
  color: var(--text);
}
.contact-side-link--static {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}
.contact-side-note {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted-2);
  max-width: 420px;
}
.contact-form-card {
  padding: 28px 28px 24px;
}
.contact-form-head {
  margin-bottom: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form-head h3 {
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -1.3px;
  line-height: 1.06;
  margin-bottom: 8px;
}
.contact-form-head p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 560px;
  margin-inline: auto;
}
.contact-form-card .contact-form {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}
.contact-form-card .contact-note {
  margin-top: 6px;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-grid {
  width: min(100%, 900px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.faq-col { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  gap: 12px;
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--blue);
  transition: transform .25s ease;
}
.faq-a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .30s ease;
  padding: 0;
}
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 16px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ─── MAP ────────────────────────────────────────────────── */
.map-wrap {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 240px;
  background: #ececef;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-note { text-align: center; margin-top: 16px; font-size: 14px; color: var(--muted); font-weight: 400; }

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 72px;
  padding-bottom: 72px;
  text-align: center;
}
.cta-title {
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.08;
}
.cta-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.cta-price { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.cta-detail { font-size: 13px; color: var(--muted); font-weight: 400; margin-bottom: 28px; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ─── DERNIERS PROJETS ───────────────────────────────────── */
.projets-inner {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}
.projets-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.projets-title {
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -1.5px;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 18px;
}
.projets-sub { font-size: 15px; color: #555c64; font-weight: 400; line-height: 1.75; margin-bottom: 12px; }
.projets-cta { display: inline-flex; margin-top: 12px; }
.projets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.projet-card {
  text-decoration: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transition: transform var(--tr-card), box-shadow var(--tr-card), border-color var(--tr-card);
}
@media (hover: hover) {
  .projet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
}
.projet-card-img { position: relative; height: 160px; overflow: hidden; }
.projet-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .4s ease; }
.projet-card:hover .projet-card-img img { transform: scale(1.05); }
.projet-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,144,224,.75) 0%, rgba(128,48,192,.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s ease;
}
.projet-card:hover .projet-card-overlay { opacity: 1; }
.projet-card-btn { font-size: 13px; font-weight: 700; color: #ffffff; border: 1.5px solid rgba(255,255,255,0.72); padding: 8px 16px; border-radius: 6px; }
.projet-card-body { padding: 16px 18px; }
.projet-card-tag { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.projet-card-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.projet-card-url { font-size: 12px; color: #8d939b; font-weight: 400; }


@media (max-width: 1024px) {
  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-side-card,
  .contact-form-card {
    padding: 26px 24px;
  }
}

@media (max-width: 560px) {
  .contact-split {
    gap: 16px;
  }

  .contact-side-card,
  .contact-form-card {
    border-radius: 18px;
    padding: 22px 18px;
  }

  .contact-side-title,
  .contact-form-head h3 {
    font-size: 30px;
  }

  .contact-side-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-side-cta,
  .contact-side-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .contact-side-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #ffffff;
  }

  .contact-side-card--callback .contact-side-link {
    border-color: rgba(255,255,255,.16);
    background: rgba(255,255,255,.10);
    color: #ffffff;
  }
}


/* ─── INDEX · HARMONISATION TITRES / CARTES ─────────────── */
.page-home #forfait.section,
.page-home .sp-carousel-section.section,
.page-home #parrainage.section,
.page-home #faq.section,
.page-home .avis-carousel-section.section,
.page-home #contact.section,
.page-home .section[aria-labelledby="map-title"] {
  padding-top: 0;
}

.page-home .pw-section-hd {
  max-width: 960px;
  margin: 0 auto 32px;
  padding: 48px 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-home #forfait .pw-section-hd {
  margin: 0 auto;
  padding: 64px 0;
  gap: 14px;
  border-bottom: 0;
}

.page-home .pw-section-hd.pw-section-hd--compact {
  margin-bottom: 26px;
  padding: 40px 0 14px;
  gap: 10px;
}

.page-home .pw-section-hd h2,
.page-home .pw-section-hd p {
  margin: 0;
}

.page-home #forfait .pw-section-hd h2 {
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.06;
  letter-spacing: -1.6px;
}

.page-home .pw-section-hd .map-city-pills {
  width: min(100%, 1120px);
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.page-home .map-city-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid rgba(0, 140, 255, .20);
  background:
    linear-gradient(180deg, rgba(6, 12, 22, .92) 0%, rgba(7, 14, 26, .78) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .04),
    0 12px 24px rgba(0, 0, 0, .16);
  color: #d8e1ec;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.1px;
  line-height: 1;
  white-space: nowrap;
}

.page-home .map-city-pill.is-accent {
  border-color: rgba(0, 176, 255, .42);
  color: #17bbff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .05),
    0 14px 28px rgba(0, 102, 255, .14);
}

.page-home .sp-carousel-section .pw-section-hd,
.page-home .avis-carousel-section .pw-section-hd {
  margin-bottom: 36px;
}

.page-home #forfait .pw-section-hd {
  margin-bottom: 0;
}

.page-home #faq .pw-section-hd {
  margin-bottom: 30px;
}

.page-home #contact .pw-section-hd {
  margin-bottom: 28px;
}

.page-home #parrainage .section-inner-pad > .pw-section-hd {
  margin-bottom: 0;
  padding: 44px 0 18px;
}

@media (max-width: 1024px) {
  .page-home .pw-section-hd {
    margin-bottom: 28px;
    padding: 40px 0 14px;
  }

  .page-home #forfait .pw-section-hd {
    margin: 0 auto;
    padding: 40px 0;
    gap: 12px;
  }

  .page-home .pw-section-hd.pw-section-hd--compact {
    margin-bottom: 24px;
    padding: 34px 0 12px;
  }

  .page-home .sp-carousel-section .pw-section-hd,
  .page-home .avis-carousel-section .pw-section-hd {
    margin-bottom: 32px;
  }

  .page-home #forfait .pw-section-hd {
    margin-bottom: 0;
  }
}

@media (max-width: 560px) {
  .page-home .pw-section-hd {
    margin-bottom: 24px;
    padding: 30px 0 12px;
    gap: 8px;
  }

  .page-home #forfait .pw-section-hd {
    margin: 0 auto;
    padding: 34px 0;
    gap: 10px;
  }

  .page-home .pw-section-hd.pw-section-hd--compact {
    margin-bottom: 20px;
    padding: 26px 0 10px;
  }

  .page-home #parrainage .section-inner-pad > .pw-section-hd {
    padding: 30px 0 12px;
  }
}

/* ─── INDEX · CONTACT PLUS PREMIUM / RESSERRÉ ───────────── */
.page-home #contact .pw-section-hd.pw-section-hd--compact {
  margin-bottom: 22px;
  padding-bottom: 14px;
}

.page-home #contact .contact-split {
  width: 100%;
  margin-inline: 0;
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr);
  gap: 20px;
  align-items: stretch;
}

.page-home #contact .contact-side-card,
.page-home #contact .contact-form-card {
  border-radius: 20px;
}

.page-home #contact .contact-side-card {
  padding: 28px 26px;
}

.page-home #contact .contact-form-card {
  padding: 24px 24px 20px;
}

.page-home #contact .contact-side-badge {
  padding: 6px 10px;
  font-size: 9px;
  letter-spacing: 1.4px;
  margin-bottom: 12px;
}

.page-home #contact .contact-side-title,
.page-home #contact .contact-form-head h3 {
  font-size: clamp(24px, 2.35vw, 32px);
  letter-spacing: -1.15px;
  line-height: 1.06;
}

.page-home #contact .contact-side-title {
  margin-bottom: 8px;
}

.page-home #contact .contact-side-sub,
.page-home #contact .contact-form-head p {
  font-size: 13px;
  line-height: 1.58;
  max-width: 430px;
}

.page-home #contact .contact-side-sub {
  margin-bottom: 16px;
}

.page-home #contact .contact-side-points {
  gap: 8px;
  margin-bottom: 18px;
}

.page-home #contact .contact-side-point {
  padding: 8px 10px;
  font-size: 11px;
}

.page-home #contact .contact-side-point::before {
  width: 12px;
  height: 12px;
}

.page-home #contact .contact-side-actions {
  gap: 10px;
  margin-bottom: 14px;
}

.page-home #contact .contact-side-cta {
  min-height: 44px;
  padding-inline: 20px;
}

.page-home #contact .contact-side-link--static {
  min-height: 44px;
  padding-inline: 14px;
  font-size: 13px;
}

.page-home #contact .contact-side-note {
  font-size: 11px;
  line-height: 1.55;
  max-width: 390px;
}

.page-home #contact .contact-form-head {
  margin-bottom: 14px;
}

.page-home #contact .contact-form {
  gap: 12px;
}

.page-home #contact .contact-row {
  gap: 12px;
}

.page-home #contact .contact-field {
  gap: 5px;
}

.page-home #contact .contact-field label {
  font-size: 12px;
}

.page-home #contact .contact-field input,
.page-home #contact .contact-field select,
.page-home #contact .contact-field textarea {
  padding: 11px 13px;
  font-size: 13px;
  border-radius: 12px;
}

.page-home #contact .contact-submit {
  min-height: 42px;
  padding: 11px 14px;
  font-size: 13px;
}

.page-home #contact .contact-note {
  margin-top: 4px;
  font-size: 11px;
}

@media (max-width: 1024px) {
  .page-home #contact .contact-split {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-home #contact .contact-side-card,
  .page-home #contact .contact-form-card {
    padding: 24px 22px;
  }
}

@media (max-width: 560px) {
  .page-home #contact .pw-section-hd.pw-section-hd--compact {
    margin-bottom: 18px;
    padding-bottom: 12px;
  }

  .page-home #contact .contact-side-card,
  .page-home #contact .contact-form-card {
    border-radius: 18px;
    padding: 20px 18px;
  }

  .page-home #contact .contact-side-title,
  .page-home #contact .contact-form-head h3 {
    font-size: 26px;
  }

  .page-home #contact .contact-side-point {
    font-size: 10px;
    padding: 8px 9px;
  }
}


@media (max-width: 768px) {
  .page-home .pw-section-hd .map-city-pills {
    gap: 10px;
  }

  .page-home .map-city-pill {
    min-height: 44px;
    padding: 0 15px;
    font-size: 12px;
    letter-spacing: .8px;
  }
}


/* --- assets/css/pages/marketing-family.css --- */

/* ─── FAMILLE MARKETING · DÉTAILS / INCLUS / PARRAINAGE ───────────────── */
.page-service-detail .inclus-section,
.page-inclus .inclus-section {
  padding: 0 36px 92px;
  background: #fff;
}

.page-service-detail .pw-section-hd,
.page-inclus .pw-section-hd,
.recap-dark .pw-section-hd {
  max-width: 960px;
}

.page-service-detail .pw-split-stack,
.page-inclus .pw-split-stack {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 22px;
}

.page-service-detail .pw-card--split,
.page-inclus .pw-card--split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
  min-height: 360px;
}

.page-service-detail .pw-card--split:nth-child(even),
.page-inclus .pw-card--split:nth-child(even) {
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
}

.page-service-detail .pw-card--split:nth-child(even) .split-media,
.page-inclus .pw-card--split:nth-child(even) .split-media {
  order: 2;
}

.page-service-detail .pw-card--split:nth-child(even) .split-content,
.page-inclus .pw-card--split:nth-child(even) .split-content {
  order: 1;
}

.page-service-detail .pw-card--split-alt,
.page-inclus .pw-card--split-alt {
  min-height: 332px;
}

.page-service-detail .pw-card--split-alt .split-content,
.page-inclus .pw-card--split-alt .split-content {
  padding: 30px 38px;
}

@media (min-width: 1025px) {
  .page-service-detail .pw-card--split.pw-card--split-alt-1,
  .page-service-detail .pw-card--split.pw-card--split-alt-3,
  .page-inclus .pw-card--split.pw-card--split-alt-1,
  .page-inclus .pw-card--split.pw-card--split-alt-3 {
    grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  }

  .page-service-detail .pw-card--split.pw-card--split-alt-1 .split-media,
  .page-service-detail .pw-card--split.pw-card--split-alt-3 .split-media,
  .page-inclus .pw-card--split.pw-card--split-alt-1 .split-media,
  .page-inclus .pw-card--split.pw-card--split-alt-3 .split-media {
    order: 2;
  }

  .page-service-detail .pw-card--split.pw-card--split-alt-1 .split-content,
  .page-service-detail .pw-card--split.pw-card--split-alt-3 .split-content,
  .page-inclus .pw-card--split.pw-card--split-alt-1 .split-content,
  .page-inclus .pw-card--split.pw-card--split-alt-3 .split-content {
    order: 1;
  }

  .page-service-detail .pw-card--split.pw-card--split-alt-2,
  .page-inclus .pw-card--split.pw-card--split-alt-2 {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  }

  .page-service-detail .pw-card--split.pw-card--split-alt-2 .split-media,
  .page-inclus .pw-card--split.pw-card--split-alt-2 .split-media {
    order: 1;
  }

  .page-service-detail .pw-card--split.pw-card--split-alt-2 .split-content,
  .page-inclus .pw-card--split.pw-card--split-alt-2 .split-content {
    order: 2;
  }

  .page-service-detail .pw-card--split-alt .split-media,
  .page-service-detail .pw-card--split-alt .split-content,
  .page-inclus .pw-card--split-alt .split-media,
  .page-inclus .pw-card--split-alt .split-content {
    min-height: 332px;
  }

  .page-service-detail .pw-card--split-alt .split-list,
  .page-inclus .pw-card--split-alt .split-list {
    margin-top: 14px;
    gap: 9px;
  }
}

.page-service-detail .split-media,
.page-inclus .split-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #111;
}

.page-service-detail .split-media img,
.page-inclus .split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

@media (hover: hover) {
  .page-service-detail .pw-card--split:hover .split-media img,
  .page-inclus .pw-card--split:hover .split-media img {
    transform: scale(1.04);
  }
}

.page-service-detail .split-media::after,
.page-inclus .split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,.06) 0%, rgba(17,17,17,.24) 100%);
}

.page-service-detail .split-content,
.page-inclus .split-content {
  padding: 38px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-service-detail .split-kicker,
.page-inclus .split-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(74,144,224,.08);
  border: 1px solid rgba(74,144,224,.14);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #315f9b;
}

.page-service-detail .split-kicker::before,
.page-inclus .split-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}

.page-service-detail .split-content h3,
.page-inclus .split-content h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -1.5px;
  color: #111;
  margin-bottom: 16px;
}

.page-service-detail .split-content p,
.page-inclus .split-content p {
  font-size: 15px;
  line-height: 1.76;
  color: #5d636b;
  font-weight: 400;
  margin-bottom: 12px;
}

.page-service-detail .split-content p:last-of-type,
.page-inclus .split-content p:last-of-type {
  margin-bottom: 0;
}

.page-service-detail .pw-card--split-overview .split-content,
.page-inclus .pw-card--split-overview .split-content,
.page-service-detail .split-content--seo-overview,
.page-inclus .split-content--seo-overview,
.page-service-detail .split-content--parrainage-overview,
.page-inclus .split-content--parrainage-overview {
  height: 100%;
  justify-content: center;
  gap: 0;
}

.page-service-detail .split-content--seo-overview h3,
.page-inclus .split-content--seo-overview h3,
.page-service-detail .split-content--parrainage-overview h3,
.page-inclus .split-content--parrainage-overview h3 {
  margin-bottom: 18px;
}

.page-service-detail .split-content--seo-overview p,
.page-inclus .split-content--seo-overview p,
.page-service-detail .split-content--parrainage-overview p,
.page-inclus .split-content--parrainage-overview p {
  margin-bottom: 10px;
}

.page-service-detail .split-content--seo-overview .split-list,
.page-inclus .split-content--seo-overview .split-list,
.page-service-detail .split-content--parrainage-overview .split-list,
.page-inclus .split-content--parrainage-overview .split-list {
  margin-top: 16px;
}

.page-service-detail .split-content--seo-overview .split-note,
.page-inclus .split-content--seo-overview .split-note,
.page-service-detail .split-content--parrainage-overview .split-note,
.page-inclus .split-content--parrainage-overview .split-note {
  margin-top: 18px;
}

.page-service-detail .split-list,
.page-inclus .split-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.page-service-detail .split-list li,
.page-inclus .split-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #1f2328;
}

.page-service-detail .split-list li::before,
.page-inclus .split-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='7' viewBox='0 0 9 7'%3E%3Cpath d='M1 3.5l2.5 2.5 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"), var(--grad);
  background-repeat: no-repeat;
  background-position: center;
}

.page-service-detail .split-note,
.page-inclus .split-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f4f7fb;
  border: 1px solid #e6edf6;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #315f9b;
}

.page-service-detail .split-divider,
.page-inclus .split-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0;
  margin: 0;
}

.page-service-detail .split-divider::before,
.page-service-detail .split-divider::after,
.page-inclus .split-divider::before,
.page-inclus .split-divider::after {
  content: none;
}

.page-service-detail .split-divider p,
.page-inclus .split-divider p {
  font-size: clamp(28px, 3.5vw, 46px);
  letter-spacing: -1.6px;
  line-height: 1.08;
  color: #111;
  white-space: nowrap;
  margin: 0;
}

.garantie-section {
  width: 100%;
  margin: 0;
  padding: 72px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
  gap: 44px;
  align-items: stretch;
  background: #111111;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(16,24,40,.12);
}

.garantie-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.garantie-left h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 18px;
}

.garantie-left h2 span {
  background: var(--grad-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.garantie-left p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.76);
  margin-bottom: 22px;
}

.garantie-list {
  display: grid;
  gap: 11px;
}

.garantie-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.56;
  color: rgba(255,255,255,.92);
}

.garantie-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='7' viewBox='0 0 9 7'%3E%3Cpath d='M1 3.5l2.5 2.5 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"), linear-gradient(135deg,#4a90e0 0%,#8030c0 100%);
  background-repeat: no-repeat;
  background-position: center;
}

.garantie-right {
  position: relative;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background: #0d0d0d;
}

.garantie-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.garantie-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,.08) 0%, rgba(17,17,17,.46) 100%), linear-gradient(135deg, rgba(74,144,224,.10) 0%, rgba(128,48,192,.14) 100%);
}

.pw-cta-panel {
  width: 100%;
  margin: 0;
  padding: 72px 48px;
  text-align: center;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 24px;
}

.pw-cta-panel h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -2px;
  color: #111;
  margin-bottom: 22px;
}

.pw-cta-panel h2 span {
  background: var(--grad-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pw-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.final-cta-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 500;
}

/* Services+ */
.sp-section {
  padding: 0 36px 92px;
  background: #fff;
}

/* Page-specific overrides */
@media (min-width: 1025px) {
  .page-seo-local-plus .pw-split-stack > .pw-card--split-overview {
    min-height: 92svh;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  }

  .page-seo-local-plus .pw-split-stack > .pw-card--split-overview .split-media,
  .page-seo-local-plus .pw-split-stack > .pw-card--split-overview .split-content,
  .page-seo-local-plus .pw-split-stack > .pw-card--split-overview .split-content--seo-overview {
    min-height: 92svh;
  }

  .page-seo-local-plus .pw-split-stack > .pw-card--split-overview .split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .page-seo-local-plus .pw-split-stack > .pw-card--split-overview .split-content,
  .page-seo-local-plus .pw-split-stack > .pw-card--split-overview .split-content--seo-overview {
    justify-content: center;
    padding-top: clamp(44px, 5.5vh, 72px);
    padding-bottom: clamp(44px, 5.5vh, 72px);
  }

  .page-parrainage .pw-split-stack > .pw-card--split-overview {
    min-height: 92svh;
  }

  .page-parrainage .pw-split-stack > .pw-card--split-overview .split-media,
  .page-parrainage .pw-split-stack > .pw-card--split-overview .split-content,
  .page-parrainage .pw-split-stack > .pw-card--split-overview .split-content--parrainage-overview {
    min-height: 92svh;
  }
}

@media (max-width: 1200px) {
  .page-service-detail .inclus-section,
  .page-inclus .inclus-section,
  .sp-section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .garantie-section,
  .pw-cta-panel {
    padding: 64px 40px;
  }
}

@media (max-width: 1024px) {
  .page-seo-local-plus .pw-split-stack > .pw-card--split-overview,
  .page-seo-local-plus .pw-split-stack > .pw-card--split-overview .split-media,
  .page-seo-local-plus .pw-split-stack > .pw-card--split-overview .split-content,
  .page-seo-local-plus .pw-split-stack > .pw-card--split-overview .split-content--seo-overview {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .page-service-detail .inclus-section,
  .page-inclus .inclus-section,
  .sp-section {
    padding: 0 16px 72px;
  }

  .page-service-detail .pw-section-hd,
  .page-inclus .pw-section-hd,
  .recap-dark .pw-section-hd {
    margin: 0 auto 28px;
    padding: 40px 0 20px;
    gap: 12px;
  }

  .page-service-detail .split-divider,
  .page-inclus .split-divider {
    padding: 22px 0;
  }

  .garantie-section {
    grid-template-columns: 1fr;
    padding: 56px 28px;
    gap: 28px;
  }

  .pw-cta-panel {
    padding: 56px 28px;
  }
}


/* --- assets/css/pages/forms.css --- */

/* ─── MERCI & RAPPEL ────────────────────────────────────── */
.merci-page, .rappel-page {
  height: calc(100vh - 58px); margin-top: 58px; padding: 16px 20px 18px;
  background: radial-gradient(circle at 20% 0%, rgba(74,144,224,.10) 0%, transparent 22%), radial-gradient(circle at 80% 10%, rgba(128,48,192,.10) 0%, transparent 24%), linear-gradient(180deg, #f5f7fb 0%, #f2f3f7 100%);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.merci-shell, .rappel-shell {
  width: 100%; max-width: 768px; height: 100%; display: flex; flex-direction: column; justify-content: center;
}
.merci-topbar, .rappel-topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; flex: 0 0 auto;
}
.merci-back, .rappel-back {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: #666; text-decoration: none; font-weight: 600; transition: color .15s ease, transform .15s ease;
}
.merci-back:hover, .rappel-back:hover { color: #111; transform: translateX(-2px); }
.merci-proof, .rappel-mini-proof {
  display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; color: #445; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.72); border: 1px solid rgba(17,17,17,.06); backdrop-filter: blur(10px); box-shadow: 0 10px 22px rgba(0,0,0,.04);
}
.merci-proof::before, .rappel-mini-proof::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg, #4a90e0 0%, #8030c0 100%); flex-shrink: 0; }
.merci-card {
  width: 100%; max-width: 768px; margin: 0 auto; background: rgba(255,255,255,.84); border: 1px solid rgba(255,255,255,.72); border-radius: 26px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(16,24,40,.10), 0 8px 24px rgba(16,24,40,.06); backdrop-filter: blur(16px);
  display: grid; grid-template-columns: .95fr 1.05fr; height: min(560px, calc(100vh - 120px)); max-height: calc(100vh - 120px);
}
.merci-media { position: relative; background: #111; overflow: hidden; }
.merci-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.merci-media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.60) 0%, rgba(17,17,17,.08) 48%, transparent 75%), linear-gradient(135deg, rgba(74,144,224,.12) 0%, rgba(128,48,192,.10) 100%);
}
.merci-media-content { position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2; text-align: left; color: #fff; }
.merci-media-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.76); margin-bottom: 12px; }
.merci-media-tag::before { content: ''; width: 22px; height: 1px; background: rgba(255,255,255,.35); }
.merci-media-title { font-family: var(--font-ui); font-size: 24px; line-height: 1.06; letter-spacing: -1px; margin-bottom: 8px; max-width: 220px; }
.merci-media-title .grad { background: var(--grad-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.merci-media-sub { font-size: 13px; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,.76); max-width: 260px; }
.merci-body {
  padding: 30px 30px 28px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.94) 100%); overflow: hidden;
}
.merci-badge, .rappel-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #315f9b; padding: 8px 12px; border-radius: 999px; background: rgba(74,144,224,.08); border: 1px solid rgba(74,144,224,.14);
}
.merci-badge::before, .rappel-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, #4a90e0 0%, #8030c0 100%); flex-shrink: 0; }
.merci-divider { width: 44px; height: 3px; background: var(--grad); border-radius: 999px; }
.merci-check {
  width: 58px; height: 58px; background: var(--grad); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 10px 22px rgba(74,144,224,.18);
}
.merci-check svg { width: 28px; height: 28px; }
.merci-title {
  font-family: var(--font-ui); font-size: clamp(24px, 3vw, 34px); letter-spacing: -1.2px; color: #111; line-height: 1.10; max-width: 340px;
}
.merci-title span { display: block; background: var(--grad-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent; padding-bottom: 2px; }
.merci-sub { font-size: 14px; color: #666; font-weight: 300; line-height: 1.75; max-width: 360px; }
.merci-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 360px; }
.merci-point, .rappel-point {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 999px; background: #fff; border: 1px solid #e8e8e8; box-shadow: 0 10px 20px rgba(0,0,0,.03); font-size: 12px; color: #333; font-weight: 600; line-height: 1;
}
.merci-point::before, .rappel-point::before {
  content: ''; width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='7' viewBox='0 0 9 7'%3E%3Cpath d='M1 3.5l2.5 2.5 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"), linear-gradient(135deg, #4a90e0 0%, #8030c0 100%);
  background-repeat: no-repeat; background-position: center;
}
.merci-btn, .rappel-btn {
  background: var(--grad); color: #fff; border: none; min-height: 44px; padding: 11px 20px; border-radius: 12px; font-family: var(--font-ui); font-size: 13px; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 7px; transition: opacity .2s ease, transform .15s ease, box-shadow .2s ease; margin-top: 4px; box-shadow: 0 10px 22px rgba(74,144,224,.16);
}
.merci-btn:hover, .rappel-btn:hover { opacity: .92; transform: translateY(-1px); box-shadow: 0 18px 34px rgba(74,144,224,.22); }
.merci-btn:active, .rappel-btn:active { transform: translateY(1px) scale(0.99); }
.merci-note, .rappel-note { font-size: 11px; color: #999; font-weight: 300; line-height: 1.6; max-width: 320px; }

/* Page rappel spécifique */
.rappel-shell { max-width: 1120px; }
.rappel-card {
  background: rgba(255,255,255,.84); border: 1px solid rgba(255,255,255,.72); border-radius: 26px; width: 100%;
  display: grid; grid-template-columns: 1.02fr .98fr; overflow: hidden; box-shadow: 0 24px 64px rgba(16,24,40,.10), 0 8px 24px rgba(16,24,40,.06); backdrop-filter: blur(16px);
  height: min(700px, calc(100vh - 120px)); max-height: calc(100vh - 120px);
}
.rappel-left {
  padding: 34px 36px 30px; display: flex; flex-direction: column; justify-content: center; gap: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.94) 100%); overflow: hidden;
}
.rappel-heading-wrap { max-width: 500px; }
.rappel-heading {
  font-family: var(--font-ui); font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -1.5px; color: #111; line-height: 1.02; margin-bottom: 10px;
}
.rappel-heading span { display: block; background: var(--grad-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent; padding-bottom: 3px; }
.rappel-sub { font-size: 14px; color: #666; font-weight: 300; line-height: 1.72; max-width: 450px; }
.rappel-points { display: flex; flex-wrap: wrap; gap: 10px; max-width: 500px; }
.rappel-form-card { width: 100%; max-width: 390px; background: #fff; border: 1px solid #ececec; border-radius: 18px; padding: 18px; box-shadow: 0 14px 28px rgba(0,0,0,.05); flex: 0 0 auto; }
.rappel-form-title { font-family: var(--font-ui); font-weight: 800; font-size: 17px; letter-spacing: -.4px; color: #111; margin-bottom: 4px; }
.rappel-form-sub { font-size: 12px; color: #777; font-weight: 300; line-height: 1.55; margin-bottom: 14px; }
.rappel-form-wrap { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.rappel-field { display: flex; flex-direction: column; gap: 7px; width: 100%; }
.rappel-field label { font-size: 12px; font-weight: 700; color: #111; }
.rappel-field input {
  border: 1.5px solid #e3e3e3; border-radius: 12px; padding: 13px 15px; font-family: var(--font-ui); font-size: 15px; color: #111; background: #fff; outline: none; transition: border-color .2s ease, box-shadow .2s ease; width: 100%;
}
.rappel-field input:focus { border-color: #4a90e0; box-shadow: 0 0 0 4px rgba(74,144,224,.10); }
.rappel-horaires { font-size: 12px; font-weight: 700; color: #111; line-height: 1.55; max-width: 480px; }
.rappel-horaires span { display: block; font-weight: 300; color: #999; font-size: 11px; margin-top: 5px; line-height: 1.6; }
.rappel-policy-link { color: #4a90e0; text-decoration: underline; font-weight: 400; }
.rappel-right { position: relative; min-height: 100%; overflow: hidden; background: #111; }
.rappel-right img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.rappel-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.62) 0%, rgba(17,17,17,.12) 42%, transparent 72%), linear-gradient(135deg, rgba(74,144,224,.12) 0%, rgba(128,48,192,.10) 100%);
}
.rappel-media-content { position: absolute; inset: auto 22px 22px 22px; z-index: 2; color: #fff; }
.rappel-media-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.76); margin-bottom: 12px; }
.rappel-media-tag::before { content: ''; width: 24px; height: 1px; background: rgba(255,255,255,.35); }
.rappel-media-title { font-family: var(--font-ui); font-size: 26px; line-height: 1.04; letter-spacing: -1px; margin-bottom: 8px; max-width: 300px; }
.rappel-media-title .grad { background: var(--grad-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.rappel-media-sub { font-size: 13px; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,.76); max-width: 330px; margin-bottom: 14px; }
.rappel-media-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 330px; }
.rappel-media-stat { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.10); backdrop-filter: blur(8px); border-radius: 14px; padding: 11px 12px; }
.rappel-media-stat strong { display: block; font-family: var(--font-ui); font-size: 13px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.rappel-media-stat span { display: block; font-size: 10px; font-weight: 400; color: rgba(255,255,255,.60); line-height: 1.45; }

/* ─── RAPPEL PARRAINAGE — même gabarit que rappel, sans scroll ─ */
.page-rappel-parrainage .rappel-page {
  height: calc(100vh - 58px);
  min-height: 0;
  padding-top: 16px;
  padding-bottom: 18px;
  overflow: hidden;
  align-items: center;
}
.page-rappel-parrainage .rappel-shell {
  height: 100%;
  justify-content: center;
}
.page-rappel-parrainage .rappel-card {
  height: min(700px, calc(100vh - 120px));
  max-height: calc(100vh - 120px);
  min-height: 0;
  align-items: stretch;
}
.page-rappel-parrainage .rappel-left {
  justify-content: flex-start;
  padding: 28px 30px 24px;
  gap: 14px;
}
.page-rappel-parrainage .rappel-heading-wrap {
  max-width: 460px;
  padding-top: 8px;
}
.page-rappel-parrainage .rappel-heading {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.10;
  margin: 0 0 8px;
}
.page-rappel-parrainage .rappel-sub {
  font-size: 13px;
  line-height: 1.58;
  max-width: 430px;
}
.page-rappel-parrainage .rappel-points {
  gap: 8px;
}
.page-rappel-parrainage .rappel-point {
  padding: 8px 11px;
  font-size: 11px;
}
.page-rappel-parrainage .rappel-form-card {
  max-width: 392px;
  padding: 16px;
}
.page-rappel-parrainage .rappel-form-title {
  font-size: 16px;
}
.page-rappel-parrainage .rappel-form-sub {
  font-size: 11px;
  line-height: 1.45;
  margin-bottom: 12px;
}
.page-rappel-parrainage .rappel-form-wrap {
  gap: 10px;
}
.page-rappel-parrainage .rappel-field {
  gap: 6px;
}
.page-rappel-parrainage .rappel-field input {
  padding: 12px 14px;
  font-size: 14px;
}
.page-rappel-parrainage .form-consent.form-consent--compact {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: start;
  column-gap: 10px;
  margin-top: 10px;
}
.page-rappel-parrainage .form-consent.form-consent--compact input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  flex-shrink: 0;
}
.page-rappel-parrainage .form-consent.form-consent--compact label {
  font-size: 11px;
  line-height: 1.45;
  color: #666;
}
.page-rappel .form-consent label {
  color: #444;
  font-size: 13px;
  line-height: 1.5;
}
.page-rappel-parrainage .rappel-note {
  max-width: 100%;
  font-size: 10px;
  line-height: 1.45;
}
.page-rappel-parrainage .rappel-horaires {
  font-size: 11px;
  line-height: 1.5;
}
.page-rappel-parrainage .rappel-horaires span {
  font-size: 10px;
}
.page-rappel-parrainage .rappel-right {
  min-height: 100%;
}
.page-rappel-parrainage .rappel-media-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 26px;
}
.page-rappel-parrainage .rappel-media-title {
  max-width: 12ch;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
}
.page-rappel-parrainage .rappel-media-sub {
  max-width: 38ch;
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}
.page-rappel-parrainage .rappel-media-stats {
  width: min(100%, 430px);
  gap: 10px;
  margin-top: 2px;
}
.page-rappel-parrainage .rappel-media-stat {
  backdrop-filter: blur(10px);
  padding: 10px 12px;
}
@media (max-width: 1200px) {
  .page-rappel-parrainage .rappel-left {
    padding: 26px 26px 22px;
  }
}
@media (max-width: 980px) {
  .page-rappel-parrainage .rappel-page {
    height: auto;
    min-height: calc(100vh - 58px);
    padding-top: 18px;
    padding-bottom: 26px;
    overflow: visible;
    align-items: flex-start;
  }
  .page-rappel-parrainage .rappel-shell {
    height: auto;
    justify-content: flex-start;
  }
  .page-rappel-parrainage .rappel-card {
    height: auto;
    max-height: none;
  }
  .page-rappel-parrainage .rappel-left {
    padding: 28px 24px 24px;
  }
  .page-rappel-parrainage .rappel-right {
    min-height: 420px;
  }
  .page-rappel-parrainage .rappel-media-title {
    max-width: none;
  }
  .page-rappel-parrainage .rappel-media-sub,
  .page-rappel-parrainage .rappel-media-stats {
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .page-rappel-parrainage .rappel-form-card {
    max-width: none;
  }
}

/* ─── PORTAIL CLIENT ─────────────────────────────────────── */
.portal-page {
  min-height: calc(100vh - 58px); margin-top: 58px; padding: 26px 20px 52px;
  background: radial-gradient(circle at 10% 0%, rgba(74,144,224,.12) 0%, transparent 24%), radial-gradient(circle at 90% 12%, rgba(128,48,192,.10) 0%, transparent 26%), linear-gradient(180deg,#f5f7fb 0%,#f1f3f8 100%);
  display: flex; align-items: center; justify-content: center;
}
.portal-shell { width: 100%; max-width: 1100px; }
.portal-card {
  display: grid; grid-template-columns: 1.05fr .95fr; background: rgba(255,255,255,.90); border: 1px solid rgba(255,255,255,.78); border-radius: 28px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(16,24,40,.10), 0 8px 24px rgba(16,24,40,.06); backdrop-filter: blur(14px); min-height: 620px;
}
.portal-left { position: relative; background: #111; overflow: hidden; padding: 38px 34px; display: flex; align-items: flex-end; isolation: isolate; }
.portal-left-bg { position: absolute; inset: 0; }
.portal-left-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .34; display: block; }
.portal-left-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74,144,224,.14) 0%, rgba(128,48,192,.10) 100%), linear-gradient(to top, rgba(10,12,18,.84) 0%, rgba(10,12,18,.42) 46%, rgba(10,12,18,.12) 100%);
}
.portal-left-content { position: relative; z-index: 2; max-width: 430px; color: #fff; }
.portal-badge {
  display: inline-flex; align-items: center; gap: 8px; min-height: 34px; padding: 0 14px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.9); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; backdrop-filter: blur(10px);
}
.portal-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg,#4a90e0 0%,#8030c0 100%); flex-shrink: 0; }
.portal-left h1 { font-family: var(--font-ui); font-size: clamp(38px,5vw,60px); line-height: 1; letter-spacing: -2px; margin-bottom: 16px; color: #fff; }
.portal-left h1 .grad { background: linear-gradient(90deg,#4a90e0 0%,#6a5acd 50%,#8030c0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.portal-lead { font-size: 15px; line-height: 1.78; color: rgba(255,255,255,.76); font-weight: 300; margin-bottom: 12px; max-width: 380px; }
.portal-sub { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,.58); font-weight: 300; margin-bottom: 22px; max-width: 380px; }
.portal-points { display: flex; flex-direction: column; gap: 11px; margin-top: 6px; max-width: 320px; }
.portal-point { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.55; color: rgba(255,255,255,.88); font-weight: 500; }
.portal-point::before {
  content: ''; width: 15px; height: 15px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='7' viewBox='0 0 9 7'%3E%3Cpath d='M1 3.5l2.5 2.5 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"), linear-gradient(135deg,#4a90e0 0%,#8030c0 100%);
  background-repeat: no-repeat; background-position: center;
}
.portal-right { padding: 42px 34px; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.96) 100%); }
.portal-form-wrap { width: 100%; max-width: 390px; }
.portal-form-top { margin-bottom: 24px; }
.portal-form-kicker {
  display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #315f9b; padding: 8px 12px; border-radius: 999px; background: rgba(74,144,224,.08); border: 1px solid rgba(74,144,224,.14); margin-bottom: 14px;
}
.portal-form-kicker::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg,#4a90e0 0%,#8030c0 100%); flex-shrink: 0; }
.portal-form-top h2 { font-family: var(--font-ui); font-size: 34px; line-height: 1; letter-spacing: -1.5px; color: #111; margin-bottom: 10px; }
.portal-form-top p { font-size: 14px; line-height: 1.75; color: #666; font-weight: 300; max-width: 340px; }
.portal-form { display: flex; flex-direction: column; gap: 14px; }
.portal-field { display: flex; flex-direction: column; gap: 8px; }
.portal-field label { font-size: 13px; font-weight: 700; color: #111; }
.portal-field input {
  width: 100%; border: 1.5px solid #e1e5ec; border-radius: 12px; padding: 14px 16px; background: #fff; color: #111; font-size: 15px; font-family: var(--font-ui); outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.portal-field input:focus { border-color: #4a90e0; box-shadow: 0 0 0 3px rgba(74,144,224,.12); }
.portal-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-top: 2px; }
.portal-remember { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: #555; font-weight: 500; }
.portal-remember input { width: 15px; height: 15px; accent-color: #4a90e0; }
.portal-forgot { font-size: 13px; color: #4a90e0; text-decoration: none; font-weight: 600; }
.portal-forgot:hover { text-decoration: underline; }
.portal-btn {
  margin-top: 4px; border: none; border-radius: 12px; min-height: 44px; padding: 12px 16px; background: linear-gradient(135deg,#4a90e0 0%,#6a5acd 50%,#8030c0 100%); color: #fff; font-family: var(--font-ui); font-size: 14px; font-weight: 700; cursor: pointer; transition: opacity .2s ease, transform .15s ease, box-shadow .2s ease; box-shadow: 0 12px 24px rgba(74,144,224,.16);
}
.portal-btn:hover { opacity: .92; transform: translateY(-1px); box-shadow: 0 20px 34px rgba(74,144,224,.22); }
.portal-btn:active { transform: translateY(1px) scale(.99); }
.portal-note { margin-top: 16px; font-size: 12px; line-height: 1.7; color: #888; font-weight: 300; }
.portal-help { margin-top: 22px; padding-top: 18px; border-top: 1px solid #ececf2; font-size: 13px; line-height: 1.7; color: #666; }
.portal-help a { color: #4a90e0; text-decoration: none; font-weight: 600; }
.portal-help a:hover { text-decoration: underline; }


/* ─── RECRUTEMENT ────────────────────────────────────────── */
.recrutement-page {
  height: calc(100vh - 58px); max-height: calc(100vh - 58px); margin-top: 58px; padding: 16px 20px 18px;
  background: radial-gradient(circle at 10% 0%, rgba(74,144,224,.12) 0%, transparent 24%), radial-gradient(circle at 90% 12%, rgba(128,48,192,.10) 0%, transparent 26%), linear-gradient(180deg,#f5f7fb 0%,#f1f3f8 100%);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.recrutement-shell { width: 100%; max-width: 1120px; height: 100%; display: flex; align-items: center; }
.recrutement-card {
  display: grid; grid-template-columns: 1.02fr .98fr; width: 100%; height: min(640px, calc(100vh - 110px)); max-height: calc(100vh - 110px);
  background: rgba(255,255,255,.90); border: 1px solid rgba(255,255,255,.78); border-radius: 28px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(16,24,40,.10), 0 8px 24px rgba(16,24,40,.06); backdrop-filter: blur(14px);
}
.recrutement-left { position: relative; background: #111; overflow: hidden; padding: 34px 32px; display: flex; align-items: center; justify-content: flex-start; isolation: isolate; }
.recrutement-left-bg { position: absolute; inset: 0; }
.recrutement-left-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .34; display: block; }
.recrutement-left-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74,144,224,.14) 0%, rgba(128,48,192,.10) 100%), linear-gradient(to top, rgba(10,12,18,.84) 0%, rgba(10,12,18,.42) 46%, rgba(10,12,18,.12) 100%);
}
.recrutement-left-content { position: relative; z-index: 2; max-width: 460px; color: #fff; }
.recrutement-badge {
  display: inline-flex; align-items: center; gap: 8px; min-height: 34px; padding: 0 14px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.9); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; backdrop-filter: blur(10px);
}
.recrutement-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg,#4a90e0 0%,#8030c0 100%); flex-shrink: 0; }
.recrutement-left h1 { font-family: var(--font-ui); font-size: clamp(40px,5vw,60px); line-height: 1; letter-spacing: -2px; margin-bottom: 16px; color: #fff; }
.recrutement-left h1 .grad { background: linear-gradient(90deg,#4a90e0 0%,#6a5acd 50%,#8030c0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.recrutement-lead { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.76); font-weight: 300; margin-bottom: 12px; max-width: 390px; }
.recrutement-sub { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,.58); font-weight: 300; margin-bottom: 22px; max-width: 390px; }
.recrutement-points { display: flex; flex-direction: column; gap: 11px; margin-top: 6px; max-width: 340px; }
.recrutement-point { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.55; color: rgba(255,255,255,.88); font-weight: 500; }
.recrutement-point::before {
  content: ''; width: 15px; height: 15px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='7' viewBox='0 0 9 7'%3E%3Cpath d='M1 3.5l2.5 2.5 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"), linear-gradient(135deg,#4a90e0 0%,#8030c0 100%);
  background-repeat: no-repeat; background-position: center;
}
.recrutement-right { padding: 28px 32px 24px; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.96) 100%); overflow: hidden; }
.recrutement-form-wrap { width: 100%; max-width: 400px; }
.recrutement-form-top { margin-bottom: 14px; text-align: center; }
.recrutement-form-top h2 { font-family: var(--font-ui); font-size: 34px; line-height: 1; letter-spacing: -1.5px; color: #111; margin-bottom: 8px; }
.recrutement-form-top p { font-size: 13px; line-height: 1.5; color: #666; font-weight: 300; max-width: 300px; margin: 0 auto; }
.recrutement-form { display: flex; flex-direction: column; gap: 11px; }
.recrutement-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.recrutement-field { display: flex; flex-direction: column; gap: 6px; }
.recrutement-field label { font-size: 13px; font-weight: 700; color: #111; }
.recrutement-field input,
.recrutement-field select {
  width: 100%; border: 1.5px solid #e1e5ec; border-radius: 12px; padding: 13px 16px; background: #fff; color: #111; font-size: 15px; font-family: var(--font-ui); outline: none; transition: border-color .2s ease, box-shadow .2s ease; appearance: none;
}
.recrutement-field select {
  background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 42px;
}
.recrutement-field input:focus,
.recrutement-field select:focus { border-color: #4a90e0; box-shadow: 0 0 0 3px rgba(74,144,224,.12); }
.recrutement-btn {
  margin-top: 4px; border: none; border-radius: 12px; min-height: 44px; padding: 12px 16px; background: linear-gradient(135deg,#4a90e0 0%,#6a5acd 50%,#8030c0 100%); color: #fff; font-family: var(--font-ui); font-size: 14px; font-weight: 700; cursor: pointer; transition: opacity .2s ease, transform .15s ease, box-shadow .2s ease; box-shadow: 0 12px 24px rgba(74,144,224,.16);
}
.recrutement-btn:hover { opacity: .92; transform: translateY(-1px); box-shadow: 0 20px 34px rgba(74,144,224,.22); }
.recrutement-btn:active { transform: translateY(1px) scale(.99); }
.recrutement-note { margin-top: 10px; font-size: 11px; line-height: 1.5; color: #888; font-weight: 300; text-align: center; }


/* --- assets/css/pages/legal.css --- */

/* ─── PAGES LÉGALES (unifié) ────────────────────────────── */
.legal-page {
  min-height: calc(100vh - 58px);
  margin-top: 58px;
  padding: 26px 20px 70px;
  background: radial-gradient(circle at 10% 0%, rgba(74,144,224,.12) 0%, transparent 24%), radial-gradient(circle at 90% 10%, rgba(128,48,192,.10) 0%, transparent 26%), linear-gradient(180deg,#f5f7fb 0%,#f1f3f8 100%);
}
.legal-shell { width: 100%; max-width: 1120px; margin: 0 auto; }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: #666;
  text-decoration: none; font-weight: 600; margin-bottom: 16px; transition: color .15s ease, transform .15s ease;
}
.legal-back:hover { color: #111; transform: translateX(-2px); }
.legal-hero {
  position: relative; overflow: hidden; border-radius: 28px; min-height: 320px; padding: 40px 36px;
  display: flex; align-items: flex-end; background: #111; box-shadow: 0 28px 70px rgba(16,24,40,.16);
  margin-bottom: 22px; isolation: isolate;
}
.legal-hero-bg { position: absolute; inset: 0; }
.legal-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .34; display: block; }
.legal-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74,144,224,.14) 0%, rgba(128,48,192,.10) 100%), linear-gradient(to top, rgba(10,12,18,.78) 0%, rgba(10,12,18,.36) 45%, rgba(10,12,18,.14) 100%);
}
.legal-hero-inner { position: relative; z-index: 2; max-width: 768px; }
.legal-badge {
  display: inline-flex; align-items: center; gap: 8px; min-height: 34px; padding: 0 14px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; backdrop-filter: blur(10px);
}
.legal-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg,#4a90e0 0%,#8030c0 100%); flex-shrink: 0; }
.legal-title {
  font-family: var(--font-ui); font-size: clamp(36px,5vw,64px); line-height: .98;
  letter-spacing: -2.5px; color: #fff; margin-bottom: 16px;
}
.legal-title .grad { background: linear-gradient(90deg,#4a90e0 0%,#6a5acd 50%,#8030c0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.legal-sub { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.72); max-width: 620px; font-weight: 300; }
.legal-top-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; margin-bottom: 18px; }
.legal-card, .legal-side-card {
  background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.78); border-radius: 24px;
  box-shadow: 0 24px 60px rgba(16,24,40,.08), 0 8px 24px rgba(16,24,40,.05); backdrop-filter: blur(14px);
}
.legal-card { padding: 28px 26px; }
.legal-side-card { padding: 22px 20px; display: flex; flex-direction: column; gap: 14px; }
.legal-side-title { font-family: var(--font-ui); font-size: 22px; font-weight: 800; letter-spacing: -.8px; color: #111; line-height: 1.05; }
.legal-side-text { font-size: 13px; line-height: 1.7; color: #666; font-weight: 300; }
.legal-side-points { display: flex; flex-direction: column; gap: 10px; margin-top: 2px; }
.legal-side-point { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.55; color: #333; font-weight: 500; }
.legal-side-point::before {
  content: ''; width: 15px; height: 15px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='7' viewBox='0 0 9 7'%3E%3Cpath d='M1 3.5l2.5 2.5 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"), linear-gradient(135deg,#4a90e0 0%,#8030c0 100%);
  background-repeat: no-repeat; background-position: center;
}
.legal-intro { font-size: 14px; line-height: 1.8; color: #666; font-weight: 300; }
.legal-main {
  background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.78); border-radius: 26px;
  box-shadow: 0 24px 60px rgba(16,24,40,.08), 0 8px 24px rgba(16,24,40,.05); backdrop-filter: blur(14px); overflow: hidden;
}
.legal-main-inner { padding: 16px; }
.legal-section {
  background: #fff; border: 1px solid #ececf2; border-radius: 20px; padding: 22px 20px;
}
.legal-section + .legal-section { margin-top: 14px; }
.legal-section h2 { font-family: var(--font-ui); font-size: 24px; font-weight: 800; letter-spacing: -.8px; color: #111; line-height: 1.08; margin-bottom: 12px; }
.legal-section p, .legal-section li { font-size: 14px; line-height: 1.78; color: #444; }
.legal-section p + p { margin-top: 10px; }
.legal-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0; }
.legal-list li { display: flex; align-items: flex-start; gap: 10px; }
.legal-list li::before {
  content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; margin-top: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='7' viewBox='0 0 9 7'%3E%3Cpath d='M1 3.5l2.5 2.5 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"), linear-gradient(135deg,#4a90e0 0%,#8030c0 100%);
  background-repeat: no-repeat; background-position: center;
}
.legal-note {
  margin-top: 16px; padding: 16px 18px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(74,144,224,.06) 0%, rgba(128,48,192,.05) 100%);
  border: 1px solid rgba(74,144,224,.10); font-size: 13px; line-height: 1.75; color: #4b5563;
}
.legal-note strong { color: #111; }

.page-inclus .pw-card--split-conclusion {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr) !important;
}
.page-inclus .pw-card--split-conclusion .split-media { order: 1 !important; }
.page-inclus .pw-card--split-conclusion .split-content { order: 2 !important; }
