:root {
  --navy: #0a2348;
  --navy-deep: #04162f;
  --ink-soft: #34445d;
  --blue: #1b64bc;
  --gold: #efb223;
  --gold-deep: #9a6807;
  --green: #3a8b4d;
  --red: #b73535;
  --paper: #fffdf9;
  --line: rgba(8, 30, 62, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--navy);
  background: #f6f2eb;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 92px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(8, 30, 62, 0.08);
  box-shadow: 0 8px 28px rgba(7, 27, 57, 0.05);
}

.header-inner {
  width: min(100%, 1440px);
  height: 100%;
  margin: 0 auto;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 220px 1fr 254px;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 188px;
  height: 84px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 154px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.15vw, 34px);
  color: #183256;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 5px;
  height: 1px;
  background: var(--gold);
  transition: left 160ms ease, right 160ms ease;
}

.main-nav a:hover::after { left: 0; right: 0; }

.header-cta,
.btn {
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  min-height: 50px;
  padding: 0 19px 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(139, 88, 0, 0.12);
  border-radius: 5px;
  color: #101b2d;
  background: linear-gradient(180deg, #f8c846 0%, #e9a910 100%);
  box-shadow: 0 10px 24px rgba(139, 88, 0, 0.18);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta svg { width: 18px; height: 18px; stroke-width: 2; }
.header-cta:hover,
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(139, 88, 0, 0.24); }

.hero {
  position: relative;
  height: 700px;
  overflow: hidden;
  isolation: isolate;
  background: #193e6b url("../hero-background-approved.webp") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 69% 48%, rgba(255, 245, 222, 0.22), transparent 32%),
    linear-gradient(90deg, rgba(2, 14, 34, 0.88) 0%, rgba(4, 25, 55, 0.78) 18%, rgba(7, 34, 65, 0.42) 42%, rgba(7, 34, 65, 0.04) 67%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(2, 15, 33, 0.22));
  pointer-events: none;
}

.hero-veil {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  bottom: 0;
  width: 58%;
  background: linear-gradient(90deg, rgba(1, 13, 31, 0.38), rgba(3, 21, 47, 0.08) 76%, transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1440px);
  height: 100%;
  margin: 0 auto;
  padding: 30px 44px 34px clamp(278px, 20.2vw, 318px);
  display: grid;
  grid-template-columns: minmax(460px, 500px) minmax(470px, 520px);
  align-items: center;
  column-gap: clamp(38px, 4vw, 66px);
}

.hero-copy {
  position: relative;
  width: 100%;
  max-width: 500px;
  color: #fffdf8;
  text-shadow: 0 2px 20px rgba(0, 10, 27, 0.28);
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 3px;
  width: 2px;
  height: 102px;
  background: linear-gradient(180deg, var(--gold), rgba(239, 178, 35, 0.08));
}

.eyebrow {
  margin: 0 0 22px;
  color: #ffd56e;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 3.8vw, 57px);
  line-height: 0.99;
  letter-spacing: -0.034em;
  font-weight: 700;
}

h1 span { display: block; }

.title-accent {
  position: relative;
  width: max-content;
  color: #fff7e6;
}

.title-accent::after {
  content: "";
  position: absolute;
  left: 2px;
  right: -10px;
  bottom: -8px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(239, 178, 35, 0.05));
}

.hero-text {
  max-width: 485px;
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.58;
  font-weight: 480;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}

.btn {
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

.btn-secondary {
  width: 232px;
  color: #fffdf8;
  border: 1px solid rgba(255, 255, 255, 0.70);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }

.btn-primary {
  width: 226px;
  color: #111b2a;
  border: 1px solid rgba(139, 88, 0, 0.14);
  background: linear-gradient(180deg, #ffd060 0%, #e9aa14 100%);
  box-shadow: 0 14px 28px rgba(72, 43, 0, 0.26);
}

.price {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 520;
}

.price strong {
  margin: 0 4px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 850;
}

.report-stage {
  position: relative;
  width: 100%;
  max-width: 530px;
  height: 610px;
  justify-self: end;
  perspective: 1400px;
}

.paper-shadow {
  position: absolute;
  inset: 18px 12px 8px 18px;
  border-radius: 4px;
  background: #f4efe7;
  box-shadow: 0 28px 70px rgba(4, 23, 48, 0.27);
  transform-origin: 50% 100%;
}

.paper-shadow-back { transform: rotate(3.4deg) translate(14px, 8px); opacity: 0.72; }
.paper-shadow-mid { transform: rotate(1.4deg) translate(7px, 4px); background: #faf7f1; opacity: 0.92; }

.report-preview {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 28px 30px 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(96, 77, 47, 0.13);
  border-radius: 3px;
  color: var(--navy);
  background:
    linear-gradient(90deg, rgba(242, 235, 224, 0.48) 0, rgba(242, 235, 224, 0.48) 1px, transparent 1px) 0 0 / 34px 100%,
    var(--paper);
  box-shadow: 0 30px 80px rgba(4, 23, 48, 0.34), 0 3px 8px rgba(4, 23, 48, 0.12);
  transform: rotate(-0.8deg);
  transform-origin: 52% 80%;
}

.report-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, #174d87, #0b2d59 68%, #d79d24 68%);
}

.paper-clip {
  position: absolute;
  right: 54px;
  top: -10px;
  width: 20px;
  height: 58px;
  border: 3px solid #9a9185;
  border-radius: 12px;
  transform: rotate(7deg);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.55);
}

.report-header {
  padding: 0 0 14px 4px;
  border-bottom: 1px solid rgba(8, 30, 62, 0.17);
}

.report-kicker {
  margin: 0 0 7px;
  color: #2d6aa6;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-preview h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.report-document {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px 2px 13px 4px;
  border-bottom: 1px solid rgba(8, 30, 62, 0.10);
}

.document-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1a62b6;
  background: #e7eff8;
}

.document-mark svg { width: 18px; height: 18px; }

.report-document h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 850;
}

.report-document p {
  margin: 0;
  color: #45546a;
  font-size: 10.2px;
  line-height: 1.38;
}

.report-sections {
  flex: 1;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  padding: 4px 2px 0 4px;
}

.report-section {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(8, 30, 62, 0.10);
}

.report-section:last-child { border-bottom: 0; }

.section-label {
  position: relative;
  padding-left: 13px;
}

.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 3px;
  border-radius: 8px;
  background: currentColor;
}

.section-number {
  display: block;
  margin-bottom: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  opacity: 0.78;
}

.report-section h3 {
  margin: 0;
  font-size: 11.3px;
  line-height: 1.22;
  font-weight: 850;
}

.report-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #263850;
  font-size: 10.2px;
  line-height: 1.36;
}

.report-section li {
  position: relative;
  padding-left: 12px;
}

.report-section li + li { margin-top: 3px; }

.report-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .72;
}

.section-green { color: var(--green); }
.section-gold { color: var(--gold-deep); }
.section-red { color: var(--red); }

.report-signature {
  min-height: 54px;
  margin: 8px 0 0 4px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #174b83;
  background: linear-gradient(90deg, #eaf1f8, #f7f9fb);
  border-left: 3px solid #2c67a4;
  font-size: 11.4px;
  line-height: 1.35;
  font-weight: 760;
}

.signature-mark {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #245f9d;
}

.signature-mark svg { width: 17px; height: 17px; }

@media (max-height: 820px) and (min-width: 1100px) {
  .site-header { height: 84px; }
  .header-inner { grid-template-columns: 205px 1fr 244px; }
  .brand { height: 78px; }
  .brand img { width: 148px; }
  .header-cta { min-height: 46px; font-size: 12.4px; }

  .hero { height: calc(100vh - 84px); min-height: 620px; max-height: 684px; }
  .hero-inner {
    padding-top: 18px;
    padding-bottom: 20px;
    padding-left: clamp(252px, 19vw, 280px);
    grid-template-columns: minmax(445px, 480px) minmax(450px, 500px);
    column-gap: 36px;
  }

  .eyebrow { margin-bottom: 16px; font-size: 11.5px; }
  h1 { margin-bottom: 18px; font-size: 48px; }
  .hero-text { margin-bottom: 18px; font-size: 14.4px; line-height: 1.5; }
  .hero-actions { margin-bottom: 15px; }
  .btn { height: 46px; font-size: 11.7px; }
  .btn-secondary { width: 216px; }
  .btn-primary { width: 210px; }
  .price { font-size: 13px; }
  .price strong { font-size: 19px; }

  .report-stage { max-width: 495px; height: 566px; }
  .report-preview { padding: 23px 26px 17px; }
  .report-preview h2 { font-size: 26px; }
  .report-document { padding-top: 12px; padding-bottom: 10px; }
  .report-document p { font-size: 9.4px; }
  .report-section { grid-template-columns: 122px 1fr; gap: 13px; padding: 8px 0; }
  .section-number { font-size: 16px; }
  .report-section h3 { font-size: 10.5px; }
  .report-section ul { font-size: 9.4px; }
  .report-signature { min-height: 48px; font-size: 10.3px; }
}

@media (max-width: 1180px) {
  .header-inner { grid-template-columns: 182px 1fr 226px; padding: 0 24px; gap: 15px; }
  .brand img { width: 146px; }
  .main-nav { gap: 16px; font-size: 12px; }
  .header-cta { padding: 0 15px; font-size: 12px; }

  .hero-inner {
    padding-left: 190px;
    padding-right: 28px;
    grid-template-columns: minmax(410px, 450px) minmax(410px, 480px);
    column-gap: 26px;
  }
  h1 { font-size: 46px; }
  .report-stage { max-width: 470px; }
  .btn-secondary, .btn-primary { width: 210px; }
}

@media (max-width: 1040px) {
  .site-header { height: 82px; }
  .header-inner { grid-template-columns: 160px 1fr; }
  .brand { height: 76px; }
  .brand img { width: 146px; }
  .main-nav { display: none; }
  .header-cta { justify-self: end; width: 224px; min-height: 46px; }

  .hero { height: auto; min-height: 0; background-position: 34% top; }
  .hero::before { background: linear-gradient(180deg, rgba(2, 15, 36, .78) 0%, rgba(4, 26, 55, .46) 50%, rgba(4, 23, 48, .24) 100%); }
  .hero-veil { width: 100%; background: linear-gradient(180deg, rgba(2, 14, 34, .25), transparent 60%); }
  .hero-inner { display: block; padding: 56px 32px 72px; }
  .hero-copy { max-width: 650px; margin: 0 auto 44px; }
  .hero-copy::before { display: none; }
  .report-stage { max-width: 590px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .site-header { height: 74px; }
  .header-inner { grid-template-columns: 108px 1fr; padding: 0 12px; }
  .brand { width: 104px; height: 68px; }
  .brand img { width: 102px; }
  .header-cta { width: auto; min-height: 42px; padding: 0 12px; font-size: 10.5px; }
  .header-cta svg { display: none; }

  .hero-inner { padding: 42px 18px 52px; }
  .eyebrow { font-size: 10.5px; letter-spacing: .09em; }
  h1 { font-size: 38px; }
  .hero-text { font-size: 15px; }
  .hero-actions { display: grid; }
  .btn-secondary, .btn-primary { width: 100%; }
  .report-stage { height: auto; }
  .paper-shadow { display: none; }
  .report-preview { height: auto; padding: 22px 18px 18px; transform: none; }
  .report-document { grid-template-columns: 34px 1fr; }
  .report-section { grid-template-columns: 108px 1fr; gap: 10px; }
  .report-section ul { font-size: 9.6px; }
  .paper-clip { right: 28px; }
}

/* V3 EDITORIALE — passe de finition visuelle */
@media (min-width: 1181px) {
  .site-header {
    height: 88px;
    background: rgba(255, 255, 255, 0.975);
    border-bottom: 1px solid rgba(8, 30, 62, 0.07);
    box-shadow: 0 10px 34px rgba(7, 27, 57, 0.055);
  }

  .header-inner {
    max-width: 1460px;
    padding: 0 38px;
    grid-template-columns: 230px 1fr 258px;
    gap: 26px;
  }

  .brand {
    width: 206px;
    height: 82px;
  }

  .brand img { width: 174px; }

  .main-nav {
    gap: clamp(22px, 2vw, 32px);
    font-size: 12.6px;
    letter-spacing: .005em;
  }

  .header-cta {
    min-height: 48px;
    border-radius: 3px;
    background: linear-gradient(180deg, #f8c957 0%, #e9aa14 100%);
    box-shadow: 0 9px 22px rgba(139, 88, 0, 0.17);
  }

  .hero {
    height: 706px;
    background-position: center 46%;
  }

  .hero::before {
    background:
      radial-gradient(circle at 70% 45%, rgba(255, 247, 229, 0.28), transparent 33%),
      radial-gradient(ellipse at 31% 46%, rgba(6, 25, 53, 0.06), rgba(3, 19, 44, 0.50) 54%, transparent 72%),
      linear-gradient(90deg, rgba(2, 14, 34, 0.84) 0%, rgba(4, 25, 55, 0.67) 19%, rgba(7, 34, 65, 0.26) 44%, rgba(7, 34, 65, 0.02) 70%);
  }

  .hero-veil {
    width: 55%;
    background: linear-gradient(90deg, rgba(1, 13, 31, 0.28), rgba(3, 21, 47, 0.03) 78%, transparent);
  }

  .hero-inner {
    max-width: 1460px;
    padding: 26px 48px 30px clamp(318px, 22vw, 350px);
    grid-template-columns: minmax(515px, 548px) minmax(468px, 510px);
    column-gap: clamp(42px, 3.8vw, 58px);
  }

  .hero-copy {
    max-width: 548px;
    z-index: 1;
  }

  .hero-copy::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -34px -64px -38px -58px;
    background: radial-gradient(ellipse at 43% 48%, rgba(4, 23, 51, 0.42) 0%, rgba(4, 23, 51, 0.20) 42%, transparent 75%);
    filter: blur(8px);
    pointer-events: none;
  }

  .hero-copy::before {
    left: -24px;
    top: 1px;
    height: 88px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 12.4px;
    letter-spacing: .145em;
  }

  h1 {
    margin-bottom: 22px;
    font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    font-size: clamp(50px, 3.55vw, 55px);
    line-height: .965;
    letter-spacing: -.038em;
    font-weight: 700;
  }

  h1 span:nth-child(2) { white-space: nowrap; }

  .title-accent::after {
    left: 1px;
    right: -6px;
    bottom: -9px;
    height: 3px;
    box-shadow: 0 0 18px rgba(239, 178, 35, .24);
  }

  .hero-text {
    max-width: 512px;
    margin-bottom: 23px;
    font-size: 15.4px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .93);
  }

  .hero-actions { gap: 11px; margin-bottom: 18px; }
  .btn { height: 48px; border-radius: 3px; }
  .btn-secondary { width: 225px; }
  .btn-primary { width: 219px; }

  .price {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    padding-top: 2px;
    font-size: 13.6px;
  }

  .report-stage {
    max-width: 510px;
    height: 598px;
    transform: translateY(2px);
  }

  .report-stage::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 5% -13% -8% -11%;
    border-radius: 50%;
    background: radial-gradient(circle at 48% 50%, rgba(255, 219, 145, .30), rgba(255, 219, 145, .10) 44%, transparent 72%);
    filter: blur(24px);
  }

  .paper-shadow-back {
    transform: rotate(4deg) translate(18px, 10px);
    opacity: .58;
  }
  .paper-shadow-mid {
    transform: rotate(1.7deg) translate(9px, 5px);
    opacity: .90;
  }

  .report-preview {
    padding: 28px 29px 21px;
    border-radius: 2px;
    background:
      linear-gradient(90deg, rgba(242, 235, 224, .34) 0, rgba(242, 235, 224, .34) 1px, transparent 1px) 0 0 / 36px 100%,
      linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,253,249,.98)),
      var(--paper);
    box-shadow: 0 34px 86px rgba(4, 23, 48, .38), 0 4px 10px rgba(4, 23, 48, .11);
    transform: rotate(-1.05deg);
  }

  .report-preview::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(225deg, #f1ede6 0 49%, rgba(218, 208, 193, .75) 50% 52%, transparent 53%);
    opacity: .88;
    pointer-events: none;
  }

  .paper-clip {
    right: 49px;
    border-color: #b2a998;
    opacity: .92;
  }

  .report-header { padding-bottom: 13px; }
  .report-kicker { font-size: 9.7px; letter-spacing: .09em; }
  .report-preview h2 { font-size: 28px; }
  .report-document { padding-top: 14px; padding-bottom: 12px; }
  .report-document p { font-size: 9.9px; line-height: 1.4; }
  .report-section { grid-template-columns: 126px 1fr; gap: 15px; padding: 9px 0; }
  .section-number { font-size: 17px; }
  .report-section h3 { font-size: 10.9px; }
  .report-section ul { font-size: 9.8px; line-height: 1.38; }
  .report-signature { min-height: 51px; font-size: 10.9px; }
}

@media (min-width: 1181px) and (max-height: 820px) {
  .site-header { height: 82px; }
  .header-inner { grid-template-columns: 214px 1fr 246px; }
  .brand { height: 76px; }
  .brand img { width: 162px; }
  .header-cta { min-height: 45px; }

  .hero { height: calc(100vh - 82px); min-height: 610px; max-height: 686px; }
  .hero-inner {
    padding: 14px 42px 18px clamp(276px, 20.2vw, 300px);
    grid-template-columns: minmax(488px, 512px) minmax(448px, 486px);
    column-gap: 34px;
  }

  .hero-copy { max-width: 512px; }
  .eyebrow { margin-bottom: 14px; font-size: 11.2px; }
  h1 { margin-bottom: 17px; font-size: 48px; line-height: .96; }
  .hero-text { max-width: 485px; margin-bottom: 16px; font-size: 14px; line-height: 1.46; }
  .hero-actions { margin-bottom: 13px; }
  .btn { height: 44px; font-size: 11.5px; }
  .btn-secondary { width: 211px; }
  .btn-primary { width: 204px; }
  .price { font-size: 12.5px; }
  .price strong { font-size: 18px; }

  .report-stage { max-width: 482px; height: 550px; }
  .report-preview { padding: 21px 25px 15px; }
  .report-preview h2 { font-size: 25px; }
  .report-kicker { margin-bottom: 5px; font-size: 8.8px; }
  .report-document { padding-top: 10px; padding-bottom: 9px; }
  .document-mark { width: 31px; height: 31px; }
  .report-document h3 { font-size: 10.9px; }
  .report-document p { font-size: 8.9px; line-height: 1.34; }
  .report-section { grid-template-columns: 116px 1fr; gap: 12px; padding: 7px 0; }
  .section-number { font-size: 15px; }
  .report-section h3 { font-size: 9.8px; }
  .report-section ul { font-size: 8.8px; line-height: 1.31; }
  .report-section li + li { margin-top: 2px; }
  .report-signature { min-height: 44px; margin-top: 5px; padding: 7px 10px; font-size: 9.6px; }
  .signature-mark { width: 27px; height: 27px; }
}

/* LOT 2 — démonstration immersive du rapport */
.report-demo {
  position: relative;
  overflow: hidden;
  padding: 104px 32px 116px;
  background:
    radial-gradient(circle at 18% 18%, rgba(239, 178, 35, 0.10), transparent 23%),
    linear-gradient(180deg, #f6f2eb 0%, #f3eee6 100%);
}

.report-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .46;
  background-image:
    linear-gradient(rgba(10, 35, 72, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 35, 72, .035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, transparent, #000 17%, #000 84%, transparent);
}

.report-demo-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1260px);
  margin: 0 auto;
}

.report-demo-heading {
  width: min(100%, 780px);
  margin: 0 auto 58px;
  text-align: center;
}

.report-demo-kicker {
  margin: 0 0 13px;
  color: var(--gold-deep);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.report-demo-heading h2 {
  margin: 0 0 18px;
  color: var(--navy-deep);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(44px, 4.7vw, 68px);
  line-height: .98;
  letter-spacing: -.035em;
}

.report-demo-intro {
  max-width: 760px;
  margin: 0 auto;
  color: #4d5d72;
  font-size: 17px;
  line-height: 1.67;
}

.report-demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 356px;
  gap: 34px;
  align-items: start;
}

.report-demo-document {
  position: relative;
  min-height: 780px;
  display: grid;
  grid-template-columns: 210px 1fr;
  overflow: hidden;
  border: 1px solid rgba(8, 30, 62, .10);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 38px 86px rgba(7, 27, 57, .16), 0 6px 16px rgba(7, 27, 57, .07);
}

.report-demo-document::before {
  content: "";
  position: absolute;
  top: 0;
  left: 210px;
  right: 0;
  height: 7px;
  background: linear-gradient(90deg, #174d87, #2d6aa6 54%, var(--gold));
}

.report-demo-index {
  padding: 44px 26px 34px;
  color: rgba(255, 255, 255, .86);
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.08), transparent 26%),
    linear-gradient(180deg, #0b2b55 0%, #071d3a 100%);
}

.report-demo-index-title {
  margin: 0 0 30px;
  color: #f6c856;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.report-demo-index ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: report-index;
}

.report-demo-index li {
  position: relative;
  padding: 15px 0 15px 25px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  line-height: 1.35;
  counter-increment: report-index;
}

.report-demo-index li::before {
  content: counter(report-index, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 15px;
  color: rgba(255,255,255,.34);
  font-family: Georgia, serif;
  font-size: 10px;
}

.report-demo-index li.is-active {
  color: #fff;
  font-weight: 750;
}

.report-demo-index li.is-active::after {
  content: "";
  position: absolute;
  left: -26px;
  top: 10px;
  bottom: 10px;
  width: 4px;
  background: var(--gold);
}

.report-demo-page {
  position: relative;
  padding: 58px 54px 46px;
  background:
    linear-gradient(90deg, rgba(242, 235, 224, .38) 0, rgba(242, 235, 224, .38) 1px, transparent 1px) 0 0 / 42px 100%,
    #fffdf9;
}

.report-demo-page::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 76px;
  height: 76px;
  background: linear-gradient(225deg, #ece7df 0 49%, rgba(207,198,183,.72) 50% 52%, transparent 53%);
  opacity: .75;
}

.report-demo-page-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(8, 30, 62, .14);
}

.report-demo-page-kicker {
  margin: 0 0 7px;
  color: #2d6aa6;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.report-demo-page-top h3 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 31px;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.report-demo-page-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1a62b6;
  background: #e7eff8;
}

.report-demo-page-mark svg,
.report-demo-signature-mark svg {
  width: 23px;
  height: 23px;
}

.report-demo-page-intro {
  margin: 24px 0 28px;
  color: #46566c;
  font-size: 14px;
  line-height: 1.62;
}

.report-demo-focus {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(8, 30, 62, .10);
}

.report-demo-focus-heading {
  position: relative;
  padding-left: 18px;
}

.report-demo-focus-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  bottom: 1px;
  width: 4px;
  border-radius: 6px;
  background: currentColor;
}

.report-demo-focus-heading span {
  display: block;
  margin-bottom: 5px;
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1;
  opacity: .75;
}

.report-demo-focus-heading h3,
.report-demo-card h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.28;
  font-weight: 850;
}

.report-demo-focus ul,
.report-demo-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-demo-focus li,
.report-demo-card li {
  position: relative;
  padding-left: 16px;
  color: #2d3f58;
  font-size: 13px;
  line-height: 1.48;
}

.report-demo-focus li + li,
.report-demo-card li + li { margin-top: 7px; }

.report-demo-focus li::before,
.report-demo-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: .58;
}

.focus-green { color: var(--green); }
.focus-gold { color: var(--gold-deep); }
.focus-red { color: var(--red); }

.report-demo-signature {
  margin-top: 8px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #174b83;
  background: linear-gradient(90deg, #eaf1f8, #f7f9fb);
  border-left: 4px solid #2c67a4;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 760;
}

.report-demo-signature-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #245f9d;
}

.report-demo-side {
  display: grid;
  gap: 18px;
  padding-top: 52px;
}

.report-demo-card {
  position: relative;
  min-height: 208px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid rgba(8, 30, 62, .10);
  border-radius: 7px;
  background: rgba(255, 253, 249, .88);
  box-shadow: 0 18px 42px rgba(7, 27, 57, .09);
  backdrop-filter: blur(10px);
}

.report-demo-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: currentColor;
}

.report-demo-card-number {
  font-family: Georgia, serif;
  font-size: 36px;
  line-height: .95;
  opacity: .65;
}

.report-demo-card h3 { margin-bottom: 17px; }
.report-demo-card li { font-size: 12.5px; }
.demo-card-green { color: var(--green); }
.demo-card-gold { color: var(--gold-deep); }
.demo-card-red { color: var(--red); }

@media (max-width: 1080px) {
  .report-demo { padding: 84px 24px 96px; }
  .report-demo-layout { grid-template-columns: 1fr; }
  .report-demo-side {
    grid-template-columns: repeat(3, 1fr);
    padding-top: 0;
  }
  .report-demo-card {
    min-height: 245px;
    grid-template-columns: 1fr;
  }
  .report-demo-card-number { font-size: 31px; }
}

@media (max-width: 760px) {
  .report-demo { padding: 68px 16px 76px; }
  .report-demo-heading { margin-bottom: 40px; text-align: left; }
  .report-demo-heading h2 { font-size: 46px; }
  .report-demo-intro { font-size: 15px; }
  .report-demo-document { grid-template-columns: 1fr; min-height: 0; }
  .report-demo-document::before { left: 0; }
  .report-demo-index { padding: 28px 22px 18px; }
  .report-demo-index ol {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .report-demo-index li {
    min-width: max-content;
    padding: 10px 14px 10px 30px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
  }
  .report-demo-index li::before { left: 12px; top: 11px; }
  .report-demo-index li.is-active::after { display: none; }
  .report-demo-page { padding: 42px 22px 28px; }
  .report-demo-page-top h3 { font-size: 25px; }
  .report-demo-focus { grid-template-columns: 1fr; gap: 16px; }
  .report-demo-side { grid-template-columns: 1fr; }
  .report-demo-card { min-height: 0; grid-template-columns: 50px 1fr; }
}

/* LOT 2 V2 MODERNE — identité phare et profondeur visuelle */
.report-demo {
  isolation: isolate;
  padding: 112px 32px 124px;
  background:
    radial-gradient(circle at 86% 8%, rgba(51, 111, 171, .16), transparent 28%),
    radial-gradient(circle at 8% 36%, rgba(239, 178, 35, .16), transparent 24%),
    linear-gradient(145deg, #f8fafc 0%, #eef4f8 44%, #f8f3ea 100%);
}

.report-demo::before {
  opacity: .34;
  background-image:
    linear-gradient(rgba(18, 64, 108, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 64, 108, .045) 1px, transparent 1px);
  background-size: 44px 44px;
}

.report-demo::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -8%;
  top: 19%;
  width: 44%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.88), rgba(255,255,255,0) 68%);
  filter: blur(8px);
  pointer-events: none;
}

.report-demo-lighthouse {
  position: absolute;
  z-index: 0;
  left: clamp(-72px, -3vw, -24px);
  top: 92px;
  width: clamp(230px, 21vw, 330px);
  height: 520px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  opacity: .055;
  filter: grayscale(.15) saturate(.75);
  transform: rotate(-2deg);
  pointer-events: none;
}

.report-demo-lighthouse img {
  width: 100%;
  height: auto;
}

.report-demo-shell {
  width: min(100%, 1280px);
}

.report-demo-heading {
  width: min(100%, 980px);
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 28px;
  align-items: center;
  text-align: left;
}

.report-demo-emblem {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 64, 108, .12);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(235,244,250,.88));
  box-shadow: 0 20px 48px rgba(10, 35, 72, .12), inset 0 1px 0 rgba(255,255,255,.9);
  transform: rotate(-3deg);
}

.report-demo-emblem::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 14px;
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(239,178,35,0));
}

.report-demo-emblem img {
  width: 52px;
  height: auto;
  filter: drop-shadow(0 8px 12px rgba(8,30,62,.14));
}

.report-demo-heading-copy { min-width: 0; }

.report-demo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #225d96;
  font-size: 11px;
  letter-spacing: .15em;
}

.report-demo-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.report-demo-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(46px, 4.35vw, 64px);
  color: #061f40;
}

.report-demo-intro {
  max-width: 780px;
  margin: 0;
  color: #40546d;
  font-size: 16.5px;
  line-height: 1.65;
}

.report-demo-layout {
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 30px;
  align-items: stretch;
}

.report-demo-document {
  min-height: 790px;
  grid-template-columns: 220px 1fr;
  border: 1px solid rgba(14, 50, 89, .11);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow:
    0 36px 90px rgba(7, 27, 57, .16),
    0 8px 24px rgba(7, 27, 57, .08),
    inset 0 1px 0 rgba(255,255,255,.9);
  transform: translateY(0);
}

.report-demo-document::before {
  left: 220px;
  height: 5px;
  background: linear-gradient(90deg, #1e5f9f, #4b8fc4 66%, #f0b738);
}

.report-demo-index {
  position: relative;
  padding: 46px 28px 36px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.10), transparent 24%),
    linear-gradient(170deg, #0e3a6a 0%, #071f40 60%, #061831 100%);
}

.report-demo-index::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 25px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.20), transparent);
}

.report-demo-index-title {
  display: inline-flex;
  padding: 7px 10px;
  margin-bottom: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #ffd56e;
  font-size: 10px;
}

.report-demo-index li {
  margin: 2px 0;
  padding: 14px 12px 14px 32px;
  border-bottom: 0;
  border-radius: 10px;
  color: rgba(255,255,255,.67);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.report-demo-index li::before {
  left: 10px;
  top: 15px;
}

.report-demo-index li.is-active {
  color: #fff;
  background: linear-gradient(90deg, rgba(255,255,255,.13), rgba(255,255,255,.035));
  box-shadow: inset 3px 0 0 var(--gold);
}

.report-demo-index li.is-active::after { display: none; }

.report-demo-page {
  padding: 58px 56px 48px;
  background:
    linear-gradient(90deg, rgba(26, 79, 126, .035) 1px, transparent 1px) 0 0 / 46px 100%,
    linear-gradient(180deg, rgba(255,255,255,.98), #fffdf8);
}

.report-demo-page::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(20,74,122,.14) 14%, rgba(20,74,122,.14) 86%, transparent);
}

.report-demo-page-top h3 { font-size: 32px; }

.report-demo-page-mark {
  border-radius: 16px;
  color: #1a62b6;
  background: linear-gradient(145deg, #eef6fb, #dfeaf4);
  box-shadow: 0 10px 24px rgba(26,98,182,.10);
}

.report-demo-focus {
  position: relative;
  margin: 0 -10px;
  padding: 22px 10px;
  border-top: 1px solid rgba(8,30,62,.08);
  border-radius: 12px;
}

.report-demo-focus:hover {
  background: rgba(239,245,249,.68);
}

.report-demo-signature {
  border-left: 0;
  border-radius: 12px;
  background: linear-gradient(100deg, #e9f2fa, #f8fbfd);
  box-shadow: inset 0 0 0 1px rgba(30,95,159,.08);
}

.report-demo-side {
  gap: 16px;
  padding-top: 30px;
}

.report-demo-card {
  min-height: 218px;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 28px 25px;
  border-radius: 16px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(15,50,88,.10);
  box-shadow: 0 18px 48px rgba(7,27,57,.10), inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.report-demo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 62px rgba(7,27,57,.14), inset 0 1px 0 rgba(255,255,255,.95);
}

.report-demo-card::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: currentColor;
  opacity: .055;
}

.report-demo-card::after {
  width: 4px;
  top: 22px;
  bottom: 22px;
  border-radius: 0 6px 6px 0;
}

.report-demo-card-number {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: color-mix(in srgb, currentColor 10%, white);
  font-size: 29px;
  opacity: .88;
}

.report-demo-card h3 {
  margin-bottom: 14px;
  color: #102c50;
  font-size: 15px;
}

.report-demo-card li { color: #3b4f67; }

@media (max-width: 1080px) {
  .report-demo-heading {
    grid-template-columns: 82px 1fr;
    gap: 22px;
  }
  .report-demo-emblem { width: 82px; height: 82px; }
  .report-demo-layout { grid-template-columns: 1fr; }
  .report-demo-side { padding-top: 0; }
}

@media (max-width: 760px) {
  .report-demo { padding: 72px 16px 82px; }
  .report-demo-lighthouse { display: none; }
  .report-demo-heading {
    display: block;
    margin-bottom: 44px;
  }
  .report-demo-emblem {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    border-radius: 21px;
  }
  .report-demo-emblem img { width: 41px; }
  .report-demo-heading h2 { font-size: 44px; }
  .report-demo-intro { font-size: 15px; }
  .report-demo-document { border-radius: 14px; }
  .report-demo-index { padding: 24px 18px 18px; }
  .report-demo-index li { padding: 10px 14px 10px 30px; }
  .report-demo-page { padding: 40px 22px 28px; }
  .report-demo-card { border-radius: 14px; }
}

@media (max-width: 760px) {
  .report-demo-document {
    grid-template-columns: 1fr;
    width: 100%;
    overflow: hidden;
  }
  .report-demo-document::before { left: 0; }
  .report-demo-page { min-width: 0; }
  .report-demo-index ol { max-width: 100%; }
}

@media (max-width: 760px) {
  .report-demo-document { grid-template-columns: minmax(0, 1fr); }
  .report-demo-page {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .report-demo-page-intro,
  .report-demo-focus,
  .report-demo-signature {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

/* LOT 2 V3 — mise en page compacte, phare propre, respiration maîtrisée */
.report-demo {
  padding: 64px 32px 76px;
  background:
    radial-gradient(circle at 88% 8%, rgba(51, 111, 171, .13), transparent 28%),
    radial-gradient(circle at 7% 32%, rgba(239, 178, 35, .11), transparent 22%),
    linear-gradient(145deg, #f8fafc 0%, #eff5f8 47%, #f8f4ec 100%);
}

.report-demo::before {
  opacity: .24;
  background-size: 48px 48px;
}

.report-demo::after {
  left: -12%;
  top: 10%;
  width: 38%;
  height: 64%;
  opacity: .72;
}

.report-demo-lighthouse {
  left: -34px;
  top: 96px;
  width: 210px;
  height: 430px;
  opacity: .035;
  transform: none;
}

.report-demo-shell {
  width: min(100%, 1280px);
}

.report-demo-heading {
  width: min(100%, 1160px);
  margin: 0 auto 34px;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  align-items: start;
}

.report-demo-emblem {
  width: 62px;
  height: auto;
  min-height: 0;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  overflow: visible;
}

.report-demo-emblem::after {
  right: -24px;
  bottom: 20px;
  width: 42px;
  height: 3px;
}

.report-demo-emblem img {
  width: 56px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 14px rgba(8, 30, 62, .12));
}

.report-demo-kicker {
  margin-bottom: 7px;
  font-size: 10.5px;
  letter-spacing: .14em;
}

.report-demo-kicker::before { width: 22px; }

.report-demo-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(42px, 3.7vw, 56px);
  line-height: 1;
}

.report-demo-intro {
  max-width: 860px;
  font-size: 15.5px;
  line-height: 1.56;
}

.report-demo-layout {
  grid-template-columns: minmax(0, 1fr) 348px;
  gap: 24px;
  align-items: stretch;
}

.report-demo-document {
  min-height: 650px;
  grid-template-columns: 196px 1fr;
  border-radius: 16px;
}

.report-demo-document::before { left: 196px; }

.report-demo-index {
  padding: 34px 22px 28px;
}

.report-demo-index-title {
  margin-bottom: 18px;
  padding: 6px 9px;
}

.report-demo-index li {
  padding: 11px 10px 11px 30px;
  font-size: 12px;
}

.report-demo-index li::before {
  left: 10px;
  top: 12px;
}

.report-demo-page {
  padding: 38px 40px 30px;
}

.report-demo-page::after {
  width: 62px;
  height: 62px;
}

.report-demo-page-top {
  padding-bottom: 15px;
}

.report-demo-page-kicker {
  margin-bottom: 5px;
  font-size: 10px;
}

.report-demo-page-top h3 {
  font-size: 27px;
}

.report-demo-page-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}

.report-demo-page-intro {
  margin: 17px 0 18px;
  font-size: 12.5px;
  line-height: 1.5;
}

.report-demo-focus {
  grid-template-columns: 150px 1fr;
  gap: 20px;
  margin: 0 -6px;
  padding: 15px 6px;
  border-radius: 10px;
}

.report-demo-focus-heading {
  padding-left: 15px;
}

.report-demo-focus-heading span {
  margin-bottom: 4px;
  font-size: 21px;
}

.report-demo-focus-heading h3,
.report-demo-card h3 {
  font-size: 12.5px;
}

.report-demo-focus li,
.report-demo-card li {
  font-size: 11.5px;
  line-height: 1.42;
}

.report-demo-focus li + li,
.report-demo-card li + li {
  margin-top: 5px;
}

.report-demo-signature {
  margin-top: 5px;
  padding: 11px 13px;
  gap: 10px;
  font-size: 11.5px;
}

.report-demo-signature-mark {
  width: 31px;
  height: 31px;
}

.report-demo-side {
  gap: 12px;
  padding-top: 0;
  align-content: center;
}

.report-demo-card {
  min-height: 174px;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 22px 20px;
  border-radius: 14px;
}

.report-demo-card::after {
  top: 18px;
  bottom: 18px;
}

.report-demo-card-number {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  font-size: 25px;
}

.report-demo-card h3 {
  margin-bottom: 10px;
  font-size: 13.5px;
}

@media (max-width: 1080px) {
  .report-demo { padding: 58px 24px 70px; }
  .report-demo-heading {
    width: 100%;
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }
  .report-demo-emblem img { width: 50px; }
  .report-demo-layout { grid-template-columns: 1fr; }
  .report-demo-side {
    grid-template-columns: repeat(3, 1fr);
    align-content: stretch;
  }
  .report-demo-card {
    min-height: 188px;
    grid-template-columns: 48px 1fr;
  }
}

@media (max-width: 760px) {
  .report-demo { padding: 52px 16px 62px; }
  .report-demo-heading {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    margin-bottom: 28px;
  }
  .report-demo-emblem {
    width: 48px;
    margin: 0;
  }
  .report-demo-emblem img { width: 43px; }
  .report-demo-emblem::after { display: none; }
  .report-demo-heading h2 { font-size: 36px; }
  .report-demo-intro { font-size: 14px; line-height: 1.5; }
  .report-demo-document { min-height: 0; }
  .report-demo-page { padding: 32px 18px 24px; }
  .report-demo-page-top h3 { font-size: 23px; }
  .report-demo-focus { grid-template-columns: 1fr; gap: 10px; }
  .report-demo-side { grid-template-columns: 1fr; }
  .report-demo-card { min-height: 0; }
}

@media (max-width: 760px) {
  .report-demo-document {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }
  .report-demo-document::before { left: 0; }
  .report-demo-index {
    padding: 22px 16px 16px;
  }
  .report-demo-index ol {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .report-demo-index li {
    min-width: max-content;
    padding: 9px 12px 9px 28px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
  }
  .report-demo-index li::before {
    left: 10px;
    top: 10px;
  }
  .report-demo-page {
    width: 100%;
    min-width: 0;
  }
  .report-demo-signature {
    align-items: flex-start;
    font-size: 11px;
  }
}

/* Ajustement écran d’ouverture */
@media (min-width: 1181px) {
  .hero {
    height: calc(100vh - 88px);
    min-height: 706px;
    max-height: none;
  }
}

@media (min-width: 1181px) and (max-height: 820px) {
  .hero {
    height: calc(100vh - 82px);
    min-height: 610px;
    max-height: none;
  }
}

/* CORRECTION LOGO HEADER : proportions conservées et texte non rogné */
@media (min-width: 1181px) {
  .brand {
    width: 210px;
    height: 82px;
    overflow: visible;
    display: flex;
    align-items: center;
  }

  .brand img {
    width: auto;
    height: 74px;
    max-width: 198px;
    object-fit: contain;
    object-position: left center;
    display: block;
  }
}

@media (min-width: 1181px) and (max-height: 820px) {
  .brand {
    height: 76px;
  }

  .brand img {
    width: auto;
    height: 68px;
    max-width: 190px;
  }
}

/* LOGO HEADER SÉPARÉ : phare + logotype */
@media (min-width: 1181px) {
  .header-inner {
    grid-template-columns: 286px 1fr 258px;
  }

  .brand {
    width: 270px;
    height: 82px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: visible;
  }

  .brand .brand-lighthouse {
    width: auto;
    height: 72px;
    max-width: none;
    flex: 0 0 auto;
    object-fit: contain;
    display: block;
  }

  .brand .brand-wordmark {
    width: 182px;
    height: auto;
    max-width: none;
    flex: 0 0 auto;
    object-fit: contain;
    display: block;
  }
}

@media (min-width: 1181px) and (max-height: 820px) {
  .header-inner {
    grid-template-columns: 272px 1fr 246px;
  }

  .brand {
    width: 258px;
    height: 76px;
    gap: 9px;
  }

  .brand .brand-lighthouse {
    width: auto;
    height: 66px;
    max-width: none;
  }

  .brand .brand-wordmark {
    width: 176px;
    height: auto;
    max-width: none;
  }
}

@media (max-width: 1180px) {
  .brand {
    width: 230px;
    gap: 8px;
    overflow: visible;
  }

  .brand .brand-lighthouse {
    width: auto;
    height: 62px;
    max-width: none;
    flex: 0 0 auto;
    object-fit: contain;
  }

  .brand .brand-wordmark {
    width: 156px;
    height: auto;
    max-width: none;
    flex: 0 0 auto;
    object-fit: contain;
  }
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 230px 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    grid-template-columns: 170px 1fr;
  }

  .brand {
    width: 166px;
    height: 68px;
    gap: 6px;
  }

  .brand .brand-lighthouse {
    height: 54px;
  }

  .brand .brand-wordmark {
    width: 112px;
  }
}

/* AJUSTEMENT HERO : phare plus présent et espace gauche mieux exploité */
@media (min-width: 1181px) {
  .hero::before {
    background:
      radial-gradient(circle at 20% 48%, rgba(255, 218, 132, 0.10), transparent 27%),
      radial-gradient(circle at 70% 45%, rgba(255, 247, 229, 0.24), transparent 33%),
      linear-gradient(
        90deg,
        rgba(2, 14, 34, 0.62) 0%,
        rgba(4, 25, 55, 0.54) 18%,
        rgba(7, 34, 65, 0.28) 42%,
        rgba(7, 34, 65, 0.02) 70%
      );
  }

  .hero-veil {
    width: 49%;
    background:
      linear-gradient(
        90deg,
        rgba(1, 13, 31, 0.18),
        rgba(3, 21, 47, 0.02) 78%,
        transparent
      );
  }

  .hero-inner {
    padding-left: clamp(252px, 18.3vw, 282px);
    column-gap: clamp(40px, 3.4vw, 52px);
  }

  .hero-copy {
    transform: translateX(-8px);
  }
}

@media (min-width: 1181px) and (max-height: 820px) {
  .hero-inner {
    padding-left: clamp(238px, 17.4vw, 262px);
    column-gap: 30px;
  }

  .hero-copy {
    transform: translateX(-6px);
  }
}

/* SECTION SYNTHÈSE : phare plus affirmé dans le titre */
@media (min-width: 1081px) {
  .report-demo-heading {
    grid-template-columns: 96px 1fr;
    gap: 24px;
    align-items: center;
  }

  .report-demo-emblem {
    width: 96px;
  }

  .report-demo-emblem img {
    width: 86px;
    height: auto;
    filter: drop-shadow(0 12px 18px rgba(8, 30, 62, 0.16));
  }

  .report-demo-emblem::after {
    right: -30px;
    bottom: 28px;
    width: 54px;
    height: 3px;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .report-demo-heading {
    grid-template-columns: 78px 1fr;
    gap: 20px;
    align-items: center;
  }

  .report-demo-emblem {
    width: 78px;
  }

  .report-demo-emblem img {
    width: 70px;
  }
}

/* LOT 3 — Réassurance sobre et structurée */
.trust-section {
  position: relative;
  overflow: hidden;
  padding: 72px 32px 78px;
  color: #f7fbff;
  background:
    radial-gradient(circle at 8% 0%, rgba(239, 178, 35, .12), transparent 28%),
    linear-gradient(135deg, #061a35 0%, #0a2a53 58%, #0d3768 100%);
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.trust-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.trust-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.trust-heading-line {
  width: 46px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(239,178,35,.22));
}

.trust-heading h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(38px, 3.4vw, 50px);
  line-height: 1;
  letter-spacing: -.03em;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.trust-item {
  min-height: 218px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-content: start;
  padding: 32px 34px 30px;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(255,255,255,.16);
}

.trust-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: #ffd56e;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.trust-item h3 {
  margin: 2px 0 12px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 820;
}

.trust-item p {
  margin: 0;
  color: rgba(245, 249, 255, .78);
  font-size: 13.5px;
  line-height: 1.62;
}

@media (max-width: 980px) {
  .trust-section { padding: 62px 24px 68px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 0; padding: 28px 10px; }
  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.16);
  }
}

@media (max-width: 640px) {
  .trust-section { padding: 52px 18px 58px; }
  .trust-heading { margin-bottom: 24px; }
  .trust-heading-line { width: 32px; }
  .trust-heading h2 { font-size: 36px; }
  .trust-item {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 24px 0;
  }
  .trust-icon { width: 40px; height: 40px; }
  .trust-item h3 { font-size: 15px; }
  .trust-item p { font-size: 13px; }
}

/* LOT 4 — Cadre du service */
.scope-section {
  position: relative;
  overflow: hidden;
  padding: 92px 32px 104px;
  color: var(--navy);
  background:
    radial-gradient(circle at 88% 10%, rgba(49, 111, 171, .13), transparent 28%),
    radial-gradient(circle at 6% 92%, rgba(239, 178, 35, .10), transparent 24%),
    linear-gradient(145deg, #fbfaf7 0%, #f3f7fa 52%, #f8f3ea 100%);
}

.scope-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .26;
  background-image:
    linear-gradient(rgba(10, 35, 72, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 35, 72, .04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 88%, transparent);
}

.scope-beam {
  position: absolute;
  right: -180px;
  top: 28px;
  width: 720px;
  height: 260px;
  opacity: .32;
  clip-path: polygon(0 43%, 100% 0, 100% 100%, 0 57%);
  background: linear-gradient(90deg, rgba(239,178,35,0), rgba(239,178,35,.28), rgba(255,219,132,.05));
  pointer-events: none;
}

.scope-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.scope-heading {
  width: min(100%, 920px);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  align-items: center;
}

.scope-heading-mark {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(10,35,72,.10);
  box-shadow: 0 18px 46px rgba(7,27,57,.10), inset 0 1px 0 rgba(255,255,255,.95);
}

.scope-heading-mark img {
  width: auto;
  height: 72px;
  display: block;
  filter: drop-shadow(0 10px 14px rgba(8,30,62,.14));
}

.scope-heading h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1;
  letter-spacing: -.035em;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.scope-card {
  position: relative;
  min-height: 268px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  align-content: start;
  padding: 34px 34px 32px;
  border-radius: 18px;
  border: 1px solid rgba(8,30,62,.10);
  box-shadow: 0 22px 56px rgba(7,27,57,.10);
}

.scope-card::before {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: currentColor;
  opacity: .055;
}

.scope-card-dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 0%, rgba(255,255,255,.10), transparent 30%),
    linear-gradient(145deg, #08264d 0%, #051a36 100%);
  border-color: rgba(255,255,255,.08);
}

.scope-card-accent {
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 4%, rgba(255,213,110,.18), transparent 30%),
    linear-gradient(145deg, #123f72 0%, #082a53 100%);
  border-color: rgba(255,255,255,.10);
}

.scope-card-light {
  color: var(--navy);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
}

.scope-number {
  position: absolute;
  right: 22px;
  top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 78px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.04em;
  opacity: .055;
}

.scope-card-dark .scope-number,
.scope-card-accent .scope-number {
  opacity: .08;
}

.scope-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #225d96;
  background: linear-gradient(145deg, #eef5fa, #dfeaf3);
  box-shadow: 0 10px 24px rgba(7,27,57,.10);
}

.scope-card-dark .scope-icon,
.scope-card-accent .scope-icon {
  color: #ffd56e;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.scope-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.8;
}

.scope-card-copy {
  position: relative;
  z-index: 1;
  padding-top: 3px;
}

.scope-card h3 {
  margin: 0 0 14px;
  color: inherit;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 820;
}

.scope-card p {
  margin: 0;
  color: #4a5b70;
  font-size: 14.5px;
  line-height: 1.66;
}

.scope-card-dark p,
.scope-card-accent p {
  color: rgba(247,251,255,.80);
}

@media (max-width: 900px) {
  .scope-section { padding: 76px 24px 86px; }
  .scope-heading {
    width: 100%;
    grid-template-columns: 76px 1fr;
    gap: 20px;
  }
  .scope-heading-mark { width: 76px; height: 76px; border-radius: 20px; }
  .scope-heading-mark img { height: 62px; }
  .scope-grid { grid-template-columns: 1fr; }
  .scope-card { min-height: 0; }
}

@media (max-width: 640px) {
  .scope-section { padding: 60px 16px 68px; }
  .scope-beam { display: none; }
  .scope-heading {
    grid-template-columns: 58px 1fr;
    gap: 15px;
    margin-bottom: 32px;
  }
  .scope-heading-mark {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }
  .scope-heading-mark img { height: 48px; }
  .scope-heading h2 { font-size: 36px; }
  .scope-card {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 27px 22px 25px;
    border-radius: 15px;
  }
  .scope-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
  .scope-card h3 { font-size: 17px; }
  .scope-card p { font-size: 13.5px; }
}
/* LOT 5 — domaines d’intervention */
.domains-section {
  position: relative;
  overflow: hidden;
  padding: 112px 32px 118px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 14%, rgba(239, 178, 35, .16), transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(60, 127, 191, .18), transparent 28%),
    linear-gradient(145deg, #061a35 0%, #092b55 52%, #071f40 100%);
}

.domains-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 88%, transparent);
}

.domains-beam {
  position: absolute;
  left: -150px;
  top: 84px;
  width: 760px;
  height: 260px;
  opacity: .22;
  clip-path: polygon(0 48%, 100% 0, 100% 100%, 0 52%);
  background: linear-gradient(90deg, rgba(239,178,35,.06), rgba(255,218,126,.42), rgba(255,255,255,0));
  filter: blur(1px);
  pointer-events: none;
}

.domains-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.domains-heading {
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 52px;
  align-items: end;
}

.domains-kicker {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f5c65a;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .16em;
}

.domains-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: #f1b72c;
}

.domains-heading h2 {
  max-width: 920px;
  margin: 0;
  color: #fffdf8;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(39px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 700;
}

.domains-heading-note {
  margin: 0;
  padding: 20px 22px;
  border-left: 3px solid #f1b72c;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.055);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.domain-card {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  padding: 22px 18px 20px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 38px rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.domain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,198,90,.42);
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
}

.domain-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffffff;
  opacity: .025;
}

.domain-card-featured {
  border-color: rgba(245,198,90,.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(245,198,90,.14), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.04));
}

.domain-card-more {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 150px;
  background:
    linear-gradient(120deg, rgba(245,198,90,.16), rgba(255,255,255,.055));
}

.domain-number {
  position: absolute;
  right: 13px;
  top: 10px;
  color: rgba(255,255,255,.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.domain-icon {
  width: 47px;
  height: 47px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #f5c65a;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}

.domain-card-more .domain-icon {
  margin-bottom: 0;
}

.domain-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.7;
}

.domain-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 170px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 760;
}

.domain-card-more h3 {
  max-width: none;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 30px;
  letter-spacing: -.02em;
}

.domains-action {
  margin-top: 34px;
  display: flex;
  justify-content: flex-end;
}

.domains-cta {
  min-height: 50px;
  padding: 0 20px 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 4px;
  color: #101b2d;
  background: linear-gradient(180deg, #ffd060 0%, #e9aa14 100%);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  font-size: 13px;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.domains-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0,0,0,.26);
}

.domains-cta svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

@media (max-width: 1100px) {
  .domains-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .domain-card-more { grid-column: span 2; }
}

@media (max-width: 900px) {
  .domains-section { padding: 84px 24px 92px; }
  .domains-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
  .domains-heading-note { max-width: 420px; }
  .domains-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .domain-card-more { grid-column: span 1; display: block; }
  .domain-card-more .domain-icon { margin-bottom: 22px; }
}

@media (max-width: 640px) {
  .domains-section { padding: 64px 16px 72px; }
  .domains-beam { display: none; }
  .domains-heading { margin-bottom: 34px; }
  .domains-heading h2 { font-size: 36px; }
  .domains-heading-note { font-size: 14px; }
  .domains-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .domain-card { min-height: 140px; padding: 18px 15px 17px; border-radius: 12px; }
  .domain-icon { width: 43px; height: 43px; margin-bottom: 18px; }
  .domain-card h3 { font-size: 13px; }
  .domain-card-more { grid-column: span 2; display: grid; grid-template-columns: 52px 1fr; }
  .domain-card-more .domain-icon { margin-bottom: 0; }
  .domains-action { justify-content: stretch; }
  .domains-cta { width: 100%; justify-content: space-between; }
}
/* LOT 5 V2 — domaines, version éditoriale claire */
.domains-section {
  padding: 102px 32px 108px;
  color: var(--navy);
  background:
    radial-gradient(circle at 8% 12%, rgba(239, 178, 35, .11), transparent 22%),
    radial-gradient(circle at 90% 84%, rgba(47, 107, 166, .10), transparent 27%),
    linear-gradient(180deg, #f8f5ef 0%, #f3eee6 100%);
}

.domains-section::before {
  opacity: .40;
  background-image:
    linear-gradient(rgba(10, 35, 72, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 35, 72, .035) 1px, transparent 1px);
  background-size: 42px 42px;
}

.domains-beam {
  left: auto;
  right: -90px;
  top: 38px;
  width: 590px;
  height: 210px;
  opacity: .16;
  clip-path: polygon(100% 43%, 0 0, 0 100%, 100% 57%);
  background: linear-gradient(270deg, rgba(239,178,35,.10), rgba(239,178,35,.34), rgba(255,255,255,0));
}

.domains-shell {
  width: min(100%, 1240px);
}

.domains-heading {
  width: min(100%, 850px);
  margin: 0 auto 48px;
  display: block;
  text-align: center;
}

.domains-kicker {
  justify-content: center;
  margin-bottom: 14px;
  color: #996508;
}

.domains-kicker::before {
  background: var(--gold);
}

.domains-heading h2 {
  max-width: none;
  margin: 0 0 18px;
  color: var(--navy-deep);
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1.02;
}

.domains-intro {
  max-width: 820px;
  margin: 0 auto;
  color: #4c5d73;
  font-size: 17px;
  line-height: 1.65;
}

.domains-heading-note {
  display: none;
}

.domains-grid {
  position: relative;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 30, 62, .10);
  border-radius: 20px;
  background: rgba(255,255,255,.80);
  box-shadow:
    0 30px 70px rgba(7,27,57,.10),
    inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
}

.domain-card,
.domain-card-featured,
.domain-card-more {
  min-height: 112px;
  padding: 22px 22px 20px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  overflow: visible;
  border: 0;
  border-right: 1px solid rgba(8,30,62,.08);
  border-bottom: 1px solid rgba(8,30,62,.08);
  border-radius: 0;
  color: var(--navy);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 160ms ease, transform 160ms ease;
}

.domain-card:nth-child(4n) {
  border-right: 0;
}

.domain-card:nth-last-child(-n+4) {
  border-bottom: 0;
}

.domain-card:hover {
  transform: none;
  border-color: rgba(8,30,62,.08);
  background: rgba(235,243,249,.65);
}

.domain-card::after {
  display: none;
}

.domain-number {
  display: none;
}

.domain-icon,
.domain-card-more .domain-icon {
  width: 46px;
  height: 46px;
  margin: 0;
  border: 1px solid rgba(28, 91, 150, .13);
  border-radius: 50%;
  color: #1d5d99;
  background: linear-gradient(145deg, #edf4fa, #f8fbfd);
  box-shadow: inset 0 1px 0 #fff, 0 8px 18px rgba(7,27,57,.06);
}

.domain-card:nth-child(5n) .domain-icon {
  color: #9a6807;
  border-color: rgba(154,104,7,.15);
  background: linear-gradient(145deg, #fff6dd, #fffdf7);
}

.domain-card h3,
.domain-card-more h3 {
  max-width: none;
  margin: 0;
  color: var(--navy);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.38;
  letter-spacing: 0;
  font-weight: 760;
}

.domain-card-more {
  grid-column: auto;
}

.domain-card-more h3 {
  font-size: 14px;
}

.domains-action {
  margin-top: 30px;
  justify-content: center;
}

.domains-cta {
  min-width: 270px;
  justify-content: space-between;
}

@media (max-width: 1050px) {
  .domains-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .domain-card:nth-child(4n) {
    border-right: 1px solid rgba(8,30,62,.08);
  }

  .domain-card:nth-child(3n) {
    border-right: 0;
  }

  .domain-card:nth-last-child(-n+4) {
    border-bottom: 1px solid rgba(8,30,62,.08);
  }

  .domain-card:nth-last-child(-n+1) {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .domains-section {
    padding: 72px 18px 80px;
  }

  .domains-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .domains-kicker {
    justify-content: flex-start;
  }

  .domains-heading h2 {
    font-size: 40px;
  }

  .domains-intro {
    font-size: 15px;
  }

  .domains-grid {
    padding: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 16px;
  }

  .domain-card,
  .domain-card-featured,
  .domain-card-more {
    min-height: 126px;
    padding: 18px 14px;
    grid-template-columns: 1fr;
    gap: 12px;
    align-content: start;
  }

  .domain-card:nth-child(3n) {
    border-right: 1px solid rgba(8,30,62,.08);
  }

  .domain-card:nth-child(2n) {
    border-right: 0;
  }

  .domain-card:nth-last-child(-n+1) {
    border-bottom: 1px solid rgba(8,30,62,.08);
  }

  .domain-card:last-child {
    grid-column: span 2;
    min-height: 96px;
    grid-template-columns: 46px 1fr;
    align-items: center;
    border-bottom: 0;
  }
}
/* LOT 5 V2.1 — retour à la base V2, avec finition plus premium */
.domains-section {
  padding: 94px 32px 102px;
  background:
    radial-gradient(circle at 10% 12%, rgba(239, 178, 35, .09), transparent 22%),
    radial-gradient(circle at 92% 82%, rgba(48, 105, 163, .08), transparent 28%),
    linear-gradient(180deg, #faf8f4 0%, #f3eee7 100%);
}

.domains-beam {
  right: -120px;
  top: 20px;
  width: 620px;
  height: 230px;
  opacity: .12;
}

.domains-shell {
  width: min(100%, 1260px);
}

.domains-heading {
  width: min(100%, 820px);
  margin: 0 auto 42px;
  text-align: center;
}

.domains-kicker {
  justify-content: center;
  margin-bottom: 12px;
}

.domains-heading h2 {
  margin-bottom: 15px;
  font-size: clamp(42px, 4vw, 56px);
  line-height: 1.02;
}

.domains-intro {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.6;
}

.domains-grid {
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.domain-card,
.domain-card-featured,
.domain-card-more {
  min-height: 118px;
  padding: 20px 18px;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  align-items: center;
  border: 1px solid rgba(8, 30, 62, .09);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(245,248,250,.90));
  box-shadow:
    0 16px 34px rgba(7,27,57,.07),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.domain-card:hover {
  transform: translateY(-3px);
  border-color: rgba(32, 91, 148, .20);
  background:
    linear-gradient(145deg, #ffffff, #f1f6fa);
}

.domain-card::after {
  display: block;
  right: -38px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  opacity: .025;
}

.domain-card:nth-child(5n),
.domain-card:nth-child(5n - 1) {
  border-color: rgba(154,104,7,.13);
  background:
    radial-gradient(circle at 100% 0%, rgba(239,178,35,.08), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,.99), rgba(250,247,238,.94));
}

.domain-icon,
.domain-card-more .domain-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
}

.domain-card h3,
.domain-card-more h3 {
  font-size: 13.5px;
  line-height: 1.32;
}

.domain-card-more {
  grid-column: auto;
  display: grid;
}

.domain-card-more .domain-icon {
  margin-bottom: 0;
}

.domain-card-more h3 {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 13.5px;
}

.domains-action {
  margin-top: 28px;
  justify-content: center;
}

.domains-cta {
  min-width: 276px;
}

@media (max-width: 1120px) {
  .domains-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .domains-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .domains-section {
    padding: 66px 16px 74px;
  }

  .domains-heading {
    text-align: left;
  }

  .domains-kicker {
    justify-content: flex-start;
  }

  .domains-heading h2 {
    font-size: 38px;
  }

  .domains-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .domain-card,
  .domain-card-featured,
  .domain-card-more {
    min-height: 126px;
    padding: 17px 14px;
    grid-template-columns: 1fr;
    align-content: start;
  }

  .domain-card:last-child {
    grid-column: span 2;
    min-height: 94px;
    grid-template-columns: 44px 1fr;
    align-items: center;
  }
}
/* LOT 6 — Vigilance */
.vigilance-section {
  position: relative;
  overflow: hidden;
  padding: 112px 32px 118px;
  color: var(--navy);
  background:
    radial-gradient(circle at 8% 10%, rgba(239,178,35,.10), transparent 22%),
    linear-gradient(180deg, #f8f5ef 0%, #f2ede6 100%);
}

.vigilance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .30;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10,35,72,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,35,72,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 88%, transparent);
}

.vigilance-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.vigilance-heading {
  width: min(100%, 820px);
  margin: 0 auto 52px;
  text-align: center;
}

.vigilance-kicker,
.vigilance-step {
  margin: 0 0 13px;
  color: #9a6807;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .16em;
}

.vigilance-heading h2 {
  margin: 0 0 17px;
  color: var(--navy-deep);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(46px, 4.8vw, 68px);
  line-height: .99;
  letter-spacing: -.04em;
}

.vigilance-heading > p:last-child {
  margin: 0;
  color: #506176;
  font-size: 17px;
  line-height: 1.6;
}

.vigilance-stage {
  overflow: hidden;
  border: 1px solid rgba(8,30,62,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 34px 84px rgba(7,27,57,.13);
}

.vigilance-stage-heading {
  padding: 34px 40px 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: end;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,213,110,.16), transparent 34%),
    linear-gradient(145deg, #0d3766 0%, #071f40 76%);
}

.vigilance-step {
  margin-bottom: 10px;
  color: #f5c65a;
}

.vigilance-stage-heading h3 {
  margin: 0;
  max-width: 760px;
  color: #fffdf8;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(38px, 3.8vw, 54px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.vigilance-stage-heading > p {
  margin: 0 0 5px;
  padding-left: 22px;
  border-left: 2px solid rgba(245,198,90,.78);
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.6;
}

.vigilance-cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vigilance-case {
  position: relative;
  min-width: 0;
  padding: 28px 28px 30px;
  border-right: 1px solid rgba(8,30,62,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,243,236,.92));
}

.vigilance-case:last-child {
  border-right: 0;
}

.vigilance-case-top {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vigilance-case-top p {
  margin: 0;
  color: #41536a;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: .06em;
}

.vigilance-case-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #1d5d99;
  border: 1px solid rgba(29,93,153,.13);
  background: #edf4fa;
}

.vigilance-case-icon svg {
  width: 19px;
  height: 19px;
}

.vigilance-document {
  position: relative;
  min-height: 330px;
  padding: 34px 30px 28px;
  overflow: hidden;
  border: 1px solid rgba(8,30,62,.11);
  border-radius: 9px;
  background:
    linear-gradient(90deg, rgba(231,226,216,.42) 0, rgba(231,226,216,.42) 1px, transparent 1px) 0 0 / 32px 100%,
    #fffdf9;
  box-shadow: 0 18px 38px rgba(7,27,57,.10);
  transform: rotate(-.45deg);
}

.vigilance-case:nth-child(2) .vigilance-document {
  transform: rotate(.35deg);
}

.vigilance-case:nth-child(3) .vigilance-document {
  transform: rotate(-.2deg);
}

.vigilance-document::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #1c5d99, #0a2348 68%, #eab22f 68%);
}

.vigilance-paper-title {
  display: block;
  margin: 24px 0 30px;
  color: #1f2e43;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: .01em;
}

.vigilance-paper-line {
  display: block;
  width: 100%;
  height: 8px;
  margin-bottom: 13px;
  border-radius: 999px;
  background: rgba(37,55,79,.10);
}

.vigilance-paper-line.line-short {
  width: 48%;
}

.vigilance-paper-line.line-medium {
  width: 72%;
}

.vigilance-paper-highlight {
  display: block;
  margin: 18px -8px 20px;
  padding: 10px 12px;
  color: #5d4308;
  background: linear-gradient(90deg, rgba(245,198,90,.38), rgba(245,198,90,.16));
  border-left: 3px solid #dca51d;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 760;
}

.vigilance-case-note {
  position: relative;
  z-index: 2;
  width: calc(100% - 28px);
  margin: -36px 14px 0;
  padding: 14px 16px;
  color: #30445d;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(8,30,62,.09);
  border-radius: 9px;
  box-shadow: 0 14px 30px rgba(7,27,57,.10);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 740;
}

.vigilance-impact {
  margin-top: 28px;
  overflow: hidden;
  border-radius: 20px;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 12%, rgba(255,213,110,.13), transparent 32%),
    linear-gradient(150deg, #0b315d 0%, #061b37 78%);
  box-shadow: 0 28px 70px rgba(7,27,57,.18);
}

.vigilance-impact-heading {
  padding: 32px 38px 28px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.vigilance-impact-heading h3 {
  margin: 0 0 10px;
  color: #fffdf8;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(34px, 3.5vw, 50px);
  line-height: 1.02;
  letter-spacing: -.03em;
}

.vigilance-impact-heading h3 span {
  color: #f5c65a;
}

.vigilance-impact-heading p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.55;
}

.vigilance-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vigilance-impact-grid article {
  min-height: 180px;
  padding: 30px 30px 28px;
  border-right: 1px solid rgba(255,255,255,.09);
}

.vigilance-impact-grid article:last-child {
  border-right: 0;
}

.vigilance-impact-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #f5c65a;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
}

.vigilance-impact-icon svg {
  width: 20px;
  height: 20px;
}

.vigilance-impact-grid p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.65;
}

.vigilance-closing {
  margin: 0;
  padding: 22px 30px 24px;
  text-align: center;
  color: rgba(255,255,255,.68);
  border-top: 1px solid rgba(255,255,255,.09);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.45;
}

.vigilance-action {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.vigilance-cta {
  min-width: 270px;
  min-height: 50px;
  padding: 0 20px 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 4px;
  color: #101b2d;
  background: linear-gradient(180deg, #ffd060 0%, #e9aa14 100%);
  box-shadow: 0 14px 30px rgba(139,88,0,.20);
  font-size: 13px;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.vigilance-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(139,88,0,.24);
}

.vigilance-cta svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

@media (max-width: 980px) {
  .vigilance-stage-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vigilance-stage-heading > p {
    max-width: 620px;
  }

  .vigilance-cases {
    grid-template-columns: 1fr;
  }

  .vigilance-case {
    border-right: 0;
    border-bottom: 1px solid rgba(8,30,62,.10);
  }

  .vigilance-case:last-child {
    border-bottom: 0;
  }

  .vigilance-document {
    min-height: 280px;
  }

  .vigilance-impact-grid {
    grid-template-columns: 1fr;
  }

  .vigilance-impact-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }

  .vigilance-impact-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .vigilance-section {
    padding: 72px 16px 80px;
  }

  .vigilance-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .vigilance-heading h2 {
    font-size: 42px;
  }

  .vigilance-heading > p:last-child {
    font-size: 15px;
  }

  .vigilance-stage {
    border-radius: 16px;
  }

  .vigilance-stage-heading {
    padding: 28px 22px 24px;
  }

  .vigilance-stage-heading h3 {
    font-size: 35px;
  }

  .vigilance-case {
    padding: 22px 18px 24px;
  }

  .vigilance-document {
    min-height: 255px;
    padding: 28px 22px 24px;
  }

  .vigilance-impact {
    border-radius: 16px;
  }

  .vigilance-impact-heading {
    padding: 28px 22px 24px;
    text-align: left;
  }

  .vigilance-impact-heading h3 {
    font-size: 34px;
  }

  .vigilance-impact-grid article {
    padding: 24px 22px;
  }

  .vigilance-cta {
    width: 100%;
  }
}
/* LOT 6 V2 — Vigilance simplifiée */
.vigilance-section {
  position: relative;
  overflow: hidden;
  padding: 100px 32px 106px;
  color: var(--navy);
  background:
    radial-gradient(circle at 8% 12%, rgba(239,178,35,.08), transparent 22%),
    radial-gradient(circle at 90% 82%, rgba(44,100,158,.08), transparent 28%),
    linear-gradient(180deg, #f9f7f2 0%, #f1ece5 100%);
}

.vigilance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10,35,72,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,35,72,.032) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 15%, #000 86%, transparent);
}

.vigilance-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  margin: 0 auto;
}

.vigilance-heading {
  width: min(100%, 840px);
  margin: 0 auto 46px;
  text-align: center;
}

.vigilance-kicker {
  margin: 0 0 13px;
  color: #9a6807;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .16em;
}

.vigilance-heading h2 {
  margin: 0 0 16px;
  color: var(--navy-deep);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(46px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -.038em;
}

.vigilance-heading > p:last-child {
  margin: 0;
  color: #526276;
  font-size: 16px;
  line-height: 1.6;
}

.vigilance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vigilance-card {
  min-height: 470px;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(8,30,62,.10);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,249,251,.92));
  box-shadow:
    0 22px 54px rgba(7,27,57,.09),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.vigilance-card:nth-child(2) {
  color: #ffffff;
  border-color: rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(74,139,198,.16), transparent 32%),
    linear-gradient(150deg, #0d3766 0%, #071f40 78%);
  box-shadow: 0 28px 66px rgba(7,27,57,.17);
}

.vigilance-card-head {
  min-height: 124px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.vigilance-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #1d5d99;
  border: 1px solid rgba(29,93,153,.13);
  background: #edf4fa;
}

.vigilance-card:nth-child(2) .vigilance-card-icon {
  color: #f5c65a;
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
}

.vigilance-card-icon svg {
  width: 22px;
  height: 22px;
}

.vigilance-card-label {
  margin: 2px 0 8px;
  color: #637386;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: .08em;
}

.vigilance-card:nth-child(2) .vigilance-card-label {
  color: rgba(255,255,255,.58);
}

.vigilance-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.vigilance-card:nth-child(2) h3 {
  color: #ffffff;
}

.vigilance-alert,
.vigilance-consequence {
  padding: 20px 20px 19px;
  border-radius: 12px;
}

.vigilance-alert {
  margin-top: 4px;
  color: #634707;
  border: 1px solid rgba(218,163,27,.18);
  background:
    linear-gradient(135deg, rgba(255,244,211,.92), rgba(255,250,236,.82));
}

.vigilance-card:nth-child(2) .vigilance-alert {
  color: #ffe6a2;
  border-color: rgba(245,198,90,.18);
  background: rgba(245,198,90,.10);
}

.vigilance-consequence {
  margin-top: 14px;
  flex: 1;
  color: #33475f;
  border: 1px solid rgba(8,30,62,.08);
  background: rgba(239,244,248,.72);
}

.vigilance-card:nth-child(2) .vigilance-consequence {
  color: rgba(255,255,255,.84);
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.055);
}

.vigilance-alert span,
.vigilance-consequence span {
  display: block;
  margin-bottom: 9px;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .12em;
}

.vigilance-alert p,
.vigilance-consequence p {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
  font-weight: 620;
}

.vigilance-footer {
  margin-top: 28px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(8,30,62,.10);
}

.vigilance-footer p {
  margin: 0;
  color: #31445c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.4;
}

.vigilance-cta {
  min-width: 270px;
  min-height: 50px;
  padding: 0 20px 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 4px;
  color: #101b2d;
  background: linear-gradient(180deg, #ffd060 0%, #e9aa14 100%);
  box-shadow: 0 14px 30px rgba(139,88,0,.20);
  font-size: 13px;
  font-weight: 850;
}

.vigilance-cta svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

@media (max-width: 980px) {
  .vigilance-grid {
    grid-template-columns: 1fr;
  }

  .vigilance-card {
    min-height: 0;
  }

  .vigilance-card-head {
    min-height: 0;
    margin-bottom: 22px;
  }

  .vigilance-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .vigilance-section {
    padding: 70px 16px 78px;
  }

  .vigilance-heading {
    text-align: left;
    margin-bottom: 34px;
  }

  .vigilance-heading h2 {
    font-size: 42px;
  }

  .vigilance-card {
    padding: 22px 18px 20px;
    border-radius: 15px;
  }

  .vigilance-card h3 {
    font-size: 22px;
  }

  .vigilance-footer {
    padding: 20px 0 0;
  }

  .vigilance-cta {
    width: 100%;
  }
}
/* LOT 7 — fonctionnement */
.process-section {
  position: relative;
  overflow: hidden;
  padding: 104px 32px 110px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 10%, rgba(245,198,90,.13), transparent 24%),
    radial-gradient(circle at 88% 86%, rgba(68,132,192,.16), transparent 28%),
    linear-gradient(145deg, #0d3766 0%, #071f40 72%, #06182f 100%);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 88%, transparent);
}

.process-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  margin: 0 auto;
}

.process-heading {
  width: min(100%, 760px);
  margin: 0 auto 48px;
  text-align: center;
}

.process-kicker {
  margin: 0 0 13px;
  color: #f5c65a;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .16em;
}

.process-heading h2 {
  margin: 0;
  color: #fffdf8;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(46px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -.038em;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,198,90,.52), transparent);
  pointer-events: none;
}

.process-step {
  position: relative;
  min-height: 360px;
  padding: 28px 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  box-shadow:
    0 26px 60px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
}

.process-step:nth-child(2) {
  background:
    radial-gradient(circle at 100% 0%, rgba(245,198,90,.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.055));
}

.process-number {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(255,255,255,.13);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
}

.process-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 74px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #f5c65a;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.075);
}

.process-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.7;
}

.process-copy h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.process-copy p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.68;
}

.process-footer {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.process-link {
  min-width: 282px;
  min-height: 50px;
  padding: 0 20px 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 4px;
  color: #ffffff;
  background: rgba(255,255,255,.075);
  box-shadow: 0 14px 30px rgba(0,0,0,.14);
  font-size: 13px;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease;
}

.process-link:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.11);
}

.process-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

@media (max-width: 920px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid::before {
    display: none;
  }

  .process-step {
    min-height: 0;
  }

  .process-icon {
    margin-bottom: 36px;
  }
}

@media (max-width: 640px) {
  .process-section {
    padding: 72px 16px 80px;
  }

  .process-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .process-heading h2 {
    font-size: 42px;
  }

  .process-step {
    padding: 22px 18px 24px;
    border-radius: 15px;
  }

  .process-copy h3 {
    font-size: 24px;
  }

  .process-link {
    width: 100%;
  }
}
/* LOT 8 — Tarifs particuliers */
.pricing-section {
  position: relative;
  overflow: hidden;
  padding: 104px 32px 112px;
  color: var(--navy);
  background:
    radial-gradient(circle at 10% 10%, rgba(239,178,35,.09), transparent 22%),
    radial-gradient(circle at 90% 86%, rgba(45,102,159,.09), transparent 28%),
    linear-gradient(180deg, #f9f7f2 0%, #f1ece5 100%);
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10,35,72,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,35,72,.032) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 88%, transparent);
}

.pricing-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  margin: 0 auto;
}

.pricing-heading {
  width: min(100%, 820px);
  margin: 0 auto 48px;
  text-align: center;
}

.pricing-kicker {
  margin: 0 0 13px;
  color: #9a6807;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .16em;
}

.pricing-heading h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(46px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -.038em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  min-height: 610px;
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(8,30,62,.10);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.99), rgba(247,249,251,.92));
  box-shadow:
    0 22px 54px rgba(7,27,57,.09),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.pricing-card-featured {
  color: #ffffff;
  border-color: rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(245,198,90,.18), transparent 32%),
    linear-gradient(150deg, #0d3766 0%, #071f40 78%);
  box-shadow: 0 30px 72px rgba(7,27,57,.18);
  transform: translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #5f4305;
  background: #f5c65a;
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .10em;
}

.pricing-card-top {
  min-height: 210px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(8,30,62,.09);
}

.pricing-card-featured .pricing-card-top {
  border-bottom-color: rgba(255,255,255,.10);
}

.pricing-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #1d5d99;
  border: 1px solid rgba(29,93,153,.13);
  background: #edf4fa;
}

.pricing-card-featured .pricing-icon {
  color: #f5c65a;
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
}

.pricing-icon svg {
  width: 24px;
  height: 24px;
}

.pricing-offer {
  margin: 0 0 7px;
  color: #627286;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.pricing-card-featured .pricing-offer {
  color: rgba(255,255,255,.62);
}

.pricing-card h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 29px;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.pricing-card-featured h3 {
  color: #ffffff;
}

.pricing-price {
  margin: 0;
  color: #526176;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.pricing-card-featured .pricing-price {
  color: rgba(255,255,255,.68);
}

.pricing-price span {
  margin-right: 5px;
  color: var(--navy-deep);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.035em;
}

.pricing-card-featured .pricing-price span {
  color: #ffffff;
}

.pricing-description {
  min-height: 98px;
  margin: 24px 0 22px;
  color: #46586f;
  font-size: 14px;
  line-height: 1.62;
}

.pricing-card-featured .pricing-description {
  color: rgba(255,255,255,.78);
}

.pricing-list {
  flex: 1;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 23px;
  color: #31445c;
  font-size: 13.5px;
  line-height: 1.55;
}

.pricing-card-featured .pricing-list li {
  color: rgba(255,255,255,.86);
}

.pricing-list li + li {
  margin-top: 11px;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .34em;
  width: 12px;
  height: 7px;
  border-left: 2px solid #1d6b49;
  border-bottom: 2px solid #1d6b49;
  transform: rotate(-45deg);
}

.pricing-card-featured .pricing-list li::before {
  border-color: #f5c65a;
}

.pricing-cta {
  min-height: 50px;
  padding: 0 18px 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.pricing-cta svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.pricing-cta-secondary {
  color: var(--navy);
  border: 1px solid rgba(8,30,62,.13);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(7,27,57,.08);
}

.pricing-cta-primary {
  color: #101b2d;
  border: 1px solid rgba(139,88,0,.14);
  background: linear-gradient(180deg, #ffd060 0%, #e9aa14 100%);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

.pricing-note {
  max-width: 860px;
  margin: 28px auto 0;
  color: #596a7e;
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: 0;
  }

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-top {
    min-height: 0;
  }

  .pricing-description {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .pricing-section {
    padding: 72px 16px 80px;
  }

  .pricing-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .pricing-heading h2 {
    font-size: 42px;
  }

  .pricing-card {
    padding: 24px 20px 22px;
    border-radius: 15px;
  }

  .pricing-price span {
    font-size: 38px;
  }
}
/* LOT 9 — Professionnels B2B modernisé */
.b2b-section {
  position: relative;
  overflow: hidden;
  padding: 108px 32px 112px;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 8%, rgba(245,198,90,.14), transparent 24%),
    radial-gradient(circle at 88% 92%, rgba(62,126,190,.20), transparent 28%),
    linear-gradient(135deg, #123f70 0%, #082a54 48%, #061b38 100%);
}

.b2b-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(255,255,255,.05) 46% 46.15%, transparent 46.15% 100%),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: auto, 54px 54px, 54px 54px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 90%, transparent);
}

.b2b-section::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -180px;
  top: -190px;
  border: 1px solid rgba(245,198,90,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.012);
  pointer-events: none;
}

.b2b-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, .88fr);
  gap: clamp(48px, 5.4vw, 78px);
  align-items: center;
}

.b2b-kicker {
  margin: 0 0 15px;
  color: #f7ca61;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .17em;
}

.b2b-copy h2 {
  max-width: 760px;
  margin: 0 0 25px;
  color: #fffdf8;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(46px, 4.25vw, 62px);
  line-height: .99;
  letter-spacing: -.042em;
}

.b2b-intro {
  max-width: 760px;
  margin: 0 0 25px;
  color: rgba(255,255,255,.82);
  font-size: 16.5px;
  line-height: 1.68;
}

.b2b-service-line {
  max-width: 760px;
  min-height: 52px;
  margin-bottom: 23px;
  padding: 10px 11px 10px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  line-height: 1.4;
  font-weight: 680;
}

.b2b-service-line strong {
  flex: 0 0 auto;
  padding: 9px 15px;
  border-radius: 999px;
  color: #152238;
  background: linear-gradient(180deg, #f8cf6f, #e8ac24);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .03em;
}

.b2b-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 27px;
}

.b2b-points article {
  min-height: 188px;
  padding: 19px 17px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 17px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.b2b-points article:hover {
  transform: translateY(-3px);
  border-color: rgba(247,202,97,.28);
  background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
}

.b2b-point-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 17px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247,202,97,.28);
  border-radius: 12px;
  color: #f7ca61;
  background: rgba(247,202,97,.08);
}

.b2b-point-icon svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.7;
}

.b2b-points h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 14px;
  line-height: 1.32;
  font-weight: 800;
}

.b2b-points p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 12.4px;
  line-height: 1.52;
}

.b2b-actions {
  max-width: 760px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.b2b-cta {
  min-height: 52px;
  padding: 0 19px 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex: 0 0 auto;
  border-radius: 5px;
  color: #101b2d;
  background: linear-gradient(180deg, #ffd36c 0%, #e9ac20 100%);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
  font-size: 13px;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.b2b-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0,0,0,.27);
}

.b2b-cta svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.b2b-disclaimer {
  max-width: 320px;
  margin: 0;
  color: rgba(255,255,255,.52);
  font-size: 11.5px;
  line-height: 1.45;
}

.b2b-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 25px;
  color: var(--navy);
  background: #f7f3eb;
  box-shadow: 0 38px 86px rgba(0,0,0,.27), inset 0 1px 0 rgba(255,255,255,.7);
  transform: translateY(4px);
}

.b2b-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.6 / 1;
  background: #d8dde0;
}

.b2b-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 52%, rgba(5,24,49,.22) 100%),
    linear-gradient(90deg, rgba(5,24,49,.08), transparent 30% 74%, rgba(5,24,49,.06));
}

.b2b-photo-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 47%;
}

.b2b-photo-badge {
  position: absolute;
  z-index: 2;
  left: 20px;
  top: 20px;
  padding: 11px 14px 10px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 12px;
  color: #fff;
  background: rgba(5,31,63,.78);
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
  backdrop-filter: blur(10px);
}

.b2b-photo-badge strong {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
}

.b2b-photo-badge small {
  color: rgba(255,255,255,.72);
  font-size: 10px;
  line-height: 1.2;
}

.b2b-photo-caption {
  position: relative;
  min-height: 162px;
  padding: 26px 29px 28px 34px;
  background:
    radial-gradient(circle at 94% 10%, rgba(239,178,35,.12), transparent 30%),
    linear-gradient(180deg, #fffdf9, #f5efe5);
}

.b2b-photo-caption::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 28px;
  width: 4px;
  background: linear-gradient(180deg, #efb223, #c98709);
}

.b2b-photo-caption p {
  margin: 0 0 7px;
  color: #a06b08;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .14em;
}

.b2b-photo-caption h3 {
  margin: 0 0 9px;
  color: #071d3a;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 29px;
  line-height: 1.05;
  letter-spacing: -.026em;
}

.b2b-photo-caption span {
  display: block;
  max-width: 420px;
  color: #516176;
  font-size: 13.5px;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .b2b-shell {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .b2b-copy,
  .b2b-visual {
    width: min(100%, 820px);
    margin-left: auto;
    margin-right: auto;
  }

  .b2b-visual {
    transform: none;
  }
}

@media (max-width: 760px) {
  .b2b-section {
    padding: 76px 18px 82px;
  }

  .b2b-copy h2 {
    font-size: 43px;
  }

  .b2b-intro {
    font-size: 15px;
  }

  .b2b-service-line {
    border-radius: 16px;
  }

  .b2b-points {
    grid-template-columns: 1fr;
  }

  .b2b-points article {
    min-height: 0;
  }

  .b2b-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .b2b-photo-caption h3 {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .b2b-section {
    padding: 58px 16px 66px;
  }

  .b2b-shell {
    gap: 30px;
  }

  .b2b-copy h2 {
    font-size: 36px;
  }

  .b2b-service-line {
    align-items: flex-start;
    flex-direction: column;
    padding: 15px;
  }

  .b2b-service-line strong {
    padding: 8px 13px;
  }

  .b2b-points {
    gap: 10px;
    margin-bottom: 22px;
  }

  .b2b-points article {
    padding: 18px 16px;
  }

  .b2b-cta {
    width: 100%;
  }

  .b2b-disclaimer {
    max-width: none;
  }

  .b2b-visual {
    display: block;
    border-radius: 18px;
  }

  .b2b-photo-wrap {
    aspect-ratio: 1.34 / 1;
  }

  .b2b-photo-badge {
    left: 12px;
    top: 12px;
  }

  .b2b-photo-caption {
    min-height: 0;
    padding: 22px 21px 24px 25px;
  }

  .b2b-photo-caption::before {
    top: 22px;
    bottom: 24px;
  }

  .b2b-photo-caption h3 {
    font-size: 24px;
  }
}

/* LOT 10 — FAQ */
.faq-section {
  position: relative;
  overflow: hidden;
  padding: 106px 32px 112px;
  color: var(--navy);
  background:
    radial-gradient(circle at 12% 10%, rgba(239,178,35,.10), transparent 22%),
    radial-gradient(circle at 88% 84%, rgba(45,102,159,.08), transparent 28%),
    linear-gradient(180deg, #faf8f4 0%, #f1ece5 100%);
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10,35,72,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,35,72,.032) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 88%, transparent);
}

.faq-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 78px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 34px;
}

.faq-kicker {
  margin: 0 0 14px;
  color: #9a6807;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .16em;
}

.faq-intro h2 {
  margin: 0 0 30px;
  color: var(--navy-deep);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(43px, 4.1vw, 58px);
  line-height: 1.01;
  letter-spacing: -.038em;
}

.faq-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(8,30,62,.10);
  border-radius: 999px;
  color: #40536b;
  background: rgba(255,255,255,.72);
  box-shadow: 0 8px 18px rgba(7,27,57,.05);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(8,30,62,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 34px rgba(7,27,57,.07);
}

.faq-item[open] {
  border-color: rgba(29,93,153,.20);
  box-shadow: 0 18px 42px rgba(7,27,57,.09);
}

.faq-item summary {
  min-height: 76px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 820;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #1d5d99;
  border: 1px solid rgba(29,93,153,.13);
  background: #edf4fa;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 76px 22px 22px;
}

.faq-answer p {
  margin: 0;
  color: #4b5d73;
  font-size: 14px;
  line-height: 1.68;
}

@media (max-width: 980px) {
  .faq-shell {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .faq-intro {
    position: static;
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 72px 16px 80px;
  }

  .faq-intro h2 {
    font-size: 40px;
  }

  .faq-item summary {
    min-height: 70px;
    padding: 0 16px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 56px 18px 16px;
  }
}
/* LOT 11 — Contact et pied de page */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 110px 32px 118px;
  color: var(--navy);
  background:
    radial-gradient(circle at 10% 12%, rgba(239,178,35,.09), transparent 22%),
    radial-gradient(circle at 90% 84%, rgba(45,102,159,.08), transparent 28%),
    linear-gradient(180deg, #faf8f4 0%, #f1ece5 100%);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10,35,72,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,35,72,.032) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 88%, transparent);
}

.contact-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: 82px;
  align-items: start;
}

.contact-kicker {
  margin: 0 0 13px;
  color: #9a6807;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .16em;
}

.contact-copy h2 {
  margin: 0 0 18px;
  color: var(--navy-deep);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(48px, 4.8vw, 66px);
  line-height: .98;
  letter-spacing: -.04em;
}

.contact-philosophy {
  max-width: 650px;
}

.contact-philosophy h3 {
  margin: 0 0 20px;
  color: #344a64;
  font-size: 16px;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-philosophy p {
  margin: 0;
  color: #46586f;
  font-size: 15px;
  line-height: 1.72;
}

.contact-philosophy p + p {
  margin-top: 18px;
}

.contact-brand {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-brand-lighthouse {
  width: 54px;
  height: auto;
}

.contact-brand-wordmark {
  width: 180px;
  height: auto;
}

.contact-email {
  margin-top: 30px;
  display: grid;
  gap: 6px;
}

.contact-email span,
.footer-contact span {
  color: #647487;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-email a {
  color: var(--navy);
  font-size: 15px;
  font-weight: 760;
}

.contact-panel {
  padding: 34px 34px 32px;
  border: 1px solid rgba(8,30,62,.10);
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  box-shadow:
    0 28px 70px rgba(7,27,57,.11),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.contact-panel-heading {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(8,30,62,.09);
}

.contact-panel-heading p {
  margin: 0 0 9px;
  color: #996508;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .14em;
}

.contact-panel-heading h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.contact-form {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field > span {
  color: #31445c;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 760;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(8,30,62,.13);
  border-radius: 10px;
  color: var(--navy);
  background: #ffffff;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-field input {
  height: 50px;
  padding: 0 15px;
}

.contact-field textarea {
  min-height: 132px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(29,93,153,.45);
  box-shadow: 0 0 0 4px rgba(29,93,153,.08);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #929dab;
}

.contact-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  color: #536478;
  font-size: 11.5px;
  line-height: 1.55;
}

.contact-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: #1d5d99;
}

.contact-submit {
  min-height: 52px;
  padding: 0 20px 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-radius: 4px;
  color: #101b2d;
  background: linear-gradient(180deg, #ffd060 0%, #e9aa14 100%);
  box-shadow: 0 15px 32px rgba(139,88,0,.20);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.contact-submit svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.site-footer {
  color: rgba(255,255,255,.82);
  background:
    radial-gradient(circle at 90% 0%, rgba(67,130,190,.14), transparent 28%),
    linear-gradient(145deg, #0b315d 0%, #06182f 82%);
}

.footer-shell {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 58px 32px 48px;
  display: grid;
  grid-template-columns: 1fr auto 230px;
  gap: 48px;
  align-items: center;
}

.footer-brand a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-lighthouse {
  width: 44px;
  height: auto;
}

.footer-wordmark {
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 12px 0 0 58px;
  color: rgba(255,255,255,.52);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 26px;
  font-size: 12px;
  font-weight: 700;
}

.footer-nav a,
.footer-legal-links a {
  transition: color 160ms ease;
}

.footer-nav a:hover,
.footer-legal-links a:hover {
  color: #f5c65a;
}

.footer-contact {
  display: grid;
  gap: 7px;
  justify-self: end;
}

.footer-contact span {
  color: rgba(255,255,255,.48);
}

.footer-contact a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 760;
}

.footer-legal {
  border-top: 1px solid rgba(255,255,255,.09);
  background: rgba(0,0,0,.10);
}

.footer-legal-inner {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 20px 32px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-legal-inner p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 760;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 20px;
  color: rgba(255,255,255,.54);
  font-size: 10.5px;
}

@media (max-width: 980px) {
  .contact-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-copy {
    max-width: 760px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-contact {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 72px 16px 80px;
  }

  .contact-copy h2 {
    font-size: 42px;
  }

  .contact-panel {
    padding: 24px 18px 22px;
    border-radius: 16px;
  }

  .footer-shell {
    padding: 44px 18px 36px;
  }

  .footer-legal-inner {
    padding: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal-links {
    justify-content: flex-start;
  }
}
/* LOT 12 — Ce que vous obtenez et situations d’usage */
.outcomes-section {
  position: relative;
  overflow: hidden;
  padding: 86px 32px 94px;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 14%, rgba(245,198,90,.14), transparent 22%),
    radial-gradient(circle at 88% 86%, rgba(70,135,196,.17), transparent 28%),
    linear-gradient(145deg, #0d3766 0%, #071f40 74%, #06182f 100%);
}

.outcomes-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.outcomes-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  margin: 0 auto;
}

.outcomes-summary {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  margin-bottom: 34px;
}

.outcomes-kicker {
  margin: 0 0 13px;
  color: #f5c65a;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .16em;
}

.outcomes-heading h2 {
  margin: 0;
  color: #fffdf8;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(44px, 4.3vw, 58px);
  line-height: .98;
  letter-spacing: -.038em;
}

.outcomes-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.outcomes-list li {
  min-height: 76px;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.90);
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 700;
}

.outcomes-check {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #f5c65a;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
}

.outcomes-check svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.situations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.situation-card {
  position: relative;
  min-height: 250px;
  padding: 26px 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  box-shadow:
    0 22px 52px rgba(0,0,0,.15),
    inset 0 1px 0 rgba(255,255,255,.07);
}

.situation-card-accent {
  background:
    radial-gradient(circle at 100% 0%, rgba(245,198,90,.17), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.055));
}

.situation-number {
  position: absolute;
  right: 18px;
  top: 14px;
  color: rgba(255,255,255,.13);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
}

.situation-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 30px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #f5c65a;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
}

.situation-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}

.situation-card h3 {
  margin: 0 0 13px;
  color: #ffffff;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.situation-card p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.62;
}

@media (max-width: 980px) {
  .outcomes-summary {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .situations-grid {
    grid-template-columns: 1fr;
  }

  .situation-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .outcomes-section {
    padding: 66px 16px 74px;
  }

  .outcomes-heading h2 {
    font-size: 40px;
  }

  .outcomes-list {
    grid-template-columns: 1fr;
  }

  .situation-card {
    padding: 22px 18px 22px;
    border-radius: 14px;
  }

  .situation-card h3 {
    font-size: 23px;
  }
}
/* LOT 13 — optimisation mobile 390 px */
@media (max-width: 640px) {
  /* Rythme général */
  .hero-inner,
  .outcomes-section,
  .report-demo,
  .domains-section,
  .trust-section,
  .scope-section,
  .vigilance-section,
  .process-section,
  .pricing-section,
  .faq-section,
  .b2b-section,
  .contact-section {
    scroll-margin-top: 72px;
  }

  .outcomes-section,
  .report-demo,
  .domains-section,
  .vigilance-section,
  .process-section,
  .pricing-section,
  .faq-section,
  .b2b-section,
  .contact-section {
    padding-top: 54px;
    padding-bottom: 62px;
  }

  .trust-section {
    padding-top: 44px;
    padding-bottom: 50px;
  }

  .scope-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  /* Header */
  .site-header {
    height: 68px;
  }

  .header-inner {
    grid-template-columns: 150px 1fr;
    padding: 0 10px;
    gap: 8px;
  }

  .brand {
    width: 148px;
    height: 64px;
  }

  .brand-lighthouse {
    max-width: 38px;
  }

  .brand-wordmark {
    max-width: 102px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 10px;
    font-size: 9.8px;
  }

  /* Hero */
  .hero-inner {
    padding: 34px 16px 44px;
  }

  h1 {
    font-size: 36px;
    line-height: .99;
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.52;
  }

  .report-preview {
    padding: 19px 14px 15px;
  }

  .report-preview h2 {
    font-size: 24px;
  }

  .report-document {
    grid-template-columns: 31px 1fr;
    gap: 9px;
  }

  .report-document p,
  .report-section ul {
    font-size: 9.2px;
  }

  .report-section {
    grid-template-columns: 92px 1fr;
    gap: 9px;
    padding: 8px 0;
  }

  .report-section h3 {
    font-size: 10px;
  }

  .report-signature {
    padding: 8px 9px;
    font-size: 9.8px;
  }

  /* Ce que vous obtenez */
  .outcomes-heading h2 {
    font-size: 35px;
  }

  .outcomes-summary {
    gap: 22px;
    margin-bottom: 24px;
  }

  .outcomes-list {
    gap: 9px;
  }

  .outcomes-list li {
    min-height: 58px;
    padding: 11px 12px;
    grid-template-columns: 32px 1fr;
    gap: 10px;
    font-size: 12px;
  }

  .outcomes-check {
    width: 30px;
    height: 30px;
  }

  .situations-grid {
    gap: 12px;
  }

  .situation-card {
    padding: 18px 16px;
  }

  .situation-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
  }

  .situation-card h3 {
    font-size: 21px;
  }

  .situation-card p {
    font-size: 13px;
    line-height: 1.55;
  }

  /* Exemple de rapport : supprimer les doublons mobiles */
  .report-demo-heading {
    margin-bottom: 30px;
  }

  .report-demo-emblem,
  .report-demo-lighthouse,
  .report-demo-index,
  .report-demo-side {
    display: none;
  }

  .report-demo-heading {
    display: block;
  }

  .report-demo-heading h2 {
    font-size: 38px;
  }

  .report-demo-intro {
    font-size: 14px;
    line-height: 1.55;
  }

  .report-demo-document {
    display: block;
    border-radius: 14px;
  }

  .report-demo-document::before {
    left: 0;
  }

  .report-demo-page {
    padding: 30px 18px 22px;
  }

  .report-demo-page-top h3 {
    font-size: 23px;
  }

  .report-demo-page-intro {
    font-size: 12.5px;
  }

  .report-demo-focus {
    padding: 18px 0;
  }

  /* Domaines */
  .domains-heading {
    margin-bottom: 28px;
  }

  .domains-heading h2 {
    font-size: 34px;
  }

  .domains-intro {
    font-size: 14px;
  }

  .domains-grid {
    gap: 8px;
  }

  .domain-card,
  .domain-card-featured,
  .domain-card-more {
    min-height: 104px;
    padding: 14px 11px;
    gap: 10px;
  }

  .domain-icon,
  .domain-card-more .domain-icon {
    width: 38px;
    height: 38px;
  }

  .domain-icon svg {
    width: 19px;
    height: 19px;
  }

  .domain-card h3,
  .domain-card-more h3 {
    font-size: 12px;
    line-height: 1.28;
  }

  /* Engagements */
  .trust-heading h2 {
    font-size: 32px;
  }

  .trust-item {
    padding: 18px 0;
  }

  .trust-item h3 {
    margin-bottom: 7px;
  }

  /* Cadre du service */
  .scope-heading {
    grid-template-columns: 50px 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

  .scope-heading-mark {
    width: 50px;
    height: 50px;
  }

  .scope-heading-mark img {
    height: 40px;
  }

  .scope-heading h2 {
    font-size: 32px;
  }

  .scope-grid {
    gap: 12px;
  }

  .scope-card {
    grid-template-columns: 42px 1fr;
    gap: 13px;
    padding: 18px 16px;
  }

  .scope-icon {
    width: 40px;
    height: 40px;
  }

  .scope-card h3 {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .scope-card p {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .scope-number {
    font-size: 54px;
  }

  /* Vigilance */
  .vigilance-heading {
    margin-bottom: 28px;
  }

  .vigilance-heading h2 {
    font-size: 35px;
  }

  .vigilance-heading > p:last-child {
    font-size: 14px;
  }

  .vigilance-grid {
    gap: 12px;
  }

  .vigilance-card {
    padding: 18px 15px;
  }

  .vigilance-card-head {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    margin-bottom: 14px;
  }

  .vigilance-card-icon {
    width: 40px;
    height: 40px;
  }

  .vigilance-card h3 {
    font-size: 20px;
  }

  .vigilance-alert,
  .vigilance-consequence {
    padding: 14px;
  }

  .vigilance-alert p,
  .vigilance-consequence p {
    font-size: 12.5px;
  }

  .vigilance-footer {
    margin-top: 20px;
    gap: 16px;
  }

  .vigilance-footer p {
    font-size: 17px;
  }

  /* Fonctionnement */
  .process-heading {
    margin-bottom: 28px;
  }

  .process-heading h2 {
    font-size: 35px;
  }

  .process-grid {
    gap: 12px;
  }

  .process-step {
    padding: 18px 16px;
  }

  .process-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
  }

  .process-copy h3 {
    font-size: 21px;
  }

  .process-copy p {
    font-size: 13px;
    line-height: 1.55;
  }

  /* Tarifs */
  .pricing-heading {
    margin-bottom: 28px;
  }

  .pricing-heading h2 {
    font-size: 35px;
  }

  .pricing-grid {
    gap: 14px;
  }

  .pricing-card {
    padding: 20px 17px;
  }

  .pricing-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
  }

  .pricing-card-top {
    padding-bottom: 18px;
  }

  .pricing-card h3 {
    margin-bottom: 13px;
    font-size: 25px;
  }

  .pricing-price span {
    font-size: 36px;
  }

  .pricing-description {
    margin: 18px 0;
    font-size: 13px;
  }

  .pricing-list {
    margin-bottom: 20px;
  }

  .pricing-list li {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .pricing-list li + li {
    margin-top: 8px;
  }

  /* FAQ */
  .faq-shell {
    gap: 28px;
  }

  .faq-intro h2 {
    font-size: 34px;
  }

  .faq-item summary {
    min-height: 62px;
    font-size: 13px;
  }

  .faq-answer p {
    font-size: 12.5px;
  }

  /* Contact et footer */
  .contact-shell {
    gap: 34px;
  }

  .contact-copy h2 {
    font-size: 36px;
  }

  .contact-philosophy p {
    font-size: 13.5px;
    line-height: 1.58;
  }

  .contact-brand {
    margin-top: 26px;
  }

  .contact-panel-heading h3 {
    font-size: 25px;
  }

  .footer-shell {
    padding-top: 36px;
    padding-bottom: 30px;
    gap: 28px;
  }

  .footer-nav {
    gap: 14px 18px;
  }

  .footer-legal-links {
    gap: 10px 14px;
    font-size: 9.8px;
  }
}
/* LOT 14 — Témoignages clients */
.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 104px 32px 110px;
  color: var(--navy);
  background:
    radial-gradient(circle at 10% 10%, rgba(239,178,35,.09), transparent 22%),
    radial-gradient(circle at 90% 88%, rgba(45,102,159,.09), transparent 28%),
    linear-gradient(180deg, #faf8f4 0%, #f1ece5 100%);
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10,35,72,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,35,72,.032) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 88%, transparent);
}

.testimonials-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  margin: 0 auto;
}

.testimonials-heading {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: end;
}

.testimonials-kicker {
  margin: 0 0 13px;
  color: #9a6807;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .16em;
}

.testimonials-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-deep);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(46px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -.038em;
}

.testimonials-note {
  margin: 0 0 6px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  color: #526276;
  font-size: 14px;
  line-height: 1.55;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  min-height: 520px;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(8,30,62,.10);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.99), rgba(247,249,251,.93));
  box-shadow:
    0 22px 54px rgba(7,27,57,.09),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.testimonial-card-featured {
  color: #ffffff;
  border-color: rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(245,198,90,.17), transparent 34%),
    linear-gradient(150deg, #0d3766 0%, #071f40 78%);
  box-shadow: 0 30px 72px rgba(7,27,57,.18);
  transform: translateY(-10px);
}

.testimonial-topline {
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.testimonial-stars {
  color: #d89e0e;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .08em;
}

.testimonial-card-featured .testimonial-stars {
  color: #f5c65a;
}

.testimonial-quote-mark {
  color: rgba(8,30,62,.09);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: .7;
  font-weight: 700;
}

.testimonial-card-featured .testimonial-quote-mark {
  color: rgba(255,255,255,.11);
}

.testimonial-card h3 {
  min-height: 66px;
  margin: 18px 0 22px;
  color: var(--navy);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.testimonial-card-featured h3 {
  color: #ffffff;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 0;
  color: #46586f;
  font-size: 14px;
  line-height: 1.72;
}

.testimonial-card-featured blockquote {
  color: rgba(255,255,255,.82);
}

.testimonial-card footer {
  margin-top: 28px;
  padding-top: 20px;
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(8,30,62,.09);
}

.testimonial-card-featured footer {
  border-top-color: rgba(255,255,255,.11);
}

.testimonial-card footer strong {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.3;
}

.testimonial-card-featured footer strong {
  color: #ffffff;
}

.testimonial-card footer span {
  color: #708093;
  font-size: 11.5px;
  line-height: 1.35;
}

.testimonial-card-featured footer span {
  color: rgba(255,255,255,.58);
}

@media (max-width: 980px) {
  .testimonials-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .testimonials-note {
    max-width: 620px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card,
  .testimonial-card-featured {
    min-height: 0;
    transform: none;
  }

  .testimonial-card h3 {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .testimonials-section {
    padding: 58px 16px 66px;
  }

  .testimonials-heading {
    margin-bottom: 28px;
  }

  .testimonials-heading h2 {
    font-size: 35px;
  }

  .testimonials-note {
    font-size: 13px;
  }

  .testimonials-grid {
    gap: 12px;
  }

  .testimonial-card {
    padding: 20px 18px;
    border-radius: 15px;
  }

  .testimonial-card h3 {
    margin: 14px 0 16px;
    font-size: 23px;
  }

  .testimonial-card blockquote {
    font-size: 13px;
    line-height: 1.58;
  }
}

/* =========================================================
   DOMAINES V2 SAFE
   Section autonome. Aucun SVG, aucune dépendance aux anciens
   styles .domains-section / .domain-card.
   ========================================================= */
.domains-v2 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 112px 32px 108px;
  color: #0a2348;
  background:
    radial-gradient(circle at 8% 12%, rgba(239, 178, 35, .13), transparent 24%),
    radial-gradient(circle at 92% 86%, rgba(27, 100, 188, .10), transparent 27%),
    linear-gradient(180deg, #f8f5ef 0%, #f2eee7 100%);
  border-top: 1px solid rgba(8, 30, 62, .07);
  border-bottom: 1px solid rgba(8, 30, 62, .08);
}

.domains-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .48;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 35, 72, .033) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 35, 72, .033) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 17%, #000 86%, transparent 100%);
}

.domains-v2-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(10, 35, 72, .08);
  border-radius: 50%;
  pointer-events: none;
}

.domains-v2-orbit-one {
  width: 520px;
  height: 520px;
  top: -330px;
  right: -120px;
}

.domains-v2-orbit-two {
  width: 310px;
  height: 310px;
  left: -170px;
  bottom: -185px;
  border-color: rgba(239, 178, 35, .16);
}

.domains-v2-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1260px);
  margin: 0 auto;
}

.domains-v2-header {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .72fr);
  gap: clamp(56px, 7vw, 102px);
  align-items: end;
  margin-bottom: 58px;
}

.domains-v2-kicker {
  margin: 0 0 18px;
  color: #9a6807;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.domains-v2-title-block h2 {
  max-width: 760px;
  margin: 0;
  color: #04162f;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(49px, 5.1vw, 72px);
  line-height: .98;
  letter-spacing: -.042em;
  text-wrap: balance;
}

.domains-v2-intro-block {
  padding: 0 0 6px 30px;
  border-left: 1px solid rgba(10, 35, 72, .18);
}

.domains-v2-intro-block p {
  margin: 0 0 24px;
  color: #4b5c72;
  font-size: 16px;
  line-height: 1.7;
}

.domains-v2-top-link {
  width: fit-content;
  min-height: 46px;
  padding: 0 18px 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(10, 35, 72, .14);
  border-radius: 999px;
  color: #0a2348;
  background: rgba(255, 255, 255, .60);
  box-shadow: 0 10px 28px rgba(7, 27, 57, .05);
  font-size: 12px;
  font-weight: 820;
  transition: transform 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.domains-v2-top-link:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 15px 34px rgba(7, 27, 57, .09);
}

.domains-v2-arrow {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}

.domains-v2-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.domains-v2-card {
  position: relative;
  grid-column: span 4;
  min-height: 290px;
  padding: 30px 30px 28px;
  overflow: hidden;
  border: 1px solid rgba(8, 30, 62, .10);
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 45px rgba(7, 27, 57, .075);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.domains-v2-card:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 100, 188, .23);
  box-shadow: 0 27px 58px rgba(7, 27, 57, .12);
}

.domains-v2-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -62px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(27, 100, 188, .09);
  border-radius: 50%;
  pointer-events: none;
}

.domains-v2-card-primary {
  grid-column: span 7;
  min-height: 354px;
  color: #fff;
  border-color: rgba(255, 255, 255, .08);
  background:
    radial-gradient(circle at 88% 14%, rgba(239, 178, 35, .24), transparent 27%),
    linear-gradient(145deg, #0d315f 0%, #061b37 100%);
  box-shadow: 0 28px 70px rgba(7, 27, 57, .20);
}

.domains-v2-card-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  width: 86px;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: #efb223;
}

.domains-v2-card-primary::after {
  width: 220px;
  height: 220px;
  right: -62px;
  bottom: -92px;
  border-color: rgba(255, 255, 255, .09);
}

.domains-v2-card-warm {
  grid-column: span 5;
  min-height: 354px;
  background:
    radial-gradient(circle at 92% 5%, rgba(239, 178, 35, .17), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(251,244,229,.90));
}

.domains-v2-card-alert {
  background:
    radial-gradient(circle at 96% 4%, rgba(183, 53, 53, .09), transparent 30%),
    rgba(255, 255, 255, .80);
}

.domains-v2-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 40px;
}

.domains-v2-index {
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #1b64bc;
}

.domains-v2-category {
  color: #718096;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .12em;
  text-align: right;
  text-transform: uppercase;
}

.domains-v2-card-primary .domains-v2-index {
  color: #f4c85c;
}

.domains-v2-card-primary .domains-v2-category {
  color: rgba(255,255,255,.58);
}

.domains-v2-card h3 {
  max-width: 520px;
  margin: 0 0 14px;
  color: #071d3a;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(27px, 2.25vw, 36px);
  line-height: 1.04;
  letter-spacing: -.025em;
}

.domains-v2-card-primary h3 {
  color: #fff;
  font-size: clamp(34px, 3.2vw, 48px);
}

.domains-v2-card-text {
  max-width: 600px;
  margin: 0 0 26px;
  color: #58687c;
  font-size: 14px;
  line-height: 1.62;
}

.domains-v2-card-primary .domains-v2-card-text {
  color: rgba(255,255,255,.72);
}

.domains-v2-tags {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.domains-v2-tags li {
  min-height: 34px;
  padding: 8px 13px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(10, 35, 72, .10);
  border-radius: 999px;
  color: #17385f;
  background: rgba(246, 249, 252, .92);
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 720;
}

.domains-v2-card-primary .domains-v2-tags li {
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.075);
}

.domains-v2-card-warm .domains-v2-tags li {
  border-color: rgba(154,104,7,.13);
  background: rgba(255, 250, 239, .92);
}

.domains-v2-footer {
  margin-top: 22px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(8, 30, 62, .09);
  border-radius: 18px;
  background: rgba(255,255,255,.50);
}

.domains-v2-footer p {
  margin: 0;
  color: #526277;
  font-size: 13.5px;
  line-height: 1.55;
}

.domains-v2-footer strong {
  color: #0a2348;
}

.domains-v2-footer a {
  flex: 0 0 auto;
  color: #0a2348;
  font-size: 12px;
  font-weight: 820;
  border-bottom: 1px solid rgba(10,35,72,.28);
  padding-bottom: 3px;
}

@media (max-width: 1050px) {
  .domains-v2 {
    padding: 92px 24px 94px;
  }

  .domains-v2-header {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 46px;
  }

  .domains-v2-intro-block {
    max-width: 720px;
    padding-left: 22px;
  }

  .domains-v2-card-primary,
  .domains-v2-card-warm {
    grid-column: span 12;
  }

  .domains-v2-card {
    grid-column: span 6;
  }

  .domains-v2-card:last-child {
    grid-column: span 12;
  }
}

@media (max-width: 700px) {
  .domains-v2 {
    padding: 70px 16px 74px;
  }

  .domains-v2-title-block h2 {
    font-size: 43px;
    line-height: 1;
  }

  .domains-v2-intro-block {
    padding-left: 0;
    border-left: 0;
  }

  .domains-v2-intro-block p {
    font-size: 15px;
  }

  .domains-v2-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .domains-v2-card,
  .domains-v2-card-primary,
  .domains-v2-card-warm,
  .domains-v2-card:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 24px 20px 23px;
    border-radius: 17px;
  }

  .domains-v2-card-head {
    margin-bottom: 27px;
  }

  .domains-v2-card h3,
  .domains-v2-card-primary h3 {
    font-size: 31px;
  }

  .domains-v2-card-text {
    margin-bottom: 21px;
    font-size: 13.5px;
  }

  .domains-v2-tags {
    gap: 7px;
  }

  .domains-v2-tags li {
    min-height: 32px;
    padding: 7px 11px;
    font-size: 10.8px;
  }

  .domains-v2-footer {
    display: block;
    padding: 21px 20px;
  }

  .domains-v2-footer p {
    margin-bottom: 15px;
  }
}


/* CADRE DU SERVICE V2 — lecture éditoriale avec photographie */
.scope-v2-section {
  position: relative;
  overflow: hidden;
  padding: 110px 32px 118px;
  color: var(--navy);
  background:
    radial-gradient(circle at 88% 12%, rgba(45, 106, 166, .13), transparent 29%),
    radial-gradient(circle at 8% 90%, rgba(239, 178, 35, .11), transparent 25%),
    linear-gradient(145deg, #fbfaf7 0%, #f3f7fa 54%, #f8f3ea 100%);
}

.scope-v2-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(10, 35, 72, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 35, 72, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.scope-v2-glow {
  position: absolute;
  top: -150px;
  right: -190px;
  width: 760px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 218, 126, .22), rgba(255, 218, 126, 0) 68%);
  filter: blur(10px);
  pointer-events: none;
}

.scope-v2-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.scope-v2-heading {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(50px, 6vw, 92px);
  align-items: end;
  margin-bottom: 50px;
}

.scope-v2-kicker {
  margin: 0 0 17px;
  color: var(--gold-deep);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 860;
  letter-spacing: .145em;
  text-transform: uppercase;
}

.scope-v2-heading h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(48px, 4.8vw, 69px);
  line-height: .94;
  letter-spacing: -.045em;
}

.scope-v2-heading h2 span {
  color: #174f87;
}

.scope-v2-intro {
  position: relative;
  padding: 3px 0 3px 29px;
  border-left: 3px solid var(--gold);
}

.scope-v2-intro p {
  margin: 0;
  color: #465970;
  font-size: 16px;
  line-height: 1.68;
}

.scope-v2-intro p + p {
  margin-top: 11px;
  color: #273d59;
  font-weight: 680;
}

.scope-v2-layout {
  display: grid;
  grid-template-columns: minmax(390px, .88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: stretch;
}

.scope-v2-visual {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(390px, 1fr) auto;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(155deg, #0b315f 0%, #061c39 100%);
  border: 1px solid rgba(8, 30, 62, .10);
  box-shadow: 0 30px 72px rgba(7, 27, 57, .17);
}

.scope-v2-image-wrap {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #dce7ed;
}

.scope-v2-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 47%;
  filter: saturate(.82) contrast(1.04);
  transform: scale(1.015);
}

.scope-v2-image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 20, 43, .02) 35%, rgba(3, 20, 43, .70) 100%),
    linear-gradient(90deg, rgba(5, 28, 57, .18), transparent 52%);
  pointer-events: none;
}

.scope-v2-image-label {
  position: absolute;
  left: 24px;
  top: 24px;
  max-width: calc(100% - 48px);
  padding: 13px 16px 14px;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 12px;
  background: rgba(5, 28, 57, .74);
  box-shadow: 0 12px 32px rgba(5, 28, 57, .18);
  backdrop-filter: blur(10px);
}

.scope-v2-image-label span {
  display: block;
  margin-bottom: 4px;
  color: #ffd56e;
  font-size: 9.5px;
  line-height: 1.2;
  font-weight: 860;
  letter-spacing: .13em;
}

.scope-v2-image-label strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
}

.scope-v2-visual figcaption {
  min-height: 148px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: start;
  padding: 30px 30px 31px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255,255,255,.08), transparent 26%),
    linear-gradient(145deg, #0a2d58 0%, #061c39 100%);
}

.scope-v2-caption-line {
  width: 42px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--gold);
}

.scope-v2-visual figcaption p {
  margin: 0;
  color: rgba(247, 251, 255, .86);
  font-size: 15px;
  line-height: 1.62;
}

.scope-v2-commitments {
  min-width: 0;
  padding: 8px 32px 32px;
  border-radius: 24px;
  border: 1px solid rgba(8, 30, 62, .10);
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 30px 72px rgba(7, 27, 57, .12);
  backdrop-filter: blur(14px);
}

.scope-v2-commitment {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 26px 0 25px;
  border-bottom: 1px solid rgba(8, 30, 62, .10);
}

.scope-v2-number {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #174f87;
  background: linear-gradient(145deg, #eef5fa, #dfeaf3);
  border: 1px solid rgba(23, 79, 135, .10);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 9px 24px rgba(7, 27, 57, .08);
}

.scope-v2-commitment h3 {
  margin: 1px 0 8px;
  color: var(--navy-deep);
  font-size: 18px;
  line-height: 1.28;
  font-weight: 830;
}

.scope-v2-commitment p {
  margin: 0;
  color: #4b5d73;
  font-size: 14px;
  line-height: 1.62;
}

.scope-v2-outcome {
  margin-top: 29px;
  padding: 24px 25px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  border-radius: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 4%, rgba(255, 213, 110, .18), transparent 34%),
    linear-gradient(145deg, #123f72 0%, #082a53 100%);
  box-shadow: 0 18px 38px rgba(7, 27, 57, .16);
}

.scope-v2-outcome-label {
  margin: 0 0 7px !important;
  color: #ffd56e !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  font-weight: 860 !important;
  letter-spacing: .14em;
}

.scope-v2-outcome p {
  margin: 0;
  color: rgba(247, 251, 255, .88);
  font-size: 13.5px;
  line-height: 1.55;
}

.scope-v2-outcome a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.42);
  font-size: 11.5px;
  line-height: 1.3;
  font-weight: 820;
  white-space: nowrap;
}

.scope-v2-outcome a span {
  color: #ffd56e;
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 1040px) {
  .scope-v2-section {
    padding: 88px 24px 96px;
  }

  .scope-v2-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .scope-v2-intro {
    max-width: 820px;
  }

  .scope-v2-layout {
    grid-template-columns: 1fr;
  }

  .scope-v2-visual {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
    grid-template-rows: 430px;
  }

  .scope-v2-visual figcaption {
    min-height: 0;
    align-content: center;
  }
}

@media (max-width: 720px) {
  .scope-v2-section {
    padding: 70px 16px 76px;
  }

  .scope-v2-heading {
    gap: 23px;
    margin-bottom: 31px;
  }

  .scope-v2-kicker {
    margin-bottom: 13px;
    font-size: 10.5px;
  }

  .scope-v2-heading h2 {
    font-size: 43px;
    line-height: .98;
  }

  .scope-v2-intro {
    padding-left: 19px;
  }

  .scope-v2-intro p {
    font-size: 14px;
    line-height: 1.6;
  }

  .scope-v2-layout {
    gap: 16px;
  }

  .scope-v2-visual {
    display: block;
    border-radius: 18px;
  }

  .scope-v2-image-wrap {
    min-height: 285px;
    height: 285px;
  }

  .scope-v2-image-label {
    left: 16px;
    top: 16px;
    max-width: calc(100% - 32px);
    padding: 11px 13px 12px;
  }

  .scope-v2-image-label strong {
    font-size: 17px;
  }

  .scope-v2-visual figcaption {
    min-height: 0;
    grid-template-columns: 32px 1fr;
    gap: 13px;
    padding: 23px 20px 24px;
  }

  .scope-v2-caption-line {
    width: 32px;
  }

  .scope-v2-visual figcaption p {
    font-size: 13.5px;
  }

  .scope-v2-commitments {
    padding: 4px 19px 20px;
    border-radius: 18px;
  }

  .scope-v2-commitment {
    grid-template-columns: 42px 1fr;
    gap: 13px;
    padding: 22px 0 21px;
  }

  .scope-v2-number {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .scope-v2-commitment h3 {
    margin-bottom: 7px;
    font-size: 16px;
  }

  .scope-v2-commitment p {
    font-size: 13px;
    line-height: 1.56;
  }

  .scope-v2-outcome {
    margin-top: 20px;
    padding: 20px;
    display: block;
  }

  .scope-v2-outcome a {
    margin-top: 17px;
  }
}
