/* =========================================================
   INTEL-AR — Feuille de style globale
   Palette : #1565D8 / #0BC5B8 / #0F2E6D / #F5F7FA / #FFFFFF
   Typographie : Poppins (titres) + Inter (corps)
   ========================================================= */

:root {
  --blue: #1565D8;
  --blue-600: #0F52BA;
  --turquoise: #0BC5B8;
  --turquoise-700: #079b91;
  --navy: #0F2E6D;
  --navy-900: #0a2350;
  --gray-light: #F5F7FA;
  --white: #FFFFFF;

  --ink: #0B1B3A;
  --body: #3C4A63;
  --muted: #6B7A99;
  --line: #E3E9F2;

  --grad-deep: linear-gradient(135deg, #0F2E6D 0%, #15397f 45%, #1565D8 100%);
  --grad-accent: linear-gradient(120deg, #1565D8 0%, #0BC5B8 100%);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(15, 46, 109, .06), 0 4px 14px rgba(15, 46, 109, .05);
  --shadow-md: 0 10px 30px rgba(15, 46, 109, .10);
  --shadow-lg: 0 24px 60px rgba(15, 46, 109, .16);

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 48px);
  --section-y: clamp(64px, 9vw, 120px);

  --ff-display: "Poppins", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.section { padding-block: var(--section-y); }
.section--tint { background: var(--gray-light); }
.section--deep { background: var(--grad-deep); color: #D9E3F7; }
.section--deep h2, .section--deep h3 { color: #fff; }

/* ---------- Eyebrow / signature flow motif ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--turquoise-700);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}
.section--deep .eyebrow { color: var(--turquoise); }

.lead { font-size: 1.18rem; color: var(--body); max-width: 60ch; }
.section--deep .lead { color: #C4D2EE; }

.section-head { max-width: 64ch; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(21,101,216,.3); }
.btn--primary:hover { background: var(--blue-600); box-shadow: 0 14px 30px rgba(21,101,216,.4); }
.btn--accent { background: var(--grad-accent); color: #fff; box-shadow: 0 10px 24px rgba(11,197,184,.28); }
.btn--ghost { background: transparent; color: var(--blue); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); background: rgba(21,101,216,.05); }
.btn--light { background: #fff; color: var(--navy); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--ff-display); font-weight: 700; font-size: 1.28rem; color: var(--navy); letter-spacing: -.02em; }
.brand .mark { width: auto; height: 40px; display: block; object-fit: contain; }
.brand b { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--ff-display); font-weight: 500; font-size: .96rem;
  color: var(--ink); padding: 9px 14px; border-radius: 9px;
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: var(--gray-light); color: var(--blue); }
.nav-links a.active { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-menu { display: flex; align-items: center; gap: 22px; }
.nav-menu .nav-cta { flex: 0 0 auto; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }

@media (max-width: 1040px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute; left: 0; right: 0; top: 74px;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px var(--pad) 22px;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-links a { padding: 13px 12px; border-radius: 10px; }
  .nav-cta { flex-direction: column; align-items: stretch; margin-top: 12px; }
  .nav-cta .btn { justify-content: center; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: var(--grad-deep);
  color: #fff;
  overflow: hidden;
  padding-block: clamp(72px, 11vw, 140px);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(620px 420px at 88% 8%, rgba(11,197,184,.30), transparent 60%),
    radial-gradient(520px 420px at 6% 98%, rgba(21,101,216,.45), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .hero-sub { color: #C8D6F2; font-size: 1.2rem; max-width: 56ch; margin-top: 4px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 54%); gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }

/* full-height hero image with seamless curved separation */
.hero-media {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: clamp(42%, 46%, 50%);
  z-index: 1;
  clip-path: ellipse(110% 78% at 100% 50%);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,46,109,.85) 0%, rgba(15,46,109,.25) 18%, transparent 36%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-media {
    position: static; width: 100%; margin-top: 32px;
    clip-path: none; border-radius: 18px; overflow: hidden;
    box-shadow: 0 22px 50px rgba(0,0,0,.34); border: 1px solid rgba(255,255,255,.14);
  }
  .hero-media img { height: auto; }
  .hero-media::after { display: none; }
}

.page-hero {
  background: var(--grad-deep); color: #fff;
  padding-block: clamp(60px, 8vw, 104px);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(520px 360px at 92% 12%, rgba(11,197,184,.26), transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #C8D6F2; max-width: 62ch; font-size: 1.16rem; }
.crumb { font-size: .85rem; color: #9FB4DD; margin-bottom: 14px; font-family: var(--ff-display); letter-spacing: .04em; }
.crumb a:hover { color: #fff; }

/* ===================== CARDS / GRIDS ===================== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfe0fb; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

.card-icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(21,101,216,.12), rgba(11,197,184,.16));
  color: var(--blue);
}
.card-icon svg { width: 26px; height: 26px; }

.feature-list { list-style: none; margin: 14px 0 0; padding: 0; }
.feature-list li {
  position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--body); font-size: .98rem;
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--grad-accent);
}

/* pill / tags */
.pill {
  display: inline-block; padding: 7px 15px; border-radius: 999px;
  background: var(--gray-light); border: 1px solid var(--line);
  font-family: var(--ff-display); font-weight: 500; font-size: .9rem; color: var(--navy);
  margin: 4px;
}
.section--deep .pill { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }

/* why-us row */
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item .num {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-accent); color: #fff;
  display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700;
}
.why-item h3 { font-size: 1.1rem; margin-bottom: 4px; }
.why-item p { color: var(--muted); font-size: .96rem; margin: 0; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 720px){ .stats { grid-template-columns: repeat(2,1fr); } }
.stat .n { font-family: var(--ff-display); font-weight: 700; font-size: 2.4rem; color: #fff; line-height: 1; }
.stat .l { color: #B9C9EC; font-size: .95rem; margin-top: 6px; }

/* split (text + visual) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; } }

/* solution detail block */
.sol-block { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px,4vw,44px); background: #fff; box-shadow: var(--shadow-sm); }
.module-callout { margin-top: 22px; padding: 22px 24px; border-radius: 14px; background: var(--gray-light); border: 1px solid var(--line); border-left: 4px solid var(--turquoise); }
.module-callout h3 { margin: 4px 0 6px; font-size: 1.12rem; color: var(--navy); }
.module-callout p { color: var(--body); margin: 0 0 12px; }
.module-callout .feature-list { margin-top: 0; }
.module-callout .tag { display: inline-block; margin-top: 4px; font-size: .82rem; font-weight: 600; color: var(--blue); }
.sol-block + .sol-block { margin-top: 26px; }
.sol-block .sol-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }

/* sector block */
.sector {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; padding: 30px; box-shadow: var(--shadow-sm);
}
.sector h3 { display: flex; align-items: center; gap: 12px; }
.sector .sector-ico { width: 42px; height: 42px; border-radius: 11px; display:grid; place-items:center; background: linear-gradient(135deg, rgba(21,101,216,.12), rgba(11,197,184,.16)); color: var(--blue); flex: 0 0 auto;}
.sector h4 { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--turquoise-700); margin: 18px 0 6px; font-family: var(--ff-display); }

/* values */
.value-card { text-align: left; }
.value-card .card-icon { background: var(--grad-deep); color: #fff; }

/* resources / blog */
.post {
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post .thumb { aspect-ratio: 16/9; background: var(--grad-deep); position: relative; }
.post .thumb::after{ content:""; position:absolute; inset:0; background: radial-gradient(300px 200px at 80% 20%, rgba(11,197,184,.4), transparent 60%);}
.post .body { padding: 24px; }
.post .cat { font-family: var(--ff-display); font-weight: 600; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--turquoise-700); }
.post h3 { font-size: 1.18rem; margin: 8px 0; }
.post p { color: var(--muted); font-size: .95rem; }

.cat-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.cat-tabs .pill { cursor: default; }
.cat-tabs .pill.is-active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ===================== FORM ===================== */
.form-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 56px); }
@media (max-width: 880px){ .form-wrap { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--ff-display); font-weight: 500; font-size: .92rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: var(--ff-body); font-size: 1rem; color: var(--ink); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(21,101,216,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px){ .field-row { grid-template-columns: 1fr; } }
.req { color: var(--blue); }
.form-note { font-size: .85rem; color: var(--muted); }
.contact-aside { background: var(--grad-deep); color: #fff; border-radius: var(--radius-lg); padding: clamp(28px,4vw,40px); }
.contact-aside h3 { color: #fff; }
.contact-aside .ci { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 20px; color: #D9E3F7; }
.contact-aside .ci svg { flex: 0 0 auto; margin-top: 3px; color: var(--turquoise); }
.contact-aside a:hover { color: #fff; text-decoration: underline; }
.form-success { display:none; background: rgba(11,197,184,.12); border:1px solid var(--turquoise); color: var(--turquoise-700); padding: 14px 16px; border-radius: 11px; margin-bottom: 18px; font-weight: 500;}
.form-success.show { display:block; }

/* ===================== CTA band ===================== */
.cta-band { background: var(--grad-accent); border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 56px); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 56ch; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--navy-900); color: #AEC0E4; padding-block: 60px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand b { color: var(--turquoise); }
.footer-grid h4 { color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--ff-display); }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a:hover { color: #fff; }
.footer-about { max-width: 34ch; font-size: .95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; color: #8AA0CC; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: background .15s; }
.footer-social a:hover { background: var(--blue); color: #fff; }

/* ===================== UTIL / MOTION ===================== */
.reveal { transition: opacity .6s ease, transform .6s ease; }
html.js .reveal { opacity: 0; transform: translateY(18px); }
html.js .reveal.in { opacity: 1; transform: none; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 44px; }
.text-center { text-align: center; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .card:hover, .post:hover { transform: none; }
}

:focus-visible { outline: 3px solid var(--turquoise); outline-offset: 2px; border-radius: 4px; }

/* ============ AJOUTS v2.1 — offre, produits, statuts, legal, formulaire ============ */

.skip-link { position:absolute; left:-9999px; top:0; z-index:999; background:var(--navy); color:#fff; padding:10px 16px; border-radius:0 0 8px 0; }
.skip-link:focus { left:0; }

/* Bandeau offre d'entree */
.offer-band {
  display:grid; grid-template-columns: 1fr 300px; gap:36px; align-items:center;
  border:1px solid var(--line); border-left:5px solid var(--turquoise);
  border-radius: var(--radius-lg); background:#fff; padding: clamp(26px,4vw,42px);
  box-shadow: var(--shadow-sm);
}
.offer-side { background:var(--gray-light); border-radius:14px; padding:24px; text-align:center; }
.offer-side { text-align:left; }
.offer-label { display:block; font-size:.74rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); margin-top:12px; }
.offer-label:first-child { margin-top:0; }
.offer-value { display:block; font-family:Poppins,sans-serif; font-size:1.02rem; color:var(--navy); font-weight:600; line-height:1.3; }
.offer-note { font-size:.82rem; color:var(--muted); margin:12px 0 0; }
@media (max-width: 860px) { .offer-band { grid-template-columns:1fr; } }

/* Listes en 2 colonnes */
.feature-list--2 { columns:2; column-gap:40px; margin-top:14px; }
@media (max-width: 700px) { .feature-list--2 { columns:1; } }

/* Cartes secondaires */
.mini-card { border:1px solid var(--line); border-radius:14px; padding:20px; background:#fff; }
.mini-card h4 { font-family:Poppins,sans-serif; color:var(--navy); font-size:1rem; margin:0 0 8px; }
.mini-card p { color:var(--muted); font-size:.94rem; margin:0; }
.card--dark { background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.14); }
.card-link { display:inline-block; margin-top:10px; font-size:.92rem; font-weight:600; color:var(--blue); }
.sol-note { background:var(--gray-light); border-radius:10px; padding:12px 16px; font-size:.94rem; color:var(--body); margin-top:16px; }

/* Statuts produits */
.status {
  display:inline-block; font-size:.76rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  padding:5px 11px; border-radius:999px; margin-bottom:10px;
}
.status--build  { background:rgba(11,197,184,.16); color:#0BC5B8; border:1px solid rgba(11,197,184,.45); }
.status--design { background:rgba(159,180,221,.16); color:#9FB4DD; border:1px solid rgba(159,180,221,.4); }
.sol-block .status--build  { background:rgba(11,197,184,.12); color:var(--turquoise-700); }
.sol-block .status--design { background:var(--gray-light); color:var(--muted); border-color:var(--line); }

.callout-action {
  margin-top:22px; padding:20px 22px; border-radius:14px; background:var(--gray-light);
  border-left:4px solid var(--turquoise); display:flex; flex-wrap:wrap; gap:16px;
  align-items:center; justify-content:space-between;
}
.callout-action p { margin:0; color:var(--body); max-width:52ch; }

/* Formulaire */
.form-error { display:none; background:rgba(214,60,60,.08); border:1px solid #D63C3C; color:#B02A2A; padding:14px 16px; border-radius:11px; margin-bottom:18px; font-weight:500; }
.form-error.show { display:block; }
.hp-field { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.field--consent { margin-top:6px; }
.consent { display:flex; gap:10px; align-items:flex-start; font-size:.92rem; color:var(--body); font-weight:400; cursor:pointer; }
.consent input { margin-top:3px; width:16px; height:16px; flex:0 0 auto; accent-color:var(--blue); }
.was-validated input:invalid, .was-validated select:invalid, .was-validated textarea:invalid { border-color:#D63C3C; }
#submit-btn[disabled] { opacity:.6; cursor:progress; }

/* Pages legales */
.legal { max-width:78ch; }
.legal h2 { font-size:1.24rem; margin:32px 0 10px; color:var(--navy); }
.legal h2:first-child { margin-top:0; }
.legal p { color:var(--body); margin-bottom:12px; }
.legal-date { margin-top:32px; padding-top:16px; border-top:1px solid var(--line); font-size:.9rem; color:var(--muted); }
.footer-legal a { text-decoration:underline; }

/* ============ Logos produits ============ */
.logo-tile {
  background:#fff; border-radius:16px; height:104px; margin-bottom:16px;
  display:flex; align-items:center; justify-content:center; padding:16px 22px;
  box-shadow:0 2px 10px rgba(15,46,109,.10);
}
.logo-tile img { max-height:100%; max-width:100%; width:auto; height:auto; object-fit:contain; display:block; }
.logo-tile--light {
  margin:0; flex:0 0 auto; width:168px; height:96px; padding:12px 16px;
  background:var(--gray-light); border:1px solid var(--line); box-shadow:none;
}
.product-tagline { margin:6px 0 0; font-size:.95rem; color:var(--muted); font-style:italic; }
.sol-block .sol-head { align-items:center; flex-wrap:wrap; }
@media (max-width:560px) { .logo-tile--light { width:140px; height:80px; } }

.legal .rprp { background:var(--gray-light); border-left:4px solid var(--turquoise); border-radius:0; padding:16px 20px; margin:14px 0 18px; }
