/*
 * main.css — Ma-Nego Design System
 * Extracted from V4 static HTML mockups
 * Do not edit this file manually; generated from V4 sources.
 */

/* === A11Y helpers (theme-only, not in V4) === */
.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  z-index: 9999;
  font-weight: 600;
  text-decoration: none;
}

/* === BASE === extracted from V4/index.html === */
:root {
    --green: #0dc268;
    --green-deep: #06a055;
    --green-soft: #d7f5e4;
    --green-glow: #c2f0d4;
    --green-bg: #f1fbf5;
    --ink: #0a1f17;
    --ink-soft: #1a3326;
    --text: #334d41;
    --muted: #6b7c74;
    --white: #ffffff;
    --bg: #fafdfb;
    --line: #e6ece9;
    --line-strong: #d1ddd5;
    --yellow: #ffd85c;
    --coral: #ff7a59;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* === TOP STRIP === */
  .top-strip {
    background: linear-gradient(90deg, var(--green) 0%, var(--green-deep) 100%);
    color: white;
    font-size: 13px;
    padding: 10px 0;
    text-align: center;
    letter-spacing: 0.01em;
    font-weight: 500;
  }
  .top-strip span { opacity: 0.95; }
  .top-strip strong { font-weight: 700; }

  /* === NAV === */
  nav {
    background: rgba(250, 253, 251, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
  }
  .logo-mark {
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  /* Logo dans la nav : plus grand, pas de texte à côté */
  .logo-nav .logo-mark {
    width: 130px;
    height: 52px;
  }
  .logo-nav .logo-mark img {
    object-fit: contain;
    object-position: left center;
  }

  .nav-links {
    display: flex;
    gap: 34px;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a:hover { color: var(--green-deep); }
  .nav-links a.has-sub::after {
    content: "";
    display: inline-block;
    width: 6px; height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-3px);
    margin-left: 6px;
    opacity: 0.5;
  }
  .nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .nav-phone {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 10px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .nav-phone:hover { background: var(--green-soft); }

  /* === BUTTONS === */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.005em;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--ink);
    color: white;
  }
  .btn-primary:hover {
    background: var(--ink-soft);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(10, 31, 23, 0.2);
  }
  .btn-green {
    background: var(--green);
    color: white;
    box-shadow: 0 4px 14px rgba(13, 194, 104, 0.3);
  }
  .btn-green:hover {
    background: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(13, 194, 104, 0.4);
  }
  .btn-ghost {
    background: var(--white);
    color: var(--ink);
    border: 1.5px solid var(--line-strong);
  }
  .btn-ghost:hover {
    border-color: var(--ink);
    background: var(--bg);
  }

  /* === HERO === */
  .hero {
    padding: 28px 0 50px;
    position: relative;
    overflow: hidden;
  }
  /* Decorative green blobs */
  .hero::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 60%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
  }
  .hero::after {
    content: "";
    position: absolute;
    bottom: -200px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 216, 92, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 14px 8px 10px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    box-shadow: 0 2px 10px rgba(10, 31, 23, 0.06);
    border: 1px solid var(--line);
    margin-bottom: 26px;
  }
  .badge-dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(13, 194, 104, 0.6);
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(13, 194, 104, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(13, 194, 104, 0); }
  }

  h1.hero-title {
    font-family: inherit;
    font-weight: 800;
    font-size: clamp(42px, 5.6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin-bottom: 22px;
    color: var(--ink);
  }
  h1.hero-title .highlight {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }
  h1.hero-title .underline {
    position: relative;
    display: inline-block;
  }
  h1.hero-title .underline svg {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 14px;
  }

  .hero-sub {
    font-size: 19px;
    color: var(--text);
    margin-bottom: 30px;
    max-width: 480px;
    line-height: 1.55;
  }

  .hero-signals {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
  }
  .signal {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
  }
  .signal-check {
    width: 24px; height: 24px;
    background: var(--green-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-deep);
    flex-shrink: 0;
  }
  .signal strong { font-weight: 700; }

  /* === HERO FORM === */
  .hero-form {
    background: var(--white);
    border-radius: 24px;
    padding: 24px 28px;
    box-shadow: 
      0 2px 8px rgba(10, 31, 23, 0.04),
      0 24px 60px rgba(10, 31, 23, 0.1);
    position: relative;
    border: 1px solid var(--line);
  }
  .hero-form::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--green) 0%, transparent 40%, transparent 60%, var(--yellow) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    pointer-events: none;
  }

  .form-header {
    margin-bottom: 16px;
    text-align: center;
  }
  .form-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .form-header-text h2 {
    font-weight: 800;
    font-size: clamp(26px, 2.4vw, 30px);
    letter-spacing: -0.03em;
    margin-bottom: 6px;
    line-height: 1.1;
    color: var(--ink);
  }
  .form-header-text h2 em {
    font-family: 'Instrument Serif', 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.05em;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0 2px;
  }
  .form-sub {
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.4;
    font-weight: 500;
  }
  .step-dots-inline {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
  }
  .step-dots-inline .step-dot {
    width: 18px;
    height: 3px;
  }
  .step-title {
    display: inline-block;
    background: var(--ink);
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: none;
    box-shadow: 0 6px 18px rgba(10, 31, 23, 0.22);
  }
  .step-title em {
    font-family: 'Instrument Serif', 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.15em;
    color: var(--yellow);
    padding: 0 2px;
  }
  .step-dots {
    display: flex;
    gap: 4px;
  }
  .step-dot {
    width: 22px; height: 5px;
    background: var(--line);
    border-radius: 3px;
    transition: all 0.3s;
  }
  .step-dot.active {
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(13, 194, 104, 0.4);
    animation: dotPulse 2s ease-in-out infinite;
  }
  @keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(13, 194, 104, 0.4); }
    50% { box-shadow: 0 0 0 5px rgba(13, 194, 104, 0); }
  }
  .step-dot.done { background: var(--green-deep); }

  .form-step { display: none; animation: fadeUp 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
  .form-step.active { display: block; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .form-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .form-label small {
    font-weight: 500;
    color: var(--muted);
    margin-left: 6px;
  }

  .form-input {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid var(--line-strong);
    border-radius: 12px;
    background: var(--white);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: all 0.2s;
    font-weight: 500;
  }
  .form-input::placeholder { color: var(--muted); font-weight: 400; }
  /* Placeholder avec * rouge pour champs obligatoires */
  input[required].form-input::placeholder {
    color: var(--muted);
  }
  .mandatory-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 8px;
    margin-bottom: 0;
  }
  .mandatory-star {
    color: #e53935;
    font-weight: 700;
  }
  .form-sublabel {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
    margin-top: 2px;
  }
  .form-input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px var(--green-soft);
  }

  .radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    border-radius: 14px;
    transition: box-shadow 0.3s ease;
  }
  .radio-group-error {
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.25);
    animation: shakeSmall 0.4s ease;
  }
  @keyframes shakeSmall {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
  }
  .radio-card {
    position: relative;
    padding: 16px 14px;
    border: 1.5px solid var(--line-strong);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    background: var(--white);
  }
  .radio-card:hover {
    border-color: var(--green);
    transform: translateY(-1px);
  }
  .radio-card.selected {
    border-color: var(--green);
    background: var(--green-bg);
    box-shadow: 0 0 0 4px var(--green-soft);
  }
  .radio-card.selected::before {
    content: "";
    position: absolute;
    top: 12px; right: 12px;
    width: 18px; height: 18px;
    background: var(--green);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
  }
  .radio-card .rc-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
    color: var(--ink);
  }
  .radio-card .rc-sub {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
  }

  /* === UPLOAD ZONE === */
  .upload-zone {
    border: 2px dashed var(--line-strong);
    border-radius: 16px;
    padding: 36px 20px;
    text-align: center;
    background: var(--green-bg);
    cursor: pointer;
    transition: all 0.25s;
    margin-bottom: 16px;
  }
  .upload-zone:hover, .upload-zone.drag {
    border-color: var(--green);
    background: var(--green-soft);
    transform: scale(1.01);
  }
  .upload-icon {
    width: 52px; height: 52px;
    margin: 0 auto 14px;
    background: var(--green);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(13, 194, 104, 0.3);
  }
  .upload-zone p {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--ink);
  }
  .upload-zone small {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
  }
  .upload-zone strong {
    color: var(--green-deep);
    font-weight: 700;
    text-decoration: underline;
  }

  .form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    gap: 12px;
  }
  .form-actions .btn { flex: 1; justify-content: center; }
  .btn-back {
    flex: 0 0 auto !important;
    padding: 14px 16px !important;
    color: var(--muted);
    background: transparent;
    border: 1.5px solid transparent;
    font-weight: 600;
  }
  .btn-back:hover { color: var(--ink); background: var(--bg); }

  .small-print {
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
  }
  .small-print a { color: var(--green-deep); font-weight: 600; }

  /* Success */
  .success-state { text-align: center; padding: 20px 0; }
  .success-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    border-radius: 50%;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 16px 32px rgba(13, 194, 104, 0.35);
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  @keyframes scaleIn {
    from { opacity: 0; transform: scale(0.3); }
    to { opacity: 1; transform: scale(1); }
  }
  .success-state h3 {
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
  }
  .success-state p {
    color: var(--text);
    margin-bottom: 24px;
  }

  /* Option "ou prendre RDV" dans étape 3 du formulaire audit */
  .form-alt-rdv {
    margin-top: 14px;
    text-align: center;
  }
  .form-alt-divider {
    position: relative;
    margin-bottom: 14px;
  }
  .form-alt-divider::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 50%;
    height: 1px;
    background: var(--line);
  }
  .form-alt-divider span {
    position: relative;
    display: inline-block;
    padding: 0 12px;
    background: white;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .form-alt-rdv-text {
    font-size: 13.5px;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: 500;
  }
  .form-alt-rdv-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: white;
    color: var(--green-deep);
    border: 1.5px solid var(--green);
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
  }
  .form-alt-rdv-cta:hover {
    background: var(--green);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(13, 194, 104, 0.22);
  }

  /* === TRUST BAR === */
  .trust-section {
    padding: 40px 0 0;
  }
  .trust-bar {
    padding: 48px 0 0;
    margin-top: 40px;
  }
  .trust-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 28px 36px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: 0 2px 8px rgba(10, 31, 23, 0.03);
  }
  .trust-label {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
  }
  .trust-logos {
    display: flex;
    gap: 44px;
    align-items: center;
    flex-wrap: wrap;
  }
  .trust-logo {
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    opacity: 0.75;
    transition: opacity 0.25s, transform 0.25s;
    text-decoration: none;
    height: 32px;
  }
  .trust-logo:hover {
    opacity: 1;
    transform: translateY(-1px);
  }
  .trust-logo svg { height: 100%; width: auto; display: block; }
  .trust-logo img { height: 100%; width: auto; display: block; object-fit: contain; filter: grayscale(1); transition: filter 0.25s; }
  .trust-logo:hover img { filter: grayscale(0); }

  /* === HERO PRESS (logos médias carrousel défilant) === */
  .hero-press {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px dashed var(--line-strong);
    max-width: 540px;
  }
  .hero-press-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }
  .hero-press-logos {
    overflow: hidden;
    position: relative;
    /* Fades on edges */
    mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
  }
  .hero-press-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: pressScroll 24s linear infinite;
  }
  .hero-press-track:hover { animation-play-state: paused; }
  @keyframes pressScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .hero-press-logo {
    display: inline-flex;
    align-items: center;
    height: 26px;
    transition: transform 0.25s;
    text-decoration: none;
    flex-shrink: 0;
  }
  .hero-press-logo:hover { transform: translateY(-1px); }
  .hero-press-logo img, .hero-press-logo svg {
    height: 100%;
    width: auto;
    display: block;
  }

  /* === SECTION HEADER === */
  .section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 28px;
  }
  /* Pour les H2 qui doivent tenir sur une ligne : on libère le parent de sa contrainte de largeur */
  .section-header:has(.h2-oneline) {
    max-width: none;
  }
  .section-header:has(.h2-oneline) .subhead-title,
  .section-header:has(.h2-oneline) > p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .h2-oneline {
    white-space: nowrap;
  }
  @media (max-width: 720px) {
    .h2-oneline { white-space: normal; }
  }
  .section-header .badge {
    margin-bottom: 20px;
  }
  .section-header h2 {
    font-weight: 800;
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }
  .section-header h2 .highlight {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .pack-highlight {
    display: inline-block;
    margin-top: 10px;
    font-weight: 800;
    font-size: 1.6em;
    letter-spacing: -0.025em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .pack-highlight:hover {
    opacity: 0.8;
    text-decoration: underline;
    text-decoration-color: var(--green-deep);
    text-underline-offset: 4px;
  }
  .section-header p {
    font-size: 17px;
    color: var(--text);
  }
  .section-header .subhead-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--green-deep);
    margin-top: 0;
    margin-bottom: 14px;
    letter-spacing: -0.015em;
  }
  .section-header p + p {
    margin-top: 10px;
  }

  /* === MISSION INTRO === */
  .mission-intro {
    padding: 30px 0 10px;
  }
  .mission-intro .section-header {
    margin-bottom: 0;
  }

  /* === HOW IT WORKS === */
  .how {
    padding: 70px 0;
    position: relative;
  }

  /* === PLEDGES (3 engagements) === */
  .pledges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .pledge-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 42px 36px 38px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .pledge-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(10, 31, 23, 0.1);
  }
  .pledge-card h3 {
    font-size: clamp(26px, 2.3vw, 32px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-bottom: 18px;
    color: var(--ink);
  }
  .pledge-accent-word {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.015em;
    display: inline-block;
    padding-bottom: 2px;
  }
  .pledge-accent-green { color: var(--green-deep); }
  .pledge-accent-blue { color: #1d3f7a; }
  .pledge-accent-yellow { color: #b68800; }
  .pledge-card > p {
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.65;
  }
  .pledge-card > p strong {
    color: var(--ink);
    font-weight: 700;
  }

  /* === NOS ENGAGEMENTS (4 pillars home) === */
  .pillars-home {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg) 0%, white 100%);
  }
  .pillars-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .pillar-home-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 34px 28px 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }
  .pillar-home-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(10, 31, 23, 0.1);
  }
  .pillar-home-card h3 {
    font-size: clamp(22px, 1.8vw, 26px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 14px;
    color: var(--ink);
  }
  .pillar-home-accent-word {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.015em;
    display: inline-block;
    padding-bottom: 2px;
  }
  .pillar-home-accent-green { color: var(--green-deep); }
  .pillar-home-accent-blue { color: #1d3f7a; }
  .pillar-home-accent-yellow { color: #b68800; }
  .pillar-home-accent-coral { color: #c54420; }
  .pillar-home-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
  }

  /* === HOW IT WORKS (Steps) === */
  .howitworks {
    padding: 70px 0;
    background: var(--green-bg);
  }
  .mission-legal-note {
    max-width: 780px;
    margin: -20px auto 50px;
    padding: 20px 28px;
    background: var(--white);
    border-left: 3px solid var(--green);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text);
    line-height: 1.55;
    box-shadow: 0 2px 8px rgba(10, 31, 23, 0.03);
  }
  .mission-legal-note strong {
    color: var(--ink);
    font-weight: 700;
  }

  .steps-timeline {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .step-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    height: 100%;
  }
  .step-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(10, 31, 23, 0.08);
    border-color: var(--green-glow);
  }
  .step-number {
    display: none;
  }
  .step-num-inline {
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-right: 6px;
  }
  .step-content {
    flex: 1;
  }
  .step-content h3 {
    font-size: clamp(24px, 2.2vw, 30px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 14px;
    color: var(--ink);
  }
  .step-accent {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.015em;
    display: inline-block;
    padding-bottom: 2px;
  }
  .step-accent-green,
  .step-h3-full.step-accent-green { color: var(--green-deep); }
  .step-accent-blue,
  .step-h3-full.step-accent-blue { color: #1d3f7a; }
  .step-accent-yellow,
  .step-h3-full.step-accent-yellow { color: #b68800; }

  /* H3 entier en italique coloré (numéro + titre même style) */
  .step-h3-full {
    font-family: 'Instrument Serif', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    letter-spacing: -0.015em !important;
    font-size: clamp(28px, 2.6vw, 36px) !important;
    line-height: 1.1 !important;
  }
  .step-h3-full .step-num-inline {
    font-family: 'Instrument Serif', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    letter-spacing: -0.015em !important;
    color: inherit !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    margin-right: 10px !important;
  }
  .step-h3-full .step-tail {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
    font-style: normal !important;
    font-weight: 800 !important;
    letter-spacing: -0.035em !important;
    color: var(--ink) !important;
    font-size: 0.82em !important;
  }
  .step-content p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .step-content p:last-of-type { margin-bottom: 0; }
  .step-content strong { color: var(--ink); font-weight: 700; }

  .step-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
    align-items: center;
  }
  .step-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-deep);
    background: var(--green-bg);
    border: 1.5px solid var(--green-glow);
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
  }
  .step-link:hover {
    color: var(--green-deep);
    background: var(--green-soft);
    border-color: var(--green);
    transform: translateY(-1px);
  }
  .step-link-accent {
    background: var(--green);
    color: white;
    border: 1.5px solid var(--green);
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(13, 194, 104, 0.25);
  }
  .step-link-accent:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(13, 194, 104, 0.35);
  }

  /* === STATS BAR (dans hero) === */
  .stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 50px;
  }

  /* === HERO SERVICES === */
  .hero-services {
    margin-top: 60px;
  }
  .hero-services-header {
    text-align: center;
    margin-bottom: 28px;
  }
  .hero-services-header h3 {
    font-weight: 800;
    font-size: clamp(24px, 2.8vw, 32px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-top: 14px;
  }
  .hero-services-header h3 .highlight {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero-services-header p {
    font-size: 17px;
    color: var(--text);
    margin-top: 12px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .stat-mini {
    position: relative;
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-align: center;
  }
  .stat-mini::before {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
    opacity: 0.5;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  .stat-mini:hover {
    transform: translateY(-4px);
    border-color: var(--green-glow);
    box-shadow: 0 16px 32px rgba(13, 194, 104, 0.12);
  }
  .stat-mini:hover::before { opacity: 1; }

  .stat-mini:nth-child(1)::before { background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%); }
  .stat-mini:nth-child(2)::before { background: radial-gradient(circle, rgba(255, 216, 92, 0.4) 0%, transparent 70%); }
  .stat-mini:nth-child(3)::before { background: radial-gradient(circle, rgba(255, 122, 89, 0.25) 0%, transparent 70%); }
  .stat-mini:nth-child(4)::before { background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%); }

  .stat-mini-emoji {
    font-size: 26px;
    margin-bottom: 12px;
    display: block;
    position: relative;
    z-index: 1;
  }
  .stat-mini-num {
    font-weight: 800;
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
  }
  .stat-mini-label {
    font-size: 13px;
    color: var(--text);
    font-weight: 600;
    line-height: 1.35;
    position: relative;
    z-index: 1;
  }

  /* === SERVICES V2 (avec illustration haut) === */
  .service-card-v2 {
    padding: 0 !important;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    display: flex !important;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
  }
  .service-card-v2::before { display: none; }
  .service-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px rgba(10, 31, 23, 0.12);
    border-color: var(--green-glow);
  }
  .service-illu {
    width: 100%;
    aspect-ratio: 320/150;
    overflow: hidden;
    position: relative;
    margin: 0;
  }
  .service-illu svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .service-card-v2:hover .service-illu svg {
    transform: scale(1.04);
  }
  .service-body {
    padding: 26px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .service-card .service-body h3,
  .service-card-v2 .service-body h3 {
    font-size: clamp(26px, 2.6vw, 36px) !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    line-height: 0.85 !important;
    margin-bottom: 14px !important;
    color: var(--ink) !important;
  }
  .svc-accent {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.015em;
    display: inline-block;
    padding-bottom: 2px;
  }
  .svc-accent-green { color: var(--green-deep); }
  .svc-accent-blue { color: #1d3f7a; }
  .svc-accent-yellow { color: #b68800; }
  .svc-accent-coral { color: #c54420; }
  .svc-tail {
    font-size: 0.82em;
    display: inline-block;
    white-space: nowrap;
  }
  .service-body p {
    color: var(--text);
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 16px;
    flex: 1;
  }
  .service-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--green-bg);
    color: var(--green-deep);
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.25s;
    align-self: flex-start;
  }
  .service-card-v2:hover .service-btn {
    background: var(--green);
    color: white;
    gap: 10px;
    box-shadow: 0 6px 14px rgba(13, 194, 104, 0.3);
  }

  /* === SERVICES === */
  .services {
    padding: 70px 0;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green) 0%, var(--green-deep) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 31, 23, 0.1);
    border-color: var(--green-glow);
  }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 48px; height: 48px;
    background: var(--green-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-deep);
    margin-bottom: 20px;
    transition: all 0.3s;
  }
  .service-card:hover .service-icon {
    background: var(--green);
    color: white;
    transform: rotate(-5deg) scale(1.05);
  }
  .service-card h3 {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .service-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 16px;
    flex: 1;
  }
  .service-card .arrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--green-deep);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }
  .service-card:hover .arrow { gap: 10px; }

  /* === EXPERTISES === */
  .expertises {
    padding: 50px 0;
    background: var(--green-bg);
    border-radius: 40px;
    margin: 0 32px;
  }
  .exp-header {
    text-align: center;
    margin-bottom: 40px;
  }
  .exp-header h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  .exp-header p {
    color: var(--text);
    margin-top: 8px;
  }
  .exp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    max-width: 820px;
    margin: 0 auto;
  }
  .exp-chip {
    padding: 8px 6px;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1.5px solid transparent;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .exp-chip:hover {
    background: var(--ink);
    color: white;
    transform: translateY(-3px) rotate(-1deg);
    box-shadow: 0 12px 24px rgba(10, 31, 23, 0.15);
  }
  .exp-chip .exp-emoji {
    display: block;
    font-size: 34px;
    margin-bottom: 2px;
  }

  /* === RESULTS === */
  .results {
    padding: 30px 0;
  }
  .results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
  }
  .result-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: all 0.3s;
  }
  .result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 31, 23, 0.08);
  }
  .result-card .rc-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-soft);
    color: var(--green-deep);
    padding: 5px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .result-card .rc-amount {
    font-weight: 800;
    font-size: 48px;
    letter-spacing: -0.035em;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  .result-card .rc-label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.45;
    color: var(--ink);
  }
  .result-card .rc-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-weight: 500;
  }

  /* === TESTIMONIALS MULTI === */
  .testimonials-multi {
    padding: 30px 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
  }
  .testimonials-multi::before {
    content: "";
    position: absolute;
    top: 100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
  }
  .testimonials-multi .section-header { position: relative; z-index: 1; }

  .testi-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid var(--line);
    margin-top: 12px;
    font-size: 15px;
  }
  .testi-rating .stars { font-size: 18px; }
  .testi-rating strong { font-weight: 800; color: var(--ink); }
  .testi-rating-sub { color: var(--muted); font-size: 14px; }

  .stars {
    color: var(--yellow);
    font-size: 18px;
    letter-spacing: 1px;
  }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 50px 0 30px;
    position: relative;
    z-index: 1;
  }
  .testi-mini {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 26px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
  .testi-mini::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green) 0%, var(--green-deep) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .testi-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(10, 31, 23, 0.08);
    border-color: var(--green-glow);
  }
  .testi-mini:hover::before { transform: scaleX(1); }

  .testi-mini-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
  }
  .testi-mini-stars { color: var(--yellow); font-size: 15px; letter-spacing: 1px; }
  .testi-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .testi-mini-quote {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 18px;
    flex: 1;
  }
  .testi-mini-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .testi-mini-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
  }
  .testi-mini-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
    line-height: 1.2;
  }
  .testi-mini-date {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
  }

  .testi-actions {
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 1;
  }

  /* === NEWS === */
  .news {
    padding: 50px 0;
  }
  .news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
  .news-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 31, 23, 0.1);
    border-color: var(--green-glow);
  }
  .news-card-lg {
    grid-column: span 2;
    grid-row: span 2;
  }
  .news-img {
    width: 100%;
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    background-color: var(--green-bg);
    position: relative;
    overflow: hidden;
  }
  .news-card-lg .news-img {
    aspect-ratio: 16/9;
  }
  .news-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10,31,23,0.3) 100%);
  }
  .news-tag {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 100px;
    letter-spacing: 0.02em;
  }
  .news-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .news-card-lg .news-body { padding: 28px; }
  .news-date {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-deep);
    margin-bottom: 10px;
  }
  .news-body h3 {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.25;
    margin-bottom: 10px;
    color: var(--ink);
  }
  .news-card-lg h3 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.025em;
  }
  .news-body p {
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.55;
    margin-bottom: 14px;
    flex: 1;
  }
  .news-card-lg p { font-size: 15px; line-height: 1.6; }
  .news-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--green-deep);
    margin-top: auto;
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .news-card:hover .news-more { gap: 8px; }
  .news-actions { text-align: center; }

  /* === CTA FOOT === */
  .cta-foot {
    padding: 60px 32px;
  }
  .cta-foot-inner {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    color: white;
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-foot-inner::before {
    content: "";
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
  }
  .cta-foot-inner::after {
    content: "€";
    position: absolute;
    bottom: -80px; right: 40px;
    font-size: 400px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255,255,255,0.08);
    pointer-events: none;
  }
  .cta-foot h2 {
    font-weight: 800;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
  }
  .cta-foot p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
  }
  .cta-foot-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .cta-foot .btn-white {
    background: white;
    color: var(--green-deep);
  }
  .cta-foot .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  }
  .cta-foot .btn-outline-white {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.3);
  }
  .cta-foot .btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
  }

  /* === FOOTER === */
  footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.65);
    padding: 70px 0 32px;
    font-size: 14px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .foot-brand .logo {
    color: white;
    margin-bottom: 18px;
  }
  .foot-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 20px;
    text-align: left;
  }
  .foot-social {
    display: flex;
    gap: 10px;
  }
  .foot-social a {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
  }
  .foot-social a:hover {
    background: var(--green);
    transform: translateY(-2px);
  }
  .foot-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
  }
  .foot-col ul { list-style: none; }
  .foot-col li { margin-bottom: 10px; }
  .foot-col a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
  }
  .foot-col a:hover { color: var(--green); }
  .foot-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
  }

  /* === RESPONSIVE === */
  @media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .nav-links { display: none; }
    .pledges-grid { grid-template-columns: 1fr; gap: 16px; }
    .pillars-home-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .steps-timeline { grid-template-columns: 1fr; gap: 16px; }
    .step-block { padding: 28px; gap: 12px; }
    .step-number { font-size: 32px; min-width: auto; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 30px 0; padding: 28px; }
    .stat-mini:nth-child(3) { border-left: none; padding-left: 0; }
    .services-grid { grid-template-columns: 1fr; }
    .exp-grid { grid-template-columns: repeat(3, 1fr); }
    .results-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .foot-bottom { flex-direction: column; gap: 10px; }
    .testi-grid { grid-template-columns: 1fr; gap: 16px; }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .news-card-lg { grid-column: span 2; }
    .cta-foot-inner { padding: 50px 30px; }
    .expertises { margin: 0 16px; }
  }
  @media (max-width: 560px) {
    .container { padding: 0 20px; }
    .hero-form { padding: 24px; }
    .radio-group { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr; padding: 24px; }
    .stat-mini { border-left: none !important; padding-left: 0 !important; padding-right: 0 !important; }
    .exp-grid { grid-template-columns: repeat(2, 1fr); }
    .foot-grid { grid-template-columns: 1fr; }
    .trust-inner { justify-content: center; text-align: center; }
    .stat-mini-num { font-size: 32px; }
    .news-grid { grid-template-columns: 1fr; }
    .news-card-lg { grid-column: span 1; grid-row: span 1; }
    .news-card-lg h3 { font-size: 18px; }
    .pillars-home-grid { grid-template-columns: 1fr; }
  }


/* === SERVICE PAGES === from ma-nego-assurance.html === */
.breadcrumb {
    padding: 20px 0 0;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
  }

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

.breadcrumb a:hover { color: var(--green-deep); }

.breadcrumb span { margin: 0 8px; opacity: 0.5; }

.hero-grid > * {
    min-width: 0;
  }

.hero-grid-single {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
  }

.badge-emoji { font-size: 16px; }

.hero-lede {
    font-size: 19px;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.55;
  }

.hero-lede strong { color: var(--ink); font-weight: 700; }

.hero-quote {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.35;
    color: var(--green-deep);
    padding: 14px 0 14px 18px;
    border-left: 3px solid var(--green);
    margin: 22px 0 28px;
    white-space: nowrap;
  }

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

.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    max-height: 520px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(10, 31, 23, 0.18);
  }

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(circle at 30% 20%, rgba(13, 194, 104, 0.4) 0%, transparent 50%),
      radial-gradient(circle at 70% 80%, rgba(255, 216, 92, 0.25) 0%, transparent 50%);
  }

.bill-card {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    animation: floatY 4s ease-in-out infinite;
  }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

.bill-card .bc-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }

.bill-card .bc-old {
    font-size: 20px;
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 600;
  }

.bill-card .bc-new {
    font-size: 32px;
    font-weight: 800;
    color: var(--green-deep);
    letter-spacing: -0.02em;
    margin: 2px 0;
  }

.bill-card .bc-delta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-soft);
    color: var(--green-deep);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 4px;
  }

.visual-bolt {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--yellow);
    font-size: 140px;
    line-height: 1;
    opacity: 0.6;
    filter: drop-shadow(0 4px 20px rgba(255, 216, 92, 0.5));
    animation: glow 3s ease-in-out infinite;
  }

@keyframes glow {
    0%, 100% { opacity: 0.5; filter: drop-shadow(0 4px 20px rgba(255, 216, 92, 0.4)); }
    50% { opacity: 0.8; filter: drop-shadow(0 4px 30px rgba(255, 216, 92, 0.7)); }
  }

.visual-label {
    position: absolute;
    bottom: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 10px 14px;
    border-radius: 100px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

.visual-label .vl-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px var(--green);
  }

.stats-callout {
    padding: 40px 0 80px;
  }

.stats-callout-card {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
    border-radius: 28px;
    padding: 48px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

.stats-callout-card::before {
    content: "";
    position: absolute;
    top: -100px; right: -50px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 216, 92, 0.25) 0%, transparent 60%);
  }

.stats-callout-card::after {
    content: "⚡";
    position: absolute;
    bottom: -40px; left: 40px;
    font-size: 200px;
    opacity: 0.08;
    line-height: 1;
  }

.stats-callout-card .sc-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 216, 92, 0.2);
    color: var(--yellow);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

.stats-callout-card h2 {
    font-weight: 800;
    font-size: clamp(32px, 4.2vw, 54px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }

.stats-callout-card h2 .big-num {
    background: linear-gradient(135deg, #fff 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

.stats-callout-card p {
    font-size: 17px;
    opacity: 0.85;
    max-width: 620px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

.stats-callout-top {
    padding-top: 32px;
    padding-bottom: 32px;
  }

.stats-callout-top .stats-callout-card {
    padding: 34px 48px;
  }

.stats-callout-top .stats-callout-card h2 {
    margin-bottom: 0;
  }

.expertise-aside {
    background: linear-gradient(160deg, #1d3f7a 0%, #0f2550 100%);
    color: white;
    border-radius: 24px;
    padding: 32px 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(15, 37, 80, 0.3);
    align-self: start;
    margin-top: 8px;
    overflow: hidden;
    width: 100%;
    min-width: 0;
  }

.expertise-aside::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
      linear-gradient(135deg, rgba(255,255,255,0.05) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.05) 75%, transparent 75%, transparent);
    background-size: 16px 16px;
    pointer-events: none;
    opacity: 0.7;
  }

.expertise-aside::after {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255, 216, 92, 0.3) 0%, transparent 70%);
    pointer-events: none;
  }

.expertise-aside-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
  }

.expertise-aside-icon {
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 216, 92, 0.35);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffd85c;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
  }

.expertise-aside-icon svg {
    display: block;
    width: 30px;
    height: 30px;
  }

.expertise-aside-kicker {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(26px, 2.4vw, 32px);
    font-weight: 800;
    letter-spacing: -0.025em;
    text-transform: none;
    color: #ffd85c;
    line-height: 1;
  }

.expertise-aside p {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 16px;
    font-weight: 500;
    position: relative;
    z-index: 1;
  }

.expertise-aside p strong {
    color: white;
    font-weight: 700;
  }

.expertise-aside-lead {
    margin-top: 8px;
    margin-bottom: 12px !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700 !important;
    color: #ffd85c !important;
  }

.expertise-aside ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
  }

.expertise-aside ul li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 16.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

.expertise-aside ul li:last-child { border-bottom: none; }

.expertise-aside ul li strong {
    color: white;
    font-weight: 700;
  }

.expertise-aside ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 20px;
    height: 20px;
    background: #ffd85c;
    color: #0f2550;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f2550' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 12px 12px;
    background-position: center;
    background-repeat: no-repeat;
  }

.expertise-aside-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    color: white !important;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 18px rgba(13, 194, 104, 0.35);
  }

.expertise-aside-btn:hover {
    transform: translateY(-2px);
    gap: 12px;
    box-shadow: 0 10px 24px rgba(13, 194, 104, 0.45);
  }

.dyk-banner {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--ink);
    color: white;
    border-radius: 20px;
    padding: 22px 26px;
    margin-bottom: 28px;
    position: relative;
    box-shadow: 0 10px 30px rgba(10, 31, 23, 0.15);
  }

.dyk-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--green) 0%, var(--green-deep) 100%);
    border-radius: 20px 0 0 20px;
  }

.dyk-banner-icon {
    font-size: 30px;
    flex-shrink: 0;
    line-height: 1;
  }

.dyk-banner-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 6px;
  }

.dyk-banner p {
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    font-weight: 500;
  }

.dyk-banner p strong {
    color: white;
    font-weight: 700;
  }

.params {
    padding: 55px 0;
    background: linear-gradient(180deg, var(--bg) 0%, white 100%);
  }

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

.param-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 42px 36px 38px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

.param-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(10, 31, 23, 0.1);
  }

.param-card h3 {
    font-size: clamp(26px, 2.3vw, 32px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-bottom: 18px;
    color: var(--ink);
  }

.param-accent {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.015em;
    display: inline-block;
    padding-bottom: 2px;
  }

.param-accent-green { color: var(--green-deep); }

.param-accent-blue { color: #1d3f7a; }

.param-accent-yellow { color: #b68800; }

.param-accent-coral { color: #c54420; }

.param-card p {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--text);
  }

.explain {
    padding: 55px 0;
    background: var(--bg);
  }

.explain.explain-alt {
    background: white;
    padding-top: 0;
  }

.badge-green {
    background: var(--green-bg) !important;
    color: var(--green-deep) !important;
    border-color: var(--green-glow) !important;
  }

.explain-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
  }

.explain-container .section-header {
    margin-bottom: 28px;
  }

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

.explain-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

.explain-grid-1 {
    grid-template-columns: 1fr;
    max-width: 1100px;
    margin: 0 auto;
  }

.explain-grid-2-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
  }

.explain-card-badge .badge {
    font-size: 13px;
  }

.explain-card-solo {
    padding: 40px 36px 36px;
    text-align: left;
  }

.explain-card-solo h3 {
    text-align: left;
    margin-bottom: 18px;
  }

.explain-card-solo p {
    max-width: none !important;
    margin: 0 0 14px 0 !important;
    text-align: left;
    font-size: 15.5px !important;
    line-height: 1.65;
  }

.explain-card-solo p:last-child {
    margin-bottom: 0 !important;
  }

.explain-card-badge {
    margin-bottom: 18px;
    text-align: left;
  }

.explain-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 56px 48px 52px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

.explain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(10, 31, 23, 0.1);
  }

.explain-card h3 {
    font-size: clamp(26px, 2.2vw, 32px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-bottom: 22px;
    color: var(--ink);
  }

.explain-card h3.explain-accent-green { color: var(--green-deep); }

.explain-card h3.explain-accent-blue { color: #1d3f7a; }

.explain-card h3.explain-accent-yellow { color: #b68800; }

.explain-card h3.explain-accent-coral { color: #c54420; }

.explain-accent {
    font-weight: 800;
    letter-spacing: -0.02em;
    display: inline-block;
  }

.explain-accent-green { color: var(--green-deep); }

.explain-accent-blue { color: #1d3f7a; }

.explain-accent-yellow { color: #b68800; }

.explain-accent-coral { color: #c54420; }

.badge-dark {
    background: var(--ink) !important;
    color: var(--yellow) !important;
    border-color: var(--ink) !important;
  }

.badge-dot-yellow {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yellow);
    margin-right: 4px;
    box-shadow: 0 0 8px rgba(255, 216, 92, 0.6);
  }

.explain-card p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    margin: 0 auto;
    max-width: 560px;
  }

.explain-card strong {
    color: var(--ink);
    font-weight: 700;
  }

.pillars {
    padding: 80px 0;
    background: var(--green-bg);
  }

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

.pillar-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

.pillar-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green) 0%, var(--green-deep) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: var(--green-glow);
    box-shadow: 0 20px 40px rgba(10, 31, 23, 0.08);
  }

.pillar-card:hover::before { transform: scaleX(1); }

.pillar-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-deep);
    margin-bottom: 20px;
    transition: all 0.3s;
  }

.pillar-card:hover .pillar-icon {
    background: var(--green);
    color: white;
    transform: rotate(-5deg) scale(1.05);
  }

.pillar-card h3 {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }

.pillar-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.55;
  }

.pillar-card p strong { color: var(--ink); font-weight: 700; }

.didyouknow {
    padding: 100px 0;
  }

.dyk-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
  }

.dyk-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 420px;
    margin: 0 auto;
  }

.dyk-visual-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--green) 0deg, var(--green) 288deg, var(--line) 288deg, var(--line) 360deg);
    padding: 24px;
    -webkit-mask: radial-gradient(circle at center, transparent 40%, black 40.5%);
    mask: radial-gradient(circle at center, transparent 40%, black 40.5%);
  }

.dyk-visual-inner {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
  }

.dyk-visual-num {
    font-size: 90px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

.dyk-visual-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

.dyk-body h2 {
    font-weight: 800;
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }

.dyk-body h2 .highlight {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

.dyk-body p {
    font-size: 17px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 18px;
  }

.dyk-body strong { color: var(--ink); font-weight: 700; }

.dyk-record {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--ink);
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    margin-top: 12px;
  }

.pricing {
    padding: 100px 0;
    background: var(--green-bg);
  }

.pricing-card {
    background: var(--white);
    border-radius: 28px;
    padding: 56px 48px;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 30px rgba(10, 31, 23, 0.06);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }

.pricing-card::before {
    content: "€";
    position: absolute;
    top: -40px; right: 30px;
    font-size: 280px;
    font-weight: 800;
    color: var(--green-soft);
    line-height: 1;
    opacity: 0.4;
  }

.pricing-card .pc-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--green-soft);
    color: var(--green-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

.pricing-card h2 {
    font-weight: 800;
    font-size: clamp(30px, 3.8vw, 42px);
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }

.pricing-card .pc-sub {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
  }

.pricing-card .pc-big {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }

.pricing-card .pc-note {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
  }

.mission {
    padding: 100px 0;
  }

.mission-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
  }

.mission-step {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

.mission-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(10, 31, 23, 0.08);
    border-color: var(--green-glow);
  }

.mission-step-num {
    width: 44px; height: 44px;
    background: var(--green);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(13, 194, 104, 0.3);
  }

.mission-step h3 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
  }

.mission-step p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.55;
    margin-bottom: 12px;
  }

.mission-step a {
    font-size: 13px;
    color: var(--green-deep);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
  }

.mission-step a:hover { gap: 8px; }

.mission-note {
    max-width: 720px;
    margin: 0 auto 40px;
    padding: 20px 28px;
    background: var(--green-bg);
    border-left: 3px solid var(--green);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text);
    font-style: italic;
  }

.mission-note strong { color: var(--ink); font-style: normal; }

.related {
    padding: 55px 0;
    background: var(--bg);
    overflow: hidden;
  }

.related-header {
    text-align: center;
    margin-bottom: 40px;
  }

.related-header h3 {
    font-size: clamp(28px, 2.6vw, 36px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--ink);
  }

.related-header p {
    font-size: 15px;
    color: var(--muted);
  }

.related-carousel-wrap {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
  }

.related-carousel-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: relatedScroll 40s linear infinite;
  }

.related-carousel-track:hover {
    animation-play-state: paused;
  }

@keyframes relatedScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

.related-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: 100px;
    text-decoration: none;
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    white-space: nowrap;
  }

.related-chip:hover {
    background: var(--ink);
    color: white;
    transform: translateY(-3px);
    border-color: var(--ink);
    box-shadow: 0 10px 20px rgba(10, 31, 23, 0.15);
  }

.related-chip .rc-emoji {
    font-size: 22px;
    line-height: 1;
  }

.btn-white { background: white; color: var(--green-deep); }

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.3);
  }

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
  }


/* === ARTICLE PAGES === from article-dpe-2026.html === */
a { color: inherit; }

.article-header {
    padding: 30px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

.article-header::before {
    content: "";
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(13, 194, 104, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }

.article-tag {
    display: inline-block;
    background: var(--green-bg);
    color: var(--green-deep);
    border: 1px solid var(--green-glow);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
  }

.article-header h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: var(--ink);
    max-width: 860px;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
  }

.article-header h1 em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--green-deep);
  }

.article-meta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
    position: relative;
    z-index: 1;
  }

.article-meta-dot {
    width: 3px; height: 3px; border-radius: 50%;
    background: var(--muted);
  }

.article-cover {
    max-width: 1000px;
    margin: 0 auto 50px;
    aspect-ratio: 16/7;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-soft) 0%, var(--green-glow) 100%);
    position: relative;
  }

.article-cover svg {
    width: 100%;
    height: 100%;
    display: block;
  }

.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 0 60px;
  }

.article-lede {
    font-size: 21px;
    line-height: 1.55;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 36px;
    padding-left: 20px;
    border-left: 4px solid var(--green);
  }

.article-body h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 44px 0 18px;
    line-height: 1.15;
  }

.article-body h2 em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--green-deep);
  }

.article-body h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 32px 0 14px;
    line-height: 1.2;
  }

.article-body p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 18px;
  }

.article-body p strong {
    color: var(--ink);
    font-weight: 700;
  }

.article-body ul, .article-body ol {
    margin: 0 0 22px 0;
    padding-left: 0;
    list-style: none;
  }

.article-body li {
    position: relative;
    padding: 6px 0 6px 28px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--text);
  }

.article-body ul li::before {
    content: "";
    position: absolute;
    left: 4px; top: 15px;
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
  }

.article-body ol { counter-reset: olcount; }

.article-body ol li {
    counter-increment: olcount;
  }

.article-body ol li::before {
    content: counter(olcount);
    position: absolute;
    left: 0; top: 6px;
    width: 22px; height: 22px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.article-body blockquote {
    margin: 30px 0;
    padding: 24px 28px;
    background: var(--green-bg);
    border-left: 4px solid var(--green);
    border-radius: 0 16px 16px 0;
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.45;
    color: var(--ink-soft);
  }

.article-body blockquote .author {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
    color: var(--green-deep);
    margin-top: 12px;
    letter-spacing: 0.02em;
  }

.stat-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 36px 0;
  }

.stat-highlight-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 18px;
    text-align: center;
  }

.stat-highlight-num {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 6px;
  }

.stat-highlight-label {
    font-size: 13px;
    color: var(--text);
    font-weight: 600;
    line-height: 1.35;
  }

.article-cta {
    max-width: 860px;
    margin: 40px auto 60px;
    padding: 36px 40px;
    background: linear-gradient(165deg, var(--green) 0%, var(--green-deep) 100%);
    border-radius: 24px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

.article-cta::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(255, 216, 92, 0.3) 0%, transparent 70%);
  }

.article-cta h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
    position: relative; z-index: 1;
  }

.article-cta p {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 560px;
    margin-left: auto; margin-right: auto;
    color: rgba(255,255,255,0.95);
    position: relative; z-index: 1;
  }

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--green-deep);
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    position: relative; z-index: 1;
  }

.cta-btn:hover { transform: translateY(-2px); }

.other-articles {
    background: white;
    border-top: 1px solid var(--line);
    padding: 60px 0;
  }

.other-articles-header {
    text-align: center;
    margin-bottom: 32px;
  }

.other-articles-header h2 {
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1.1;
  }

.other-articles-header h2 em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--green-deep);
  }

.other-articles {
    padding: 50px 0 70px;
    background: var(--bg);
    overflow: hidden;
  }

.other-articles-header {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

.other-articles-header h2 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
  }

.other-articles-header h2 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--green-deep);
  }

.other-nav {
    display: flex;
    gap: 8px;
  }

.other-nav button {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: white;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }

.other-nav button:hover {
    background: var(--green);
    color: white;
    border-color: var(--green);
    transform: translateY(-1px);
  }

.other-nav button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
  }

.other-carousel {
    position: relative;
    overflow: hidden;
  }

.other-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

.other-card {
    flex: 0 0 calc((100% - 40px) / 3);
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
  }

.other-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 31, 23, 0.08);
    border-color: var(--green-glow);
  }

.other-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    background-color: var(--green-soft);
    display: block;
  }

.other-card-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

.other-card-tag {
    display: inline-block;
    background: var(--green-bg);
    color: var(--green-deep);
    border-radius: 100px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    width: fit-content;
  }

.other-card h4 {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.3;
  }

@media (max-width: 640px) {
    .other-card { flex: 0 0 100%; }
    .other-articles-header { flex-direction: column; align-items: flex-start; }
  }

footer a { color: rgba(255,255,255,0.9); text-decoration: none; }

footer .foot-logo { width: 120px; margin: 0 auto 20px; display: block; }

.source-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 36px 0 10px;
    padding: 20px 24px;
    background: var(--green-bg);
    border: 1px solid var(--green-glow);
    border-radius: 14px;
  }

.source-block-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--green-deep);
  }

.source-block-content {
    flex: 1;
    min-width: 0;
  }

.source-block-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-deep);
    margin-bottom: 3px;
  }

.source-block-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
  }

.source-block-link:hover {
    color: var(--green-deep);
  }

.article-body.truncated {
    position: relative;
    max-height: 900px;
    overflow: hidden;
    padding-bottom: 0;
  }

.article-body.truncated::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 280px;
    background: linear-gradient(to bottom, rgba(250, 253, 251, 0) 0%, rgba(250, 253, 251, 0.85) 50%, var(--bg) 100%);
    pointer-events: none;
  }

.read-more-wrapper {
    max-width: 760px;
    margin: -60px auto 50px;
    text-align: center;
    position: relative;
    z-index: 2;
  }

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: white;
    padding: 16px 30px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(13, 194, 104, 0.28);
    transition: all 0.25s;
  }

.read-more-btn:hover {
    background: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(6, 160, 85, 0.35);
  }

.read-more-hint {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
  }


/* === CONTACT PAGE === from nous-contacter.html === */
.contact-hero { padding: 30px 0 44px; text-align: center; }

.contact-hero .kicker {
    display: inline-block; background: var(--green-bg); color: var(--green-deep);
    font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 100px; margin-bottom: 16px;
  }

.contact-hero h1 {
    font-size: 54px; font-weight: 800; letter-spacing: -0.03em;
    color: var(--ink); margin-bottom: 18px; line-height: 1.05;
  }

.contact-hero h1 em {
    font-family: 'Instrument Serif', Georgia, serif; font-style: italic;
    font-weight: 400; color: var(--green-deep);
  }

.contact-hero p {
    font-size: 19px; color: var(--text); max-width: 720px; margin: 0 auto;
    line-height: 1.55;
  }

.section { padding: 40px 0 70px; }

.section-alt { background: white; padding: 60px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }

.contact-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(10,31,23,0.08);
    border-color: var(--green-glow);
  }

.contact-icon {
    width: 48px; height: 48px; margin-bottom: 14px;
    background: var(--green-bg); color: var(--green-deep);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
  }

.contact-card h3 {
    font-size: 13px; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 10px;
  }

.contact-card .value {
    font-size: 17px; font-weight: 700; color: var(--ink);
  }

.contact-card .value-small {
    font-size: 14px; color: var(--text); line-height: 1.5;
    margin-top: 4px;
  }

.booking-section h2 {
    font-size: 38px; font-weight: 800; letter-spacing: -0.02em;
    color: var(--ink); margin-bottom: 12px; text-align: center;
  }

.booking-section h2 em {
    font-family: 'Instrument Serif', Georgia, serif; font-style: italic;
    font-weight: 400; color: var(--green-deep);
  }

.booking-section .sub {
    text-align: center; color: var(--muted); font-size: 16px;
    max-width: 680px; margin: 0 auto 40px;
  }

.booking-wrap {
    max-width: 900px; margin: 0 auto;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(10,31,23,0.06);
  }

.booking-iframe-wrap {
    position: relative;
    width: 100%;
    min-height: 680px;
    background: var(--green-bg);
  }

.booking-iframe-wrap iframe {
    display: block;
    width: 100%;
    min-height: 680px;
    border: 0;
  }

.booking-placeholder {
    padding: 60px 30px;
    text-align: center;
    color: var(--green-deep);
  }

.booking-placeholder svg {
    margin-bottom: 20px;
  }

.booking-placeholder h3 {
    font-size: 22px; font-weight: 800; color: var(--ink);
    margin-bottom: 10px;
  }

.booking-placeholder p {
    font-size: 15px; color: var(--muted);
    max-width: 480px; margin: 0 auto 20px; line-height: 1.6;
  }

.booking-placeholder code {
    display: inline-block;
    background: white;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid var(--line);
    font-size: 13px;
    color: var(--ink);
    font-family: 'SF Mono', Monaco, Consolas, monospace;
  }

footer p { font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 6px; }

footer a:hover { text-decoration: underline; }

.foot-logo { height: 40px; margin-bottom: 16px; width: auto; }

.foot-legal {
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 13px; color: rgba(255,255,255,0.6);
  }

.foot-legal a { color: rgba(255,255,255,0.8); margin: 0 10px; }

@media (max-width: 768px) {
    .contact-hero h1 { font-size: 36px; }
    .booking-section h2 { font-size: 28px; }
    .contact-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
  }


/* === ABOUT PAGE === from qui-sommes-nous.html === */
.qsn-hero { padding: 30px 0 50px; text-align: center; }

.qsn-hero .kicker {
    display: inline-block; background: var(--green-bg); color: var(--green-deep);
    font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 100px; margin-bottom: 16px;
  }

.qsn-hero h1 {
    font-size: 54px; font-weight: 800; letter-spacing: -0.03em;
    color: var(--ink); margin-bottom: 18px; line-height: 1.05;
  }

.qsn-hero h1 em {
    font-family: 'Instrument Serif', Georgia, serif; font-style: italic;
    font-weight: 400; color: var(--green-deep);
  }

.qsn-hero p {
    font-size: 19px; color: var(--text); max-width: 720px; margin: 0 auto;
    line-height: 1.55;
  }

.section h2 {
    font-size: 36px; font-weight: 800; letter-spacing: -0.02em;
    color: var(--ink); margin-bottom: 12px; text-align: center;
  }

.section h2 em {
    font-family: 'Instrument Serif', Georgia, serif; font-style: italic;
    font-weight: 400; color: var(--green-deep);
  }

.section .sub {
    text-align: center; color: var(--muted); font-size: 15.5px;
    max-width: 620px; margin: 0 auto 44px;
  }

.contact-card .value a { text-decoration: none; color: var(--ink); }

.contact-card .value a:hover { color: var(--green-deep); }

.founders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }

.founder {
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 34px 30px;
    position: relative;
  }

.founder-avatar {
    width: 96px; height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 36px; font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(13,194,104,0.25);
    overflow: hidden;
  }

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
  }

.founder h3 {
    font-size: 26px; font-weight: 800;
    color: var(--ink); margin-bottom: 6px;
    letter-spacing: -0.01em;
  }

.founder .role {
    font-size: 13px; font-weight: 700;
    color: var(--green-deep);
    background: var(--green-bg);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 16px;
  }

.founder p {
    font-size: 15.5px; line-height: 1.6;
    color: var(--text);
    margin-bottom: 14px;
  }

.founder strong { color: var(--ink); font-weight: 700; }

.founder blockquote {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 17px;
    color: var(--green-deep);
    line-height: 1.5;
    padding: 16px 0 6px 18px;
    border-left: 3px solid var(--green);
    margin-top: 18px;
  }

.founder blockquote::before { content: ""; }

.story-wrap {
    max-width: 800px; margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 50px 56px;
    border: 1px solid var(--line);
  }

.story-wrap h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 34px;
    color: var(--ink);
    margin-bottom: 22px;
    line-height: 1.2;
    font-weight: 400;
  }

.story-wrap p {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
  }

.story-wrap strong { color: var(--ink); font-weight: 700; }

.price-box {
    background: var(--green-bg);
    border-radius: 14px;
    padding: 22px 26px;
    margin: 24px 0;
    text-align: center;
  }

.price-box .strike {
    font-size: 32px; font-weight: 800;
    color: var(--muted); text-decoration: line-through;
  }

.price-box .arrow {
    font-size: 20px; color: var(--green-deep);
    margin: 0 14px;
  }

.price-box .real {
    font-size: 44px; font-weight: 800;
    color: var(--green-deep); letter-spacing: -0.02em;
  }

.price-box .label {
    font-size: 14px; color: var(--muted);
    margin-top: 6px;
    font-weight: 600;
  }

.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
  }

.cta-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 26px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(10,31,23,0.08);
    border-color: var(--green);
  }

.cta-card .icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    color: white;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(13,194,104,0.25);
  }

.cta-card h3 {
    font-size: 17px; font-weight: 800;
    color: var(--ink); margin-bottom: 8px;
    letter-spacing: -0.01em;
  }

.cta-card p {
    font-size: 14px; color: var(--muted);
    line-height: 1.5;
  }/* === V4 page-specific CSS (auto-extracted) === */


/* --- from actualites.html --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--text); background: var(--bg); line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
a { color: inherit; }
/* TOP STRIP */
  .top-strip { background: var(--green); color: white; text-align: center; padding: 8px 0; font-size: 13px; font-weight: 600; }
/* NAV */
  nav { background: white; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.logo-mark { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.logo-nav .logo-mark { width: 130px; height: 52px; }
.logo-nav .logo-mark img { object-position: left center; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 14px; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); text-decoration: none; font-weight: 700; font-size: 14px; }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: 10px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.2s; }
.btn-green { background: var(--green); color: white; box-shadow: 0 4px 12px rgba(13, 194, 104, 0.25); }
.btn-green:hover { background: var(--green-deep); transform: translateY(-1px); }
/* BREADCRUMB */
  .breadcrumb {
    display: flex; align-items: center; gap: 8px; padding: 18px 0 10px;
    font-size: 13px; color: var(--muted);
  }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-deep); }
/* ARTICLE HEADER */
  .article-header {
    padding: 30px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
.article-header::before {
    content: "";
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(13, 194, 104, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }
.article-tag {
    display: inline-block;
    background: var(--green-bg);
    color: var(--green-deep);
    border: 1px solid var(--green-glow);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
  }
.article-header h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: var(--ink);
    max-width: 860px;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
  }
.article-header h1 em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--green-deep);
  }
.article-meta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
    position: relative;
    z-index: 1;
  }
.article-meta-dot {
    width: 3px; height: 3px; border-radius: 50%;
    background: var(--muted);
  }
/* COVER / HERO IMAGE (SVG placeholder coloré) */
  .article-cover {
    max-width: 1000px;
    margin: 0 auto 50px;
    aspect-ratio: 16/7;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-soft) 0%, var(--green-glow) 100%);
    position: relative;
  }
.article-cover svg {
    width: 100%;
    height: 100%;
    display: block;
  }
/* ARTICLE BODY */
  .article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 0 60px;
  }
.article-lede {
    font-size: 21px;
    line-height: 1.55;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 36px;
    padding-left: 20px;
    border-left: 4px solid var(--green);
  }
.article-body h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 44px 0 18px;
    line-height: 1.15;
  }
.article-body h2 em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--green-deep);
  }
.article-body h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 32px 0 14px;
    line-height: 1.2;
  }
.article-body p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 18px;
  }
.article-body p strong {
    color: var(--ink);
    font-weight: 700;
  }
.article-body ul, .article-body ol {
    margin: 0 0 22px 0;
    padding-left: 0;
    list-style: none;
  }
.article-body li {
    position: relative;
    padding: 2px 0 2px 22px;
    font-size: 17px;
    line-height: 1.5;
    color: var(--text);
  }
.article-body ul li::before {
    content: "";
    position: absolute;
    left: 4px; top: 11px;
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
  }
.article-body ol { counter-reset: olcount; }
.article-body ol li {
    counter-increment: olcount;
  }
.article-body ol li::before {
    content: counter(olcount);
    position: absolute;
    left: 0; top: 6px;
    width: 22px; height: 22px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
  }
.article-body blockquote {
    margin: 30px 0;
    padding: 24px 28px;
    background: var(--green-bg);
    border-left: 4px solid var(--green);
    border-radius: 0 16px 16px 0;
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.45;
    color: var(--ink-soft);
  }
.article-body blockquote .author {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
    color: var(--green-deep);
    margin-top: 12px;
    letter-spacing: 0.02em;
  }
.stat-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 36px 0;
  }
.stat-highlight-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 18px;
    text-align: center;
  }
.stat-highlight-num {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 6px;
  }
.stat-highlight-label {
    font-size: 13px;
    color: var(--text);
    font-weight: 600;
    line-height: 1.35;
  }
/* CTA en fin d'article */
  .article-cta {
    max-width: 860px;
    margin: 40px auto 60px;
    padding: 36px 40px;
    background: linear-gradient(165deg, var(--green) 0%, var(--green-deep) 100%);
    border-radius: 24px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
.article-cta::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(255, 216, 92, 0.3) 0%, transparent 70%);
  }
.article-cta h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
    position: relative; z-index: 1;
  }
.article-cta p {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 560px;
    margin-left: auto; margin-right: auto;
    color: rgba(255,255,255,0.95);
    position: relative; z-index: 1;
  }
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--green-deep);
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    position: relative; z-index: 1;
  }
.cta-btn:hover { transform: translateY(-2px); }
/* Autres articles */
  .other-articles {
    background: white;
    border-top: 1px solid var(--line);
    padding: 60px 0;
  }
.other-articles-header {
    text-align: center;
    margin-bottom: 32px;
  }
.other-articles-header h2 {
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1.1;
  }
.other-articles-header h2 em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--green-deep);
  }
/* OTHER ARTICLES CAROUSEL */
  .other-articles {
    padding: 50px 0 70px;
    background: var(--bg);
    overflow: hidden;
  }
.other-articles-header {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
.other-articles-header h2 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
  }
.other-articles-header h2 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--green-deep);
  }
.other-nav {
    display: flex;
    gap: 8px;
  }
.other-nav button {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: white;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
.other-nav button:hover {
    background: var(--green);
    color: white;
    border-color: var(--green);
    transform: translateY(-1px);
  }
.other-nav button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
  }
.other-carousel {
    position: relative;
    overflow: hidden;
  }
.other-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
.other-card {
    flex: 0 0 calc((100% - 40px) / 3);
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
  }
.other-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 31, 23, 0.08);
    border-color: var(--green-glow);
  }
.other-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    background-color: var(--green-soft);
    display: block;
  }
.other-card-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
.other-card-tag {
    display: inline-block;
    background: var(--green-bg);
    color: var(--green-deep);
    border-radius: 100px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    width: fit-content;
  }
.other-card h4 {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.3;
  }
@media (max-width: 960px) {
    .other-card { flex: 0 0 calc((100% - 20px) / 2); }
  }
@media (max-width: 640px) {
    .other-card { flex: 0 0 100%; }
    .other-articles-header { flex-direction: column; align-items: flex-start; }
  }
/* FOOTER */
  footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: 50px 0 30px; text-align: center; font-size: 13px; }
footer a { color: rgba(255,255,255,0.9); text-decoration: none; }
footer .foot-logo { width: 120px; margin: 0 auto 20px; display: block; }
@media (max-width: 960px) {
    .other-grid { grid-template-columns: 1fr; }
    .stat-highlight { grid-template-columns: 1fr; }
    .nav-links { display: none; }
  }
/* === Source block === */
  .source-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 36px 0 10px;
    padding: 20px 24px;
    background: var(--green-bg);
    border: 1px solid var(--green-glow);
    border-radius: 14px;
  }
.source-block-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--green-deep);
  }
.source-block-content {
    flex: 1;
    min-width: 0;
  }
.source-block-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-deep);
    margin-bottom: 3px;
  }
.source-block-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
  }
.source-block-link:hover {
    color: var(--green-deep);
  }
/* === Troncature avec fondu + bouton "Lire la suite" === */
  .article-body.truncated {
    position: relative;
    max-height: 900px;
    overflow: hidden;
    padding-bottom: 0;
  }
.article-body.truncated::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 280px;
    background: linear-gradient(to bottom, rgba(250, 253, 251, 0) 0%, rgba(250, 253, 251, 0.85) 50%, var(--bg) 100%);
    pointer-events: none;
  }
.read-more-wrapper {
    max-width: 760px;
    margin: -60px auto 50px;
    text-align: center;
    position: relative;
    z-index: 2;
  }
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: white;
    padding: 16px 30px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(13, 194, 104, 0.28);
    transition: all 0.25s;
  }
.read-more-btn:hover {
    background: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(6, 160, 85, 0.35);
  }
.read-more-hint {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
  }
.news-grid-all .news-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
  }
.news-grid-all .news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(10, 31, 23, 0.12);
    border-color: var(--green-glow);
  }
.news-grid-all .news-img {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
  }
.news-grid-all .news-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: white;
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
.news-grid-all .news-body {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
.news-grid-all .news-date {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }
.news-grid-all .news-body h3 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 10px;
  }
.news-grid-all .news-body p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.55;
    margin-bottom: 16px;
    flex: 1;
  }
.news-grid-all .news-more {
    font-size: 14px;
    font-weight: 700;
    color: var(--green-deep);
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

/* --- from article-arnaques-copropriete.html --- */
.article-body li {
    position: relative;
    padding: 6px 0 6px 28px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--text);
  }
.article-body ul li::before {
    content: "";
    position: absolute;
    left: 4px; top: 15px;
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
  }

/* --- from cgv.html --- */
.top-strip {
    background: var(--green); color: white; text-align: center;
    padding: 8px 0; font-size: 13px; font-weight: 600;
  }
nav {
    background: white; border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 100;
  }
.btn-green { background: var(--green); color: white; }
.breadcrumb {
    font-size: 13px; color: var(--muted); padding: 20px 0;
    display: flex; gap: 8px; align-items: center;
  }
.legal-hero { padding: 20px 0 40px; }
.legal-hero .kicker {
    display: inline-block; background: var(--green-bg); color: var(--green-deep);
    font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 100px; margin-bottom: 14px;
  }
.legal-hero h1 {
    font-size: 44px; font-weight: 800; letter-spacing: -0.03em;
    color: var(--ink); margin-bottom: 10px; line-height: 1.1;
  }
.legal-hero h1 em {
    font-family: 'Instrument Serif', Georgia, serif; font-style: italic;
    font-weight: 400; color: var(--green-deep);
  }
.legal-hero .maj { font-size: 13px; color: var(--muted); margin-top: 6px; }
.legal-content { max-width: 800px; margin: 0 auto; padding: 10px 0 80px; }
.legal-content h2 {
    font-size: 24px; font-weight: 800; color: var(--ink);
    margin: 36px 0 14px; letter-spacing: -0.02em;
    padding-top: 14px; border-top: 1px solid var(--line);
  }
.legal-content h2:first-of-type { border-top: 0; padding-top: 0; }
.legal-content h3 {
    font-size: 17px; font-weight: 700; color: var(--ink); margin: 22px 0 8px;
  }
.legal-content p {
    font-size: 15.5px; line-height: 1.65; color: var(--text); margin-bottom: 14px;
  }
.legal-content ul, .legal-content ol { margin: 10px 0 16px 24px; }
.legal-content ul li, .legal-content ol li {
    font-size: 15.5px; line-height: 1.65; margin-bottom: 6px; color: var(--text);
  }
.legal-content strong { color: var(--ink); font-weight: 700; }
.legal-content a { color: var(--green-deep); text-decoration: underline; }
.legal-content a:hover { color: var(--green); }
.legal-box {
    background: var(--green-bg); border-left: 3px solid var(--green);
    padding: 18px 22px; border-radius: 8px; margin: 18px 0 24px;
  }
.legal-box p { margin-bottom: 8px; }
.legal-box p:last-child { margin-bottom: 0; }
.legal-table {
    width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 14.5px;
  }
.legal-table th, .legal-table td {
    text-align: left; padding: 12px 14px;
    border-bottom: 1px solid var(--line); vertical-align: top;
  }
.legal-table th {
    background: var(--bg); font-weight: 700; color: var(--ink);
    font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em;
  }
footer {
    background: var(--ink); color: white; padding: 40px 0 30px;
    text-align: center; margin-top: 60px;
  }
footer p { font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 6px; }
footer a { color: white; text-decoration: none; }
footer a:hover { text-decoration: underline; }
.foot-logo { height: 40px; margin-bottom: 16px; width: auto; }
.foot-legal {
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 13px; color: rgba(255,255,255,0.6);
  }
.foot-legal a { color: rgba(255,255,255,0.8); margin: 0 10px; }
@media (max-width: 768px) {
    .legal-hero h1 { font-size: 32px; }
    .nav-links { display: none; }
    .legal-content h2 { font-size: 20px; }
  }

/* --- from ma-nego-ascenseur.html --- */
.nav-links a {
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
  }
/* === BREADCRUMB === */
  .breadcrumb {
    padding: 20px 0 0;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
  }
.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }
/* === HERO === */
  .hero {
    padding: 30px 0 50px;
    position: relative;
    overflow: hidden;
  }
.hero::before {
    content: "";
    position: absolute;
    top: -80px; right: -120px;
    width: 600px; height: 500px;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
  }
.hero::after {
    content: "";
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 216, 92, 0.2) 0%, transparent 60%);
    pointer-events: none;
  }
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
.hero-grid > * {
    min-width: 0;
  }
.hero-grid-single {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
  }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 14px 8px 10px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    box-shadow: 0 2px 10px rgba(10, 31, 23, 0.06);
    border: 1px solid var(--line);
    margin-bottom: 24px;
  }
.badge-dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }
.badge-emoji { font-size: 16px; }
h1.hero-title {
    font-weight: 800;
    font-size: clamp(40px, 5.2vw, 64px);
    line-height: 1.03;
    letter-spacing: -0.035em;
    margin-bottom: 22px;
  }
h1.hero-title .highlight {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    padding-bottom: 0.1em;
    line-height: 1.15;
  }
.hero-lede {
    font-size: 19px;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.55;
  }
.hero-lede strong { color: var(--ink); font-weight: 700; }
.hero-quote {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.35;
    color: var(--green-deep);
    padding: 14px 0 14px 18px;
    border-left: 3px solid var(--green);
    margin: 22px 0 28px;
    white-space: nowrap;
  }
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
/* === HERO VISUAL (right side) === */
  .hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    max-height: 520px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(10, 31, 23, 0.18);
  }
.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(circle at 30% 20%, rgba(13, 194, 104, 0.4) 0%, transparent 50%),
      radial-gradient(circle at 70% 80%, rgba(255, 216, 92, 0.25) 0%, transparent 50%);
  }
.bill-card {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    animation: floatY 4s ease-in-out infinite;
  }
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
.bill-card .bc-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }
.bill-card .bc-old {
    font-size: 20px;
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 600;
  }
.bill-card .bc-new {
    font-size: 32px;
    font-weight: 800;
    color: var(--green-deep);
    letter-spacing: -0.02em;
    margin: 2px 0;
  }
.bill-card .bc-delta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-soft);
    color: var(--green-deep);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 4px;
  }
.visual-bolt {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--yellow);
    font-size: 140px;
    line-height: 1;
    opacity: 0.6;
    filter: drop-shadow(0 4px 20px rgba(255, 216, 92, 0.5));
    animation: glow 3s ease-in-out infinite;
  }
@keyframes glow {
    0%, 100% { opacity: 0.5; filter: drop-shadow(0 4px 20px rgba(255, 216, 92, 0.4)); }
    50% { opacity: 0.8; filter: drop-shadow(0 4px 30px rgba(255, 216, 92, 0.7)); }
  }
.visual-label {
    position: absolute;
    bottom: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 10px 14px;
    border-radius: 100px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
.visual-label .vl-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px var(--green);
  }
/* === SECTION HEADER === */
  .section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
  }
.section-header .badge { margin-bottom: 18px; }
.section-header h2 {
    font-weight: 800;
    font-size: clamp(32px, 4.2vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
  }
/* === STATS CALLOUT === */
  .stats-callout {
    padding: 40px 0 80px;
  }
.stats-callout-card {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
    border-radius: 28px;
    padding: 48px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
.stats-callout-card::before {
    content: "";
    position: absolute;
    top: -100px; right: -50px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 216, 92, 0.25) 0%, transparent 60%);
  }
.stats-callout-card::after {
    content: "⚡";
    position: absolute;
    bottom: -40px; left: 40px;
    font-size: 200px;
    opacity: 0.08;
    line-height: 1;
  }
.stats-callout-card .sc-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 216, 92, 0.2);
    color: var(--yellow);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
.stats-callout-card h2 {
    font-weight: 800;
    font-size: clamp(32px, 4.2vw, 54px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }
.stats-callout-card h2 .big-num {
    background: linear-gradient(135deg, #fff 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
.stats-callout-card p {
    font-size: 17px;
    opacity: 0.85;
    max-width: 620px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
/* === STATS CALLOUT TOP (version épurée sans paragraphe) === */
  .stats-callout-top {
    padding-top: 32px;
    padding-bottom: 32px;
  }
.stats-callout-top .stats-callout-card {
    padding: 34px 48px;
  }
.stats-callout-top .stats-callout-card h2 {
    margin-bottom: 0;
  }
/* === EXPERTISE ASIDE (encadré bleu marine Ma Négo à droite dans le hero) === */
  .expertise-aside {
    background: linear-gradient(160deg, #1d3f7a 0%, #0f2550 100%);
    color: white;
    border-radius: 24px;
    padding: 32px 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(15, 37, 80, 0.3);
    align-self: start;
    margin-top: 8px;
    overflow: hidden;
    width: 100%;
    min-width: 0;
  }
/* Pattern de lignes diagonales discret */
  .expertise-aside::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
      linear-gradient(135deg, rgba(255,255,255,0.05) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.05) 75%, transparent 75%, transparent);
    background-size: 16px 16px;
    pointer-events: none;
    opacity: 0.7;
  }
/* Halo jaune doux en coin */
  .expertise-aside::after {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255, 216, 92, 0.3) 0%, transparent 70%);
    pointer-events: none;
  }
.expertise-aside-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
  }
.expertise-aside-icon {
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 216, 92, 0.35);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffd85c;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
  }
.expertise-aside-icon svg {
    display: block;
    width: 30px;
    height: 30px;
  }
.expertise-aside-kicker {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(26px, 2.4vw, 32px);
    font-weight: 800;
    letter-spacing: -0.025em;
    text-transform: none;
    color: #ffd85c;
    line-height: 1;
  }
.expertise-aside p {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 16px;
    font-weight: 500;
    position: relative;
    z-index: 1;
  }
.expertise-aside p strong {
    color: white;
    font-weight: 700;
  }
.expertise-aside-lead {
    margin-top: 8px;
    margin-bottom: 12px !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700 !important;
    color: #ffd85c !important;
  }
.expertise-aside ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
  }
.expertise-aside ul li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 16.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
.expertise-aside ul li:last-child { border-bottom: none; }
.expertise-aside ul li strong {
    color: white;
    font-weight: 700;
  }
.expertise-aside ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 20px;
    height: 20px;
    background: #ffd85c;
    color: #0f2550;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f2550' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 12px 12px;
    background-position: center;
    background-repeat: no-repeat;
  }
/* Bouton vert */
  .expertise-aside-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    color: white !important;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 18px rgba(13, 194, 104, 0.35);
  }
.expertise-aside-btn:hover {
    transform: translateY(-2px);
    gap: 12px;
    box-shadow: 0 10px 24px rgba(13, 194, 104, 0.45);
  }
@media (max-width: 960px) {
    .explain-grid-2 { grid-template-columns: 1fr !important; }
    .expertise-aside { margin-top: 0; }
  }
/* === DYK BANNER (Le saviez-vous en haut du hero) === */
  .dyk-banner {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--ink);
    color: white;
    border-radius: 20px;
    padding: 22px 26px;
    margin-bottom: 28px;
    position: relative;
    box-shadow: 0 10px 30px rgba(10, 31, 23, 0.15);
  }
.dyk-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--green) 0%, var(--green-deep) 100%);
    border-radius: 20px 0 0 20px;
  }
.dyk-banner-icon {
    font-size: 30px;
    flex-shrink: 0;
    line-height: 1;
  }
.dyk-banner-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 6px;
  }
.dyk-banner p {
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    font-weight: 500;
  }
.dyk-banner p strong {
    color: white;
    font-weight: 700;
  }
/* === PARAMS (3 paramètres) === */
  .params {
    padding: 55px 0;
    background: linear-gradient(180deg, var(--bg) 0%, white 100%);
  }
.params-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
.param-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 42px 36px 38px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
.param-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(10, 31, 23, 0.1);
  }
.param-card h3 {
    font-size: clamp(26px, 2.3vw, 32px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-bottom: 18px;
    color: var(--ink);
  }
.param-accent {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.015em;
    display: inline-block;
    padding-bottom: 2px;
  }
.param-accent-green { color: var(--green-deep); }
.param-accent-blue { color: #1d3f7a; }
.param-accent-yellow { color: #b68800; }
.param-card p {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--text);
  }
/* === EXPLAIN (2 blocs info - Le saviez-vous) === */
  .explain {
    padding: 55px 0;
    background: var(--bg);
  }
.explain-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
  }
.explain-container .section-header {
    margin-bottom: 28px;
  }
.explain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
.explain-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
.explain-grid-2-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
  }
.explain-card-solo {
    padding: 40px 36px 36px !important;
    text-align: left !important;
  }
.explain-card-solo h3 {
    text-align: left !important;
    margin-bottom: 18px !important;
  }
.explain-card-solo p {
    max-width: none !important;
    margin: 0 0 14px 0 !important;
    text-align: left !important;
    font-size: 15.5px !important;
    line-height: 1.65 !important;
  }
.explain-card-solo p:last-child {
    margin-bottom: 0 !important;
  }
.explain-card-badge {
    margin-bottom: 18px;
    text-align: left;
  }
.explain-card-badge .badge {
    font-size: 13px;
  }
.badge-green {
    background: var(--green-bg) !important;
    color: var(--green-deep) !important;
    border-color: var(--green-glow) !important;
  }
.explain-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 56px 48px 52px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
.explain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(10, 31, 23, 0.1);
  }
.explain-card h3 {
    font-size: clamp(26px, 2.2vw, 32px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-bottom: 22px;
    color: var(--ink);
  }
.explain-card h3.explain-accent-green { color: var(--green-deep); }
.explain-card h3.explain-accent-blue { color: #1d3f7a; }
.explain-card h3.explain-accent-yellow { color: #b68800; }
.explain-card h3.explain-accent-coral { color: #c54420; }
.explain-accent {
    font-weight: 800;
    letter-spacing: -0.02em;
    display: inline-block;
  }
.explain-accent-green { color: var(--green-deep); }
.explain-accent-blue { color: #1d3f7a; }
.explain-accent-yellow { color: #b68800; }
.explain-accent-coral { color: #c54420; }
/* Badge noir jaune (style saviez-vous) */
  .badge-dark {
    background: var(--ink) !important;
    color: var(--yellow) !important;
    border-color: var(--ink) !important;
  }
.badge-dot-yellow {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yellow);
    margin-right: 4px;
    box-shadow: 0 0 8px rgba(255, 216, 92, 0.6);
  }
.explain-card p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    margin: 0 auto;
    max-width: 560px;
  }
.explain-card strong {
    color: var(--ink);
    font-weight: 700;
  }
@media (max-width: 960px) {
    .explain-grid, .explain-grid-2, .explain-grid-2-badges { grid-template-columns: 1fr !important; }
    .explain-container { padding: 0 20px; }
  }
/* === PILLARS === */
  .pillars {
    padding: 80px 0;
    background: var(--green-bg);
  }
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
.pillar-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
.pillar-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green) 0%, var(--green-deep) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
.pillar-card:hover {
    transform: translateY(-4px);
    border-color: var(--green-glow);
    box-shadow: 0 20px 40px rgba(10, 31, 23, 0.08);
  }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-deep);
    margin-bottom: 20px;
    transition: all 0.3s;
  }
.pillar-card:hover .pillar-icon {
    background: var(--green);
    color: white;
    transform: rotate(-5deg) scale(1.05);
  }
.pillar-card h3 {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }
.pillar-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.55;
  }
.pillar-card p strong { color: var(--ink); font-weight: 700; }
/* === DID YOU KNOW === */
  .didyouknow {
    padding: 100px 0;
  }
.dyk-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
  }
.dyk-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 420px;
    margin: 0 auto;
  }
.dyk-visual-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--green) 0deg, var(--green) 288deg, var(--line) 288deg, var(--line) 360deg);
    padding: 24px;
    -webkit-mask: radial-gradient(circle at center, transparent 40%, black 40.5%);
    mask: radial-gradient(circle at center, transparent 40%, black 40.5%);
  }
.dyk-visual-inner {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
  }
.dyk-visual-num {
    font-size: 90px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
.dyk-visual-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
.dyk-body h2 {
    font-weight: 800;
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }
.dyk-body h2 .highlight {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
.dyk-body p {
    font-size: 17px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 18px;
  }
.dyk-body strong { color: var(--ink); font-weight: 700; }
.dyk-record {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--ink);
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    margin-top: 12px;
  }
/* === PRICING === */
  .pricing {
    padding: 100px 0;
    background: var(--green-bg);
  }
.pricing-card {
    background: var(--white);
    border-radius: 28px;
    padding: 56px 48px;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 30px rgba(10, 31, 23, 0.06);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }
.pricing-card::before {
    content: "€";
    position: absolute;
    top: -40px; right: 30px;
    font-size: 280px;
    font-weight: 800;
    color: var(--green-soft);
    line-height: 1;
    opacity: 0.4;
  }
.pricing-card .pc-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--green-soft);
    color: var(--green-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
.pricing-card h2 {
    font-weight: 800;
    font-size: clamp(30px, 3.8vw, 42px);
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }
.pricing-card .pc-sub {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
  }
.pricing-card .pc-big {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }
.pricing-card .pc-note {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
  }
/* === MISSION STEPS === */
  .mission {
    padding: 100px 0;
  }
.mission-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
  }
.mission-step {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
.mission-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(10, 31, 23, 0.08);
    border-color: var(--green-glow);
  }
.mission-step-num {
    width: 44px; height: 44px;
    background: var(--green);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(13, 194, 104, 0.3);
  }
.mission-step h3 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
  }
.mission-step p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.55;
    margin-bottom: 12px;
  }
.mission-step a {
    font-size: 13px;
    color: var(--green-deep);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
  }
.mission-step a:hover { gap: 8px; }
.mission-note {
    max-width: 720px;
    margin: 0 auto 40px;
    padding: 20px 28px;
    background: var(--green-bg);
    border-left: 3px solid var(--green);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text);
    font-style: italic;
  }
.mission-note strong { color: var(--ink); font-style: normal; }
/* === RELATED SERVICES (carrousel) === */
  .related {
    padding: 55px 0;
    background: var(--bg);
    overflow: hidden;
  }
.related-header {
    text-align: center;
    margin-bottom: 40px;
  }
.related-header h3 {
    font-size: clamp(28px, 2.6vw, 36px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--ink);
  }
.related-header p {
    font-size: 15px;
    color: var(--muted);
  }
.related-carousel-wrap {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
  }
.related-carousel-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: relatedScroll 40s linear infinite;
  }
.related-carousel-track:hover {
    animation-play-state: paused;
  }
@keyframes relatedScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
.related-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: 100px;
    text-decoration: none;
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    white-space: nowrap;
  }
.related-chip:hover {
    background: var(--ink);
    color: white;
    transform: translateY(-3px);
    border-color: var(--ink);
    box-shadow: 0 10px 20px rgba(10, 31, 23, 0.15);
  }
.related-chip .rc-emoji {
    font-size: 22px;
    line-height: 1;
  }
.cta-foot-inner::after {
    content: "⚡";
    position: absolute;
    bottom: -60px; right: 40px;
    font-size: 360px;
    line-height: 1;
    color: rgba(255,255,255,0.08);
    pointer-events: none;
  }
.btn-white { background: white; color: var(--green-deep); }
.btn-outline-white {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.3);
  }
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
  }
/* === RESPONSIVE === */
  @media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { aspect-ratio: 16/10; max-height: 400px; }
    .nav-links { display: none; }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .dyk-wrap { grid-template-columns: 1fr; }
    .mission-steps { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .foot-bottom { flex-direction: column; gap: 10px; }
    .cta-foot-inner { padding: 50px 30px; }
    .pricing-card { padding: 40px 28px; }
  }
@media (max-width: 560px) {
    .container { padding: 0 20px; }
    .pillars-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr 1fr; }
    .foot-grid { grid-template-columns: 1fr; }
  }

/* --- from ma-nego-assurance.html --- */
.param-accent-coral { color: #c54420; }
.explain.explain-alt {
    background: white;
    padding-top: 0;
  }
/* Badge vert (style conseil) */
  .badge-green {
    background: var(--green-bg) !important;
    color: var(--green-deep) !important;
    border-color: var(--green-glow) !important;
  }
.explain-grid-1 {
    grid-template-columns: 1fr;
    max-width: 1100px;
    margin: 0 auto;
  }
.explain-card-solo {
    padding: 40px 36px 36px;
    text-align: left;
  }
.explain-card-solo h3 {
    text-align: left;
    margin-bottom: 18px;
  }
.explain-card-solo p {
    max-width: none !important;
    margin: 0 0 14px 0 !important;
    text-align: left;
    font-size: 15.5px !important;
    line-height: 1.65;
  }

/* --- from ma-nego-electricite.html --- */
@media (max-width: 960px) {
    .explain-grid, .explain-grid-2 { grid-template-columns: 1fr !important; }
    .explain-container { padding: 0 20px; }
  }

/* --- from ma-nego-jardin.html --- */
.explain-card-solo .pledge-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
  }
.explain-card-solo .pledge-list li {
    padding: 8px 0 8px 26px;
    position: relative;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text);
    border-bottom: 1px dashed var(--line);
  }
.explain-card-solo .pledge-list li:last-child {
    border-bottom: none;
  }
.explain-card-solo .pledge-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 14px;
    width: 14px;
    height: 14px;
    background: var(--green-bg);
    border: 2px solid var(--green);
    border-radius: 50%;
  }
.explain-card-solo .pledge-list li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 18px;
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
  }
.explain-card-solo .pledge-list li strong {
    color: var(--ink);
  }

/* --- from ma-nego-lettre-mission.html --- */
/* === TOP STRIP === */
  .top-strip {
    background: var(--green);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
  }
/* === NAV === */
  nav {
    background: white;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
  }
/* duplicate .logo rule removed — canonical declaration above with gap:10px (V4 parity). */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
  }
.btn-green:hover {
    background: var(--green-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(13, 194, 104, 0.35);
  }
/* === BREADCRUMB === */
  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 0 10px;
    font-size: 13px;
    color: var(--muted);
  }
/* === HERO souscrire === */
  .souscrire-hero {
    padding: 30px 0 20px;
  }
.souscrire-hero h1 {
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin-bottom: 14px;
    color: var(--ink);
  }
.souscrire-hero h1 em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--green-deep);
  }
.souscrire-hero p {
    font-size: 17px;
    max-width: 720px;
    color: var(--text);
  }
.souscrire-hero p strong {
    color: var(--ink);
  }
/* === GRID 2 colonnes === */
  .souscrire-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding: 30px 0 70px;
    align-items: start;
  }
/* === CONTRAT PANEL (col gauche) === */
  .contract-panel {
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 40px 44px;
    box-shadow: 0 2px 8px rgba(10, 31, 23, 0.04);
  }
.contract-head {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 28px;
    border-bottom: 2px solid var(--line);
  }
.contract-logo {
    width: 110px;
    margin: 0 auto 16px;
    display: block;
  }
.contract-title {
    color: #1d3f7a;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-transform: uppercase;
  }
.contract-parties {
    margin-bottom: 28px;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text);
  }
.contract-parties strong { color: var(--ink); }
.contract-parties .party-label {
    display: block;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
  }
.contract-parties .party-address {
    font-style: italic;
    color: var(--muted);
  }
.contract-intro {
    font-weight: 700;
    color: var(--ink);
    margin: 28px 0 18px;
    font-size: 15px;
  }
.contract-article {
    margin-bottom: 22px;
  }
.contract-article h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
.contract-article p,
  .contract-article li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
  }
.contract-article ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
  }
.contract-article ul li {
    padding: 4px 0 4px 22px;
    position: relative;
  }
.contract-article ul li::before {
    content: "•";
    position: absolute;
    left: 6px;
    color: var(--green-deep);
    font-weight: 800;
  }
.contract-article strong { color: var(--ink); font-weight: 700; }
.contract-footer {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    line-height: 1.6;
  }
/* === FORM PANEL (col droite) === */
  .form-panel {
    background: linear-gradient(165deg, #0dc268 0%, #06a055 60%, #04854a 100%);
    color: white;
    border-radius: 24px;
    padding: 32px 28px;
    position: sticky;
    top: 90px;
    box-shadow: 0 24px 60px rgba(6, 160, 85, 0.28);
    overflow: hidden;
  }
.form-panel::before {
    content: "";
    position: absolute;
    top: -80px; right: -100px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(255, 216, 92, 0.3) 0%, transparent 65%);
    pointer-events: none;
  }
.form-panel-head {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
.form-kicker {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 6px;
  }
.form-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }
.form-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 10px;
  }
.form-price-amount {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
  }
.form-price-period {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
  }
.form-group {
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
  }
.form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s;
  }
.form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
  }
.form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--yellow);
  }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
.signature-area {
    background: rgba(255, 255, 255, 0.95);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 12px;
    cursor: crosshair;
    position: relative;
    font-style: italic;
  }
.signature-area canvas {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }
.signature-area .sig-placeholder {
    position: absolute;
    pointer-events: none;
    color: var(--muted);
  }
.signature-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 12px;
  }
.sig-clear {
    color: rgba(255, 255, 255, 0.85);
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
  }
.sig-clear:hover {
    background: rgba(255, 255, 255, 0.12);
  }
.form-consent {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
  }
.form-consent label {
    display: flex;
    gap: 8px;
    cursor: pointer;
  }
.form-consent input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: var(--yellow);
  }
.form-submit {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    color: var(--green-deep);
    padding: 16px 22px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    font-family: inherit;
    position: relative;
    z-index: 1;
  }
.form-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  }
.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
.form-alt {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 14px;
    position: relative;
    z-index: 1;
  }
.form-alt a {
    color: var(--yellow);
    font-weight: 700;
    text-decoration: none;
  }
/* === FORM INTRO + TALLY WRAPPER === */
  .form-intro {
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
  }
.form-intro strong { color: var(--yellow); }
.tally-wrapper {
    background: white;
    border-radius: 12px;
    padding: 14px 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 500px;
  }
.tally-wrapper iframe {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
  }
/* === SUCCESS STATE === */
  .success-state {
    display: none;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
  }
.success-state.active { display: block; }
.form-content.hidden { display: none; }
.success-icon {
    width: 64px; height: 64px;
    background: white;
    color: var(--green-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
  }
.success-state h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
  }
.success-state p {
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
  }
/* === FOOTER === */
  footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.75);
    padding: 50px 0 30px;
    text-align: center;
    font-size: 13px;
  }
footer a { color: rgba(255, 255, 255, 0.9); text-decoration: none; }
@media (max-width: 960px) {
    .souscrire-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-panel { position: static; }
    .contract-panel { padding: 28px 24px; }
    .form-row { grid-template-columns: 1fr; }
  }
/* Layout lettre de mission */
  .lm-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 40px;
    padding: 20px 0 80px;
    align-items: start;
  }
@media (max-width: 920px) {
    .lm-grid { grid-template-columns: 1fr; gap: 30px; padding-top: 10px; }
  }
/* Colonne gauche : intro */
  .lm-intro {
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px 28px;
    position: sticky;
    top: 20px;
  }
@media (max-width: 920px) {
    .lm-intro { position: static; }
  }
.lm-intro-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 20px;
  }
.lm-logo {
    height: 34px;
    width: auto;
  }
.lm-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-deep);
    background: var(--green-bg);
    padding: 4px 10px;
    border-radius: 100px;
  }
.lm-greeting {
    font-size: 17px;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 10px;
  }
.lm-intro > p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--text);
    margin-bottom: 18px;
  }
.lm-steps {
    margin: 22px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
.lm-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
.lm-step-num {
    flex: 0 0 28px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }
.lm-step strong {
    display: block;
    font-size: 14.5px;
    color: var(--ink);
    margin-bottom: 2px;
  }
.lm-step p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
  }
.lm-contact-block {
    background: var(--bg);
    border-radius: 14px;
    padding: 16px 18px;
    margin-top: 20px;
  }
.lm-contact-title {
    font-size: 12.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 10px;
  }
.lm-contact-block p {
    margin: 0 0 6px;
    font-size: 14px;
  }
.lm-contact-link {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
.lm-contact-link:hover {
    color: var(--green-deep);
  }
.lm-security {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.5;
  }
/* Colonne droite : Tally */
  .lm-form-panel {
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px 32px;
    box-shadow: 0 20px 50px rgba(10, 31, 23, 0.06);
  }
.lm-form-head {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
  }
.lm-form-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-deep);
    background: var(--green-bg);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
  }
.lm-form-head h2 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 6px;
  }
.lm-form-head p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
  }
.lm-tally-wrap {
    min-height: 600px;
    position: relative;
  }
.lm-tally-wrap iframe {
    display: block;
    width: 100%;
    min-height: 600px;
    border: none;
    background: transparent;
  }
.lm-tally-placeholder {
    padding: 50px 20px;
    text-align: center;
    background: var(--green-bg);
    border: 2px dashed var(--green-glow);
    border-radius: 14px;
    color: var(--green-deep);
    font-size: 14px;
  }

/* --- from ma-nego-pack.html --- */
/* === HERO === */
  .hero {
    padding: 30px 0 20px;
    position: relative;
    overflow: hidden;
  }
.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
  }
/* === EXPERTISE ASIDE (encadré bleu marine Ma Négo à droite dans le hero) === */
  .expertise-aside {
    background: linear-gradient(160deg, #1d3f7a 0%, #0f2550 100%);
    color: white;
    border-radius: 24px;
    padding: 32px 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(15, 37, 80, 0.3);
    align-self: start;
    margin-top: 8px;
    overflow: hidden;
  }
/* === PACK PRICE ASIDE (encadré prix Pack Assistance) === */
  .pack-eyebrow {
    display: inline-block;
    background: var(--green-bg);
    color: var(--green-deep);
    border: 1px solid var(--green-glow);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
.pack-price-aside {
    background: linear-gradient(165deg, #0dc268 0%, #06a055 60%, #04854a 100%);
    color: white;
    border-radius: 28px;
    padding: 32px 28px 28px;
    position: relative;
    box-shadow: 0 24px 60px rgba(6, 160, 85, 0.28);
    align-self: start;
    margin-top: 54px;
    overflow: hidden;
  }
.pack-price-aside::before {
    content: "";
    position: absolute;
    top: -80px; right: -100px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(255, 216, 92, 0.35) 0%, transparent 65%);
    pointer-events: none;
  }
.pack-price-aside::after {
    content: "";
    position: absolute;
    bottom: -80px; left: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
  }
.pack-price-head {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
  }
.pack-price-kicker {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 4px;
  }
.pack-price-label {
    display: block;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: white;
  }
.pack-price-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    position: relative;
    z-index: 1;
    margin-bottom: 6px;
  }
.pack-price-amount {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: white;
  }
.pack-price-currency {
    font-size: 0.55em;
    font-weight: 800;
    margin-left: -2px;
  }
.pack-price-period {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
  }
.pack-price-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
  }
.pack-price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
  }
.pack-price-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
.pack-price-list li:last-child { border-bottom: none; }
.pack-price-list li strong { color: white; font-weight: 700; }
.pack-price-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 13px;
    width: 20px; height: 20px;
    background: var(--yellow);
    border-radius: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1f17' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 12px 12px;
    background-position: center;
    background-repeat: no-repeat;
  }
.pack-price-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    color: var(--green-deep);
    padding: 16px 22px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
  }
.pack-price-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  }
.pack-price-contact {
    margin-top: 14px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
  }
.pack-price-contact a {
    color: var(--yellow);
    font-weight: 700;
    text-decoration: none;
  }
.pack-price-extra {
    margin-top: 18px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    text-align: center;
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    z-index: 1;
    border-top: 1px dashed rgba(255, 216, 92, 0.5);
  }
.pack-price-extra strong {
    color: var(--yellow);
    font-weight: 800;
    font-size: 13px;
  }
.params-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
.pack-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s;
  }
.param-card:hover .pack-service-icon {
    transform: rotate(-6deg) scale(1.08);
  }
.pack-service-icon-green { background: var(--green-bg); color: var(--green-deep); }
.pack-service-icon-blue { background: #e6efff; color: #1d3f7a; }
.pack-service-icon-yellow { background: #fff4c9; color: #8a6500; }
.pack-service-icon-coral { background: #ffe1d7; color: #c54420; }
.pack-extra-note {
    max-width: 920px;
    margin: 32px auto 0;
    padding: 22px 28px;
    background: white;
    border: 1px dashed var(--line-strong);
    border-radius: 18px;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text);
    text-align: center;
  }
.pack-extra-note strong { color: var(--ink); }
/* === SERVICES (format home avec illustrations SVG) === */
  .services {
    padding: 20px 0 55px;
  }
.service-card-v2 {
    padding: 0 !important;
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    display: flex !important;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
  }
.service-card-v2 .service-body h3 {
    font-size: clamp(26px, 2.6vw, 36px) !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    line-height: 0.85 !important;
    margin-bottom: 14px !important;
    color: var(--ink) !important;
  }
.svc-tail {
    font-size: 0.52em;
    display: inline-block;
    white-space: nowrap;
  }
.service-card-v2:hover .service-btn {
    background: var(--green);
    color: white;
  }
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
  }
@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
  }
.explain-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
  }

/* --- from ma-nego-prix.html --- */
.hero::before {
    content: "";
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(13, 194, 104, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }
.hero-inner {
    text-align: center;
    max-width: 840px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
.hero-eyebrow {
    display: inline-block;
    background: var(--green-bg);
    color: var(--green-deep);
    border: 1px solid var(--green-glow);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
.hero h1 {
    font-size: clamp(38px, 4.5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.02;
    color: var(--ink);
    margin-bottom: 14px;
  }
.hero h1 em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
.hero-lede {
    font-size: 19px;
    line-height: 1.55;
    color: var(--text);
    max-width: 720px;
    margin: 0 auto 20px;
  }
.hero-lede strong { color: var(--ink); }
/* === 3 POINTS CLÉS === */
  .key-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
  }
.key-point {
    background: white;
    border: 1px solid var(--green-glow);
    border-radius: 16px;
    padding: 22px 20px;
    text-align: center;
    transition: all 0.3s;
  }
.key-point:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(10, 31, 23, 0.08);
  }
.key-point-icon {
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 1;
  }
.key-point-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.015em;
    line-height: 1.2;
  }
/* === PRINCIPE (Audit gratuit) === */
  .principe {
    padding: 40px 0;
  }
.principe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-bg);
    color: var(--green-deep);
    border: 1px solid var(--green-glow);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
.badge-dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
  }
.principe h2 {
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 20px;
  }
.principe h2 em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--green-deep);
  }
.principe p {
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 16px;
  }
.principe p strong { color: var(--ink); }
.principe-visual {
    background: linear-gradient(165deg, var(--green-bg) 0%, var(--green-glow) 100%);
    border-radius: 28px;
    padding: 36px 36px;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
.principe-visual::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(255, 216, 92, 0.4) 0%, transparent 70%);
  }
.zero-price {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
.zero-price-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-deep);
    margin-bottom: 10px;
  }
.zero-price-amount {
    font-size: 160px;
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.08em;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
  }
.zero-price-currency {
    font-size: 0.42em;
  }
.zero-price-sub {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    max-width: 320px;
  }
/* === EXEMPLE CHIFFRÉ === */
  .exemple {
    padding: 45px 0;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.9);
  }
.exemple .badge {
    background: rgba(255, 216, 92, 0.15);
    color: var(--yellow);
    border-color: rgba(255, 216, 92, 0.35);
  }
.exemple .badge-dot { background: var(--yellow); }
.exemple-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 32px;
  }
.exemple-header h2 {
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: white;
    margin-bottom: 14px;
    line-height: 1.08;
  }
.exemple-header h2 em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--yellow);
  }
.exemple-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
  }
.example-flow {
    display: grid;
    grid-template-columns: 1fr 60px 1fr 60px 1fr;
    gap: 20px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
  }
.flow-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
  }
.flow-card-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
  }
.flow-card-amount {
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    margin-bottom: 8px;
    color: white;
  }
.flow-card-amount.before { color: rgba(255, 122, 89, 0.95); }
.flow-card-amount.after { color: white; }
.flow-card-amount.gain {
    background: linear-gradient(135deg, var(--green) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
.flow-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
  }
.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
  }
/* === 2 CAS CÔTE À CÔTE === */
  .two-cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }
.case-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    padding: 36px 32px;
  }
.case-card-featured {
    background: rgba(13, 194, 104, 0.08);
    border: 2px solid rgba(13, 194, 104, 0.5);
  }
.case-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
  }
.case-label-coral {
    background: rgba(255, 122, 89, 0.15);
    color: #ffb39f;
    border: 1px solid rgba(255, 122, 89, 0.35);
  }
.case-label-green {
    background: rgba(13, 194, 104, 0.18);
    color: #7eeaad;
    border: 1px solid rgba(13, 194, 104, 0.45);
  }
.case-card h3 {
    color: white;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.2;
  }
.case-card h3 strong {
    color: var(--yellow);
    font-weight: 800;
  }
.case-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
    margin-bottom: 20px;
  }
.case-desc strong { color: white; }
.case-flow {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    padding: 18px 20px;
  }
.case-flow-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    gap: 10px;
  }
.case-flow-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
  }
.case-flow-label-strong {
    color: white;
    font-weight: 700;
    font-size: 14px;
  }
.case-flow-amount {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
.case-flow-before { color: rgba(255, 122, 89, 0.95); }
.case-flow-after { color: white; }
.case-flow-gain {
    background: linear-gradient(135deg, var(--green) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 24px;
  }
.case-flow-arrow {
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 18px;
    padding: 2px 0;
  }
.case-flow-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 6px 0;
  }
.case-flow-row-sub {
    padding: 4px 0;
  }
.case-flow-sublabel {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
  }
.case-flow-sublabel-green {
    color: #7eeaad;
    font-weight: 700;
  }
.case-flow-subamount {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
  }
.case-flow-subamount-green {
    color: #7eeaad;
  }
.case-flow-bonus {
    margin-top: 12px;
    padding: 10px 12px;
    background: rgba(255, 216, 92, 0.12);
    border: 1px dashed rgba(255, 216, 92, 0.4);
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
  }
.case-flow-bonus strong {
    color: var(--yellow);
  }
/* === DÉGRESSIVITÉ === */
  .degressive-box {
    max-width: 1100px;
    margin: 32px auto 0;
    padding: 40px 36px;
    background: linear-gradient(165deg, rgba(255, 216, 92, 0.08) 0%, rgba(13, 194, 104, 0.08) 100%);
    border: 1px solid rgba(255, 216, 92, 0.3);
    border-radius: 24px;
    text-align: center;
  }
.degressive-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 216, 92, 0.15);
    color: var(--yellow);
    border: 1px solid rgba(255, 216, 92, 0.4);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
.degressive-box h3 {
    color: white;
    font-size: clamp(22px, 2.3vw, 32px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1.15;
  }
.degressive-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15.5px;
    max-width: 720px;
    margin: 0 auto 22px;
    line-height: 1.55;
  }
.degressive-box p strong { color: white; }
.degressive-rules {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 24px auto 22px;
    flex-wrap: wrap;
  }
.degressive-rule {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 18px 24px;
    text-align: left;
  }
.degressive-rule strong {
    color: var(--yellow);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: block;
  }
.degressive-rule-icon {
    font-size: 28px;
  }
.degressive-rule-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
  }
.degressive-rule-or {
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2em;
  }
.degressive-note {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-style: italic;
  }
.share-breakdown {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 216, 92, 0.4);
    border-radius: 20px;
  }
.share-breakdown h3 {
    color: var(--yellow);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.015em;
  }
.share-breakdown p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
  }
.share-breakdown strong { color: white; }
/* === 2 COLONNES (inclus / non inclus) === */
  .whats-in {
    padding: 40px 0;
  }
.whats-in-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 32px;
  }
.whats-in-header h2 {
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.08;
  }
.whats-in-header h2 em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--green-deep);
  }
.whats-in-header p {
    font-size: 17px;
    color: var(--text);
  }
.whats-in-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
.whats-card {
    background: white;
    border-radius: 24px;
    padding: 36px 32px;
    border: 1px solid var(--line);
  }
.whats-card-green {
    border: 2px solid var(--green-glow);
    background: linear-gradient(180deg, var(--green-bg) 0%, white 60%);
  }
.whats-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
.whats-card-green .whats-card-kicker { color: var(--green-deep); }
.whats-card-gray .whats-card-kicker { color: var(--muted); }
.whats-card h3 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 20px;
    line-height: 1.15;
  }
.whats-card ul {
    list-style: none;
    padding: 0;
  }
.whats-card li {
    padding: 12px 0 12px 34px;
    position: relative;
    font-size: 15.5px;
    line-height: 1.5;
    color: var(--text);
    border-bottom: 1px solid var(--line);
  }
.whats-card li:last-child { border-bottom: none; }
.whats-card li strong { color: var(--ink); font-weight: 700; }
.whats-card-green li::before {
    content: "";
    position: absolute;
    left: 0; top: 14px;
    width: 22px; height: 22px;
    background: var(--green);
    border-radius: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 14px 14px;
    background-position: center;
    background-repeat: no-repeat;
  }
.whats-card-gray li::before {
    content: "";
    position: absolute;
    left: 2px; top: 16px;
    width: 18px; height: 18px;
    background: transparent;
    border: 2px solid var(--muted);
    border-radius: 50%;
  }
.whats-card-gray li::after {
    content: "";
    position: absolute;
    left: 9px; top: 23px;
    width: 4px; height: 4px;
    background: var(--muted);
    border-radius: 50%;
  }
/* === FAQ === */
  .faq {
    padding: 45px 0;
    background: var(--bg);
  }
.faq-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 28px;
  }
.faq-header h2 {
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.08;
  }
.faq-header h2 em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--green-deep);
  }
.faq-list {
    max-width: 840px;
    margin: 0 auto;
  }
.faq-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.2s;
  }
.faq-item:hover {
    border-color: var(--green-glow);
  }
.faq-item summary {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    letter-spacing: -0.015em;
  }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 24px;
    color: var(--green-deep);
    font-weight: 400;
    transition: transform 0.2s;
    flex-shrink: 0;
    line-height: 1;
  }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item-body {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
  }
.faq-item-body p {
    margin-bottom: 10px;
  }
.faq-item-body p:last-child { margin-bottom: 0; }
.faq-item-body strong { color: var(--ink); }
/* === CTA Final === */
  .cta-final {
    padding: 45px 0;
    text-align: center;
  }
.cta-final-box {
    background: linear-gradient(165deg, #0dc268 0%, #06a055 100%);
    border-radius: 32px;
    padding: 44px 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(6, 160, 85, 0.25);
  }
.cta-final-box::before {
    content: "";
    position: absolute;
    top: -120px; right: -120px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(255, 216, 92, 0.3) 0%, transparent 70%);
  }
.cta-final-box h2 {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 16px;
    line-height: 1.05;
    position: relative;
    z-index: 1;
  }
.cta-final-box h2 em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--yellow);
  }
.cta-final-box p {
    font-size: 17px;
    max-width: 620px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
  }
.cta-buttons {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
.btn-white {
    background: white;
    color: var(--green-deep);
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  }
.btn-outline {
    background: transparent;
    color: white;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
  }
@media (max-width: 960px) {
    .principe-grid { grid-template-columns: 1fr; gap: 40px; }
    .example-flow { grid-template-columns: 1fr; gap: 14px; }
    .flow-arrow { transform: rotate(90deg); justify-content: center; padding: 6px 0; }
    .whats-in-grid { grid-template-columns: 1fr; }
    .key-points { grid-template-columns: 1fr; }
    .zero-price-amount { font-size: 110px; }
    .principe-visual { padding: 32px 20px; }
    .two-cases-grid { grid-template-columns: 1fr; }
    .degressive-rules { flex-direction: column; }
    .degressive-rule-or { padding: 4px 0; }
  }

/* --- from media-60millions.html --- */
.other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
.other-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    display: block;
  }
.other-card-tag {
    display: inline-block;
    background: var(--green-bg);
    color: var(--green-deep);
    border-radius: 100px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
.other-card h4 {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 10px;
  }
.other-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.5;
  }
/* === Troncature avec fondu + bouton "Lire la suite" === */
  .article-body.truncated {
    position: relative;
    max-height: 2200px;
    overflow: hidden;
    padding-bottom: 0;
  }

/* --- from media-bfm.html --- */
/* === Images dans le corps d'article === */
  .article-img {
    width: 100%;
    max-width: 760px;
    margin: 32px auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(10, 31, 23, 0.12);
  }
.article-img-caption {
    display: block;
    margin: -20px auto 30px;
    max-width: 760px;
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
    text-align: center;
  }

/* --- from media-challenges.html --- */
/* === Cover en mode magazine (image + texte) === */
  .magazine-cover {
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 40px;
    background: linear-gradient(165deg, var(--green-bg) 0%, var(--green-glow) 100%);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
  }
.magazine-cover-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 45px rgba(10, 31, 23, 0.25);
    transition: transform 0.3s;
  }
.magazine-cover-img:hover {
    transform: translateY(-4px) scale(1.02);
  }
.magazine-cover-caption {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
.magazine-cover-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--green-deep);
    border: 1px solid var(--green-glow);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    width: fit-content;
  }
.magazine-cover-title {
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.2;
    margin: 0;
  }
.magazine-cover-title em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--green-deep);
  }
.magazine-cover-desc {
    font-size: 15px;
    color: var(--text);
    line-height: 1.55;
    margin: 0;
  }
.magazine-cover-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green-deep);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    margin-top: 4px;
  }
.magazine-cover-link:hover {
    color: var(--ink);
  }
@media (max-width: 720px) {
    .magazine-cover {
      grid-template-columns: 1fr;
      padding: 28px;
    }
    .magazine-cover-img {
      max-width: 240px;
      margin: 0 auto;
    }
  }

/* --- from media-europe1.html --- */
/* COVER / HERO IMAGE (SVG placeholder coloré) */
  .article-cover {
    max-width: 1000px;
    margin: 0 auto 20px;
    aspect-ratio: 16/7;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-soft) 0%, var(--green-glow) 100%);
    position: relative;
  }

/* --- from nous-contacter.html --- */
.contact-hero { padding: 30px 0 44px; text-align: center; }
.contact-hero .kicker {
    display: inline-block; background: var(--green-bg); color: var(--green-deep);
    font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 100px; margin-bottom: 16px;
  }
.contact-hero h1 {
    font-size: 54px; font-weight: 800; letter-spacing: -0.03em;
    color: var(--ink); margin-bottom: 18px; line-height: 1.05;
  }
.contact-hero h1 em {
    font-family: 'Instrument Serif', Georgia, serif; font-style: italic;
    font-weight: 400; color: var(--green-deep);
  }
.contact-hero p {
    font-size: 19px; color: var(--text); max-width: 720px; margin: 0 auto;
    line-height: 1.55;
  }
.section { padding: 40px 0 70px; }
.section-alt { background: white; padding: 60px 0; }
/* Cartes contact top */
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
.contact-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(10,31,23,0.08);
    border-color: var(--green-glow);
  }
.contact-icon {
    width: 48px; height: 48px; margin-bottom: 14px;
    background: var(--green-bg); color: var(--green-deep);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
  }
.contact-card h3 {
    font-size: 13px; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 10px;
  }
.contact-card .value {
    font-size: 17px; font-weight: 700; color: var(--ink);
  }
.contact-card .value-small {
    font-size: 14px; color: var(--text); line-height: 1.5;
    margin-top: 4px;
  }
/* Prise de rendez-vous */
  .booking-section h2 {
    font-size: 38px; font-weight: 800; letter-spacing: -0.02em;
    color: var(--ink); margin-bottom: 12px; text-align: center;
  }
.booking-section h2 em {
    font-family: 'Instrument Serif', Georgia, serif; font-style: italic;
    font-weight: 400; color: var(--green-deep);
  }
.booking-section .sub {
    text-align: center; color: var(--muted); font-size: 16px;
    max-width: 680px; margin: 0 auto 40px;
  }
.booking-wrap {
    max-width: 900px; margin: 0 auto;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(10,31,23,0.06);
  }
.booking-iframe-wrap {
    position: relative;
    width: 100%;
    min-height: 680px;
    background: var(--green-bg);
  }
.booking-iframe-wrap iframe {
    display: block;
    width: 100%;
    min-height: 680px;
    border: 0;
  }
.booking-placeholder {
    padding: 60px 30px;
    text-align: center;
    color: var(--green-deep);
  }
.booking-placeholder svg {
    margin-bottom: 20px;
  }
.booking-placeholder h3 {
    font-size: 22px; font-weight: 800; color: var(--ink);
    margin-bottom: 10px;
  }
.booking-placeholder p {
    font-size: 15px; color: var(--muted);
    max-width: 480px; margin: 0 auto 20px; line-height: 1.6;
  }
.booking-placeholder code {
    display: inline-block;
    background: white;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid var(--line);
    font-size: 13px;
    color: var(--ink);
    font-family: 'SF Mono', Monaco, Consolas, monospace;
  }
footer {
    background: var(--ink); color: white;
    padding: 40px 0 30px; text-align: center;
    margin-top: 30px;
  }
@media (max-width: 768px) {
    .contact-hero h1 { font-size: 36px; }
    .booking-section h2 { font-size: 28px; }
    .contact-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
  }

/* --- from qui-sommes-nous.html --- */
/* HERO */
  .qsn-hero { padding: 30px 0 50px; text-align: center; }
.qsn-hero .kicker {
    display: inline-block; background: var(--green-bg); color: var(--green-deep);
    font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 100px; margin-bottom: 16px;
  }
.qsn-hero h1 {
    font-size: 54px; font-weight: 800; letter-spacing: -0.03em;
    color: var(--ink); margin-bottom: 18px; line-height: 1.05;
  }
.qsn-hero h1 em {
    font-family: 'Instrument Serif', Georgia, serif; font-style: italic;
    font-weight: 400; color: var(--green-deep);
  }
.qsn-hero p {
    font-size: 19px; color: var(--text); max-width: 720px; margin: 0 auto;
    line-height: 1.55;
  }
/* SECTION CONTACT */
  .section { padding: 60px 0; }
.section-alt { background: white; }
.section h2 {
    font-size: 36px; font-weight: 800; letter-spacing: -0.02em;
    color: var(--ink); margin-bottom: 12px; text-align: center;
  }
.section h2 em {
    font-family: 'Instrument Serif', Georgia, serif; font-style: italic;
    font-weight: 400; color: var(--green-deep);
  }
.section .sub {
    text-align: center; color: var(--muted); font-size: 15.5px;
    max-width: 620px; margin: 0 auto 44px;
  }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
  }
.contact-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.2s;
  }
.contact-icon {
    width: 48px; height: 48px; margin: 0 auto 14px;
    background: var(--green-bg);
    color: var(--green-deep);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
  }
.contact-card .value a { text-decoration: none; color: var(--ink); }
.contact-card .value a:hover { color: var(--green-deep); }
/* FONDATEURS */
  .founders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
.founder {
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 34px 30px;
    position: relative;
  }
.founder-avatar {
    width: 96px; height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 36px; font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(13,194,104,0.25);
    overflow: hidden;
  }
.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
  }
.founder h3 {
    font-size: 26px; font-weight: 800;
    color: var(--ink); margin-bottom: 6px;
    letter-spacing: -0.01em;
  }
.founder .role {
    font-size: 13px; font-weight: 700;
    color: var(--green-deep);
    background: var(--green-bg);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 16px;
  }
.founder p {
    font-size: 15.5px; line-height: 1.6;
    color: var(--text);
    margin-bottom: 14px;
  }
.founder strong { color: var(--ink); font-weight: 700; }
.founder blockquote {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 17px;
    color: var(--green-deep);
    line-height: 1.5;
    padding: 16px 0 6px 18px;
    border-left: 3px solid var(--green);
    margin-top: 18px;
  }
.founder blockquote::before { content: ""; }
/* STORY */
  .story-wrap {
    max-width: 800px; margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 50px 56px;
    border: 1px solid var(--line);
  }
.story-wrap h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 34px;
    color: var(--ink);
    margin-bottom: 22px;
    line-height: 1.2;
    font-weight: 400;
  }
.story-wrap p {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
  }
.story-wrap strong { color: var(--ink); font-weight: 700; }
.price-box {
    background: var(--green-bg);
    border-radius: 14px;
    padding: 22px 26px;
    margin: 24px 0;
    text-align: center;
  }
.price-box .strike {
    font-size: 32px; font-weight: 800;
    color: var(--muted); text-decoration: line-through;
  }
.price-box .arrow {
    font-size: 20px; color: var(--green-deep);
    margin: 0 14px;
  }
.price-box .real {
    font-size: 44px; font-weight: 800;
    color: var(--green-deep); letter-spacing: -0.02em;
  }
.price-box .label {
    font-size: 14px; color: var(--muted);
    margin-top: 6px;
    font-weight: 600;
  }
/* CTA BLOCS */
  .cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
  }
.cta-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 26px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(10,31,23,0.08);
    border-color: var(--green);
  }
.cta-card .icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    color: white;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(13,194,104,0.25);
  }
.cta-card h3 {
    font-size: 17px; font-weight: 800;
    color: var(--ink); margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
.cta-card p {
    font-size: 14px; color: var(--muted);
    line-height: 1.5;
  }
/* FOOTER */
  footer {
    background: var(--ink); color: white;
    padding: 40px 0 30px; text-align: center;
    margin-top: 30px;
  }
@media (max-width: 768px) {
    .qsn-hero h1 { font-size: 36px; }
    .section h2 { font-size: 28px; }
    .contact-grid, .founders, .cta-grid { grid-template-columns: 1fr; }
    .story-wrap { padding: 30px 24px; }
    .story-wrap h3 { font-size: 26px; }
    .nav-links { display: none; }
  }

/* === Late overrides: ensure single-column variants win the cascade === */
.hero-grid.hero-grid-single,
.hero-grid-single {
  grid-template-columns: 1fr !important;
  max-width: 820px;
  margin: 0 auto;
}

/* ============================================================
   V4 SERVICE PAGE — added 2026-05-19
   Restored sections: explain-grid-4, explain-type variants,
   params-grid responsive, related-chip-current
   ============================================================ */

/* --- explain-grid-4: 4-column layout (not present in V4 but used
       in WP single-service.php for wide explain blocks) --- */
.explain-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* --- explain-type variants: semantic hooks for WP template
       Le saviez-vous (dark badge) and Conseil Ma Négo (green badge) --- */
.explain-type-did-you-know .explain-card-badge .badge {
  background: var(--ink) !important;
  color: var(--yellow) !important;
  border-color: var(--ink) !important;
}

.explain-type-ma-nego-advice .explain-card-badge .badge {
  background: var(--green-bg) !important;
  color: var(--green-deep) !important;
  border-color: var(--green-glow) !important;
}

/* --- related-chip-current: active/current state for the carousel chip
       matching the current service page (V4 uses class but defines no rule) --- */
.related-chip.related-chip-current {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  pointer-events: none;
}

/* --- params-grid responsive: collapse to 1 column on mobile
       V4 static pages rely on natural wrapping; WP template needs explicit override --- */
@media (max-width: 760px) {
  .params-grid {
    grid-template-columns: 1fr;
  }
  .explain-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ARTICLE LEAD-GATE — modal + blurred second-half
   ============================================================ */

/* Gated content: visible but blurred/truncated when locked */
.article-gated.is-locked {
  max-height: 220px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
  filter: blur(3px);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
.article-gated {
  transition: max-height 0.4s ease, filter 0.4s ease;
}

/* Modal overlay */
.ag-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 4vh 16px;
  background: rgba(10, 31, 23, 0.55);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  overflow-y: auto;
  animation: agFadeIn 0.18s ease;
}
.ag-modal-overlay[hidden] { display: none; }

.ag-modal {
  width: 100%;
  max-width: 560px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(10, 31, 23, 0.35);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: agPop 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes agFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes agPop { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: none; } }

.ag-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 40px 44px 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.ag-modal-close {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: none; background: var(--bg); color: var(--muted);
  border-radius: 10px; cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.ag-modal-close:hover { background: var(--green-soft); color: var(--green-deep); }

.ag-modal-body {
  padding: 0 44px 40px;
  overflow-y: auto;
}
.ag-modal-intro {
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  margin: 4px 0;
}

/* Form fields inside the modal: light background → dark-on-light (the .form-group
   defaults are white-on-dark for the hero/dark sections). Mirrors .lm-form-group
   from page-lettre-mission.php so the gate matches the "signer en ligne" modal. */
.ag-modal .form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.ag-modal .form-group label span[aria-hidden="true"] { color: var(--green-deep); }
.ag-modal .form-group input,
.ag-modal .form-group textarea {
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ag-modal .form-group input::placeholder,
.ag-modal .form-group textarea::placeholder { color: var(--muted); }
.ag-modal .form-group input:focus,
.ag-modal .form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px var(--green-glow);
}

/* Inline error box (the .lm-form-error class is defined inline on the Lettre page
   only, so the gate needs its own copy in the shared stylesheet). */
.ag-modal .lm-form-error {
  margin: 4px 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fdecea;
  border: 1px solid #f3b6ad;
  color: #b3261e;
  font-size: 14px;
  line-height: 1.45;
}

/* Green submit button inside the modal */
.ag-modal .form-submit {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13, 194, 104, 0.3);
}
.ag-modal .form-submit:hover:not(:disabled) { background: var(--green-deep); }

/* Success state inside modal */
.ag-modal .success-state {
  text-align: center;
  padding: 20px 0;
}
.ag-modal .success-state svg {
  color: var(--green);
  margin-bottom: 12px;
}
.ag-modal .success-state p {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

@media (max-width: 560px) {
  .ag-modal-overlay { padding: 0; }
  .ag-modal { max-width: none; min-height: 100%; max-height: 100%; border-radius: 0; }
}

/* ============================================================
   AUDIT MODAL — popup centré hébergeant le formulaire audit
   partagé (#hero-form via template-parts/section-hero-form.php).
   Réutilise les keyframes agFadeIn / agPop de l'article lead-gate.
   ============================================================ */
.audit-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 4vh 16px;
  background: rgba(10, 31, 23, 0.55);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  overflow-y: auto;
  animation: agFadeIn 0.18s ease;
}
.audit-modal-overlay[hidden] { display: none; }

.audit-modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: auto 0;
  animation: agPop 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* La .hero-form fournit déjà sa carte blanche (fond, radius, ombre) :
   on évite tout double "chrome", on la laisse remplir la largeur. */
.audit-modal .hero-form { width: 100%; margin: 0; }

.audit-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: none; background: var(--bg); color: var(--muted);
  border-radius: 10px; cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.audit-modal-close:hover { background: var(--green-soft); color: var(--green-deep); }

@media (max-width: 560px) {
  .audit-modal-overlay { padding: 0; align-items: stretch; }
  .audit-modal { max-width: none; min-height: 100%; margin: 0; }
  .audit-modal .hero-form { border-radius: 0; min-height: 100vh; }
}

/* Alignement vertical de la flèche du bouton "Bénéficier de cette expertise".
   Le SVG 12px se posait légèrement bas par rapport au centre optique du texte. */
.expertise-aside-btn svg { flex: 0 0 auto; position: relative; top: -1px; }

/* === DÉSINSCRIPTION (pages unsubscribe / merci / annuler) === */

/* Section wrapper — fond neutre, espacement vertical généreux */
.unsub-section {
  padding: 70px 0 90px;
  background: var(--bg);
}

/* Carte centrale — max 560px, centrée, fond blanc, bordure discrète */
.unsub-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--line-strong);
  border-radius: 18px;
  padding: 38px 34px;
  box-shadow: 0 2px 8px rgba(10, 31, 23, 0.04);
}

/* Titre principal de la carte */
.unsub-card h1 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-top: 10px;
  margin-bottom: 8px;
  color: var(--ink);
}

/* Accroche sous le titre */
.unsub-lede {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}

/* Champ de formulaire ou groupe de cases à cocher */
.unsub-field {
  margin-bottom: 18px;
}

/* Reset natif fieldset (utilisé pour le groupe de checkboxes) */
.unsub-field[class] {
  border: 0;
  padding: 0;
  min-inline-size: 0;
}
fieldset.unsub-field {
  border: 0;
  padding: 0;
  min-inline-size: 0;
}
fieldset.unsub-field legend {
  padding: 0;
  display: block;
  width: 100%;
  margin-bottom: 6px;
}

/* Label de case à cocher — ligne flexible, texte à taille réduite */
.unsub-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink);
  margin-top: 10px;
  cursor: pointer;
  clear: both;
}
.unsub-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}

/* Message d'erreur inline */
.unsub-error {
  color: #e53935;
  font-size: 13.5px;
  font-weight: 600;
  margin: 10px 0;
}

/* Bouton de soumission — largeur pleine, centré */
.unsub-submit {
  width: 100%;
  justify-content: center;
  font-family: inherit;
  cursor: pointer;
  border: none;
}
.unsub-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/* Suppression du hover transform/shadow quand le bouton est désactivé */
.btn-green.unsub-submit:disabled:hover {
  transform: none;
  box-shadow: 0 4px 14px rgba(13, 194, 104, 0.3);
}

/* Variante carte de confirmation — texte centré */
.unsub-card--status {
  text-align: center;
}

/* Icône de statut — cercle dégradé vert centré */
.unsub-status-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow: 0 8px 18px rgba(13, 194, 104, 0.35);
}

/* Ligne d'accroche forte dans la carte de statut */
.unsub-strong {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

/* Paragraphes et bouton retour dans la carte de confirmation */
.unsub-card--status p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 10px;
}
.unsub-card--status .btn {
  margin-top: 18px;
}

/* Mobile — carte resserrée, titre plus petit */
@media (max-width: 640px) {
  .unsub-card {
    padding: 28px 20px;
  }
  .unsub-card h1 {
    font-size: 24px;
  }
}
