/* =========================================================
   Concept GRC — Design system
   Cabinet-conseil en sécurité de l'information, gouvernance,
   conformité et gestion des risques.
   ========================================================= */

/* Self-hosted fonts (no third-party requests to Google) */
@font-face{
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/roboto-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face{
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../assets/fonts/open-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face{
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../assets/fonts/open-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root{
  --ink:        #101315;
  --ink-soft:   #3b4448;
  --white:      #ffffff;
  --paper:      #f7f8f8;
  --blue:       #376386;
  --blue-dark:  #24435c;
  --blue-tint:  #eef2f4;
  --sage:       #bac6ca;
  --sage-tint:  #f2f4f4;
  --line:       #dde2e3;

  --serif: "Roboto", "Segoe UI", Helvetica, Arial, sans-serif;
  --sans:  "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1180px;
  --pad: clamp(20px, 4vw, 56px);
}

*, *::before, *::after{ box-sizing: border-box; }
@media (prefers-reduced-motion: no-preference){
  html{ scroll-behavior: smooth; }
}
body{
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,p{ margin: 0; }

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

h1, h2, h3, .font-serif{ font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }

.eyebrow{
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow.center{ justify-content: center; }

.lede{
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary{ background: var(--ink); color: var(--white); }
.btn-primary:hover{ background: var(--blue-dark); }
.btn-outline{ background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover{ background: var(--ink); color: var(--white); }
.btn-ghost{ background: transparent; color: var(--blue); padding: 14px 4px; }
.btn-ghost svg{ transition: transform .2s ease; }
.btn-ghost:hover svg{ transform: translateX(4px); }
.btn-on-dark.btn-outline{ color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-on-dark.btn-outline:hover{ background: var(--white); color: var(--ink); }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo{ display: block; width: auto; }
.brand-logo--header{ height: 72px; }
.brand-logo--footer{ height: 64px; }

.main-nav{ display: flex; align-items: center; gap: 40px; }
.main-nav > ul{ display: flex; gap: 34px; }
.main-nav a{
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover{ color: var(--ink); }
.main-nav a.active{ color: var(--ink); }
.main-nav a.active::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--blue);
}
.nav-cta{ display: flex; align-items: center; gap: 26px; }

/* ---------- Dropdown nav ---------- */
.has-dropdown{ position: relative; }
.nav-link-btn{
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 6px 0;
}
.nav-link-btn svg{ width: 10px; height: 10px; transition: transform .2s ease; }
.has-dropdown:hover .nav-link-btn,
.has-dropdown.open .nav-link-btn,
.has-dropdown:focus-within .nav-link-btn{ color: var(--ink); }
.has-dropdown:hover .nav-link-btn svg,
.has-dropdown.open .nav-link-btn svg,
.has-dropdown:focus-within .nav-link-btn svg{ transform: rotate(180deg); }
.has-dropdown.active .nav-link-btn{ color: var(--ink); }
.dropdown-panel{
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px -16px rgba(16,19,21,.18);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 200;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown.open .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel{
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-panel a{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 2px;
}
.dropdown-panel a:hover{ background: var(--paper); }
.dropdown-panel .d-ic{
  width: 34px; height: 34px; flex: none;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.dropdown-panel .d-ic svg{ width: 17px; height: 17px; }
.dropdown-panel strong{ display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.dropdown-panel span{ display: block; font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }

.nav-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 34px; height: 34px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span{ height: 2px; background: var(--ink); border-radius: 1px; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,.72);
  padding: 48px 0 24px;
}
.footer-top{
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-brand p{ margin-top: 18px; max-width: 34ch; font-size: 15px; color: rgba(255,255,255,.6); }
.footer-col h4{
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.footer-col li{ margin-bottom: 12px; }
.footer-col a{ font-size: 15px; color: rgba(255,255,255,.78); }
.footer-col a:hover{ color: var(--white); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ---------- Sections ---------- */
section{ position: relative; }
.section{ padding: 112px 0; }
.section-tight{ padding: 72px 0; }
.section-head{
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(30px, 3.4vw, 42px); margin-top: 18px; }
.bg-paper{ background: var(--paper); }
.bg-ink{ background: var(--ink); color: rgba(255,255,255,.82); }
.bg-ink h1, .bg-ink h2, .bg-ink h3{ color: var(--white); }
.bg-sage{ background: var(--sage-tint); }
.bg-blue{ background: var(--blue); color: rgba(255,255,255,.9); }
.bg-blue h1, .bg-blue h2, .bg-blue h3{ color: var(--white); }

.divider{ height: 1px; background: var(--line); border: none; margin: 0; }

/* ---------- Hero ---------- */
.hero{ padding: 88px 0 100px; }
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}
.hero h1{
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.08;
  margin-top: 22px;
}
.hero .lede{ margin-top: 24px; max-width: 50ch; }
.hero-actions{ display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats{
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat b{
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--blue-dark);
}
.stat span{ font-size: 13.5px; color: var(--ink-soft); }

.hero-visual{ position: relative; overflow: hidden; border-radius: 6px; }
.hero-img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  animation: heroImgReveal 1.1s cubic-bezier(.22,.68,0,1.2) both;
  transition: transform 0.6s ease;
}
.hero-img:hover{ transform: scale(1.03); }
@keyframes heroImgReveal{
  from{ opacity: 0; transform: scale(1.06) translateY(12px); }
  to{   opacity: 1; transform: scale(1)   translateY(0);     }
}

/* ---------- Framework diagram (custom SVG, no cyber clichés) ---------- */
.diagram-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px;
  box-shadow: 0 30px 60px -30px rgba(16, 19, 21, .25);
}
.diagram-card svg{ width: 100%; height: auto; display: block; }

/* ---------- Value prop / intro ---------- */
.intro-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.intro-grid .lede{ max-width: 40ch; }
.intro-list{ display: grid; gap: 28px; }
.intro-list li{
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.intro-list li:last-child{ border-bottom: none; padding-bottom: 0; }
.intro-list .num{ font-family: var(--serif); font-size: 17px; color: var(--sage); }
.intro-list h4{ font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.intro-list p{ font-size: 15.5px; color: var(--ink-soft); }

/* ---------- Service cards ---------- */
.service-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card{
  background: var(--white);
  padding: 40px 34px;
}
.service-card .idx{
  font-family: var(--serif);
  font-size: 14px;
  color: var(--sage);
  display: block;
  margin-bottom: 52px;
}
.service-card h3{ font-size: 19px; margin-top: 0; margin-bottom: 10px; }
.service-card p{ font-size: 15px; color: var(--ink-soft); }
.service-card .tag{
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ---------- Sector cards ---------- */
.sector-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sector-card{
  border: 1px solid var(--line);
  padding: 32px 26px;
  background: var(--white);
  transition: border-color .2s ease, transform .2s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sector-card:hover{ border-color: var(--blue); transform: translateY(-3px); }
.sector-card .glyph{ width: 40px; height: 40px; margin-bottom: 22px; color: var(--blue); }
.sector-card h3{ font-size: 18px; margin-bottom: 10px; }
.sector-card p{ font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Results / measurable benefits ---------- */
.results-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.result-item{ border-left: 2px solid rgba(255,255,255,.25); padding-left: 22px; }
.result-item b{
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  color: var(--white);
  margin-bottom: 10px;
}
.result-item p{ font-size: 14.5px; color: rgba(255,255,255,.68); }

/* ---------- Approach / method steps ---------- */
.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.step{
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--line);
}
.step:last-child{ border-right: none; }
.step .step-no{
  font-family: var(--serif);
  font-size: 15px;
  color: var(--blue);
  margin-bottom: 20px;
}
.step h4{ font-size: 17px; margin-bottom: 10px; }
.step p{ font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Quote / testimonial style band ---------- */
.statement{
  max-width: 100%;
}
.statement p{
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--ink);
}
.statement cite{
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------- Media + text ---------- */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.reverse .split-media{ order: 2; }
.split-media img, .split-media .frame{
  width: 100%;
  aspect-ratio: 4/3.1;
  object-fit: cover;
  border-radius: 2px;
}
.split-media{ position: relative; }
.split-media .frame-photo{
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.split-media .frame-photo img{
  filter: grayscale(1) contrast(1.05);
  mix-blend-mode: luminosity;
}
.split-media .frame-photo::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(55,99,134,.62), rgba(16,19,21,.55));
  mix-blend-mode: multiply;
}
.split-media .tag-chip{
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(255,255,255,.94);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  z-index: 2;
}
.split h2{ font-size: clamp(26px, 3vw, 34px); margin-top: 16px; }
.split p{ color: var(--ink-soft); margin-top: 18px; font-size: 16px; }
.split ul{ margin-top: 24px; display: grid; gap: 12px; }
.split ul li{
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--ink-soft);
}
.split ul li svg{ flex: none; margin-top: 3px; color: var(--blue); }

/* ---------- Values grid ---------- */
.values-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.value-card{ padding-top: 26px; border-top: 2px solid var(--blue); }
.value-card h3{ font-size: 18px; margin-bottom: 10px; }
.value-card p{ font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Certifications strip ---------- */
.cert-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.cert-badges img{
  height: 130px;
  width: 130px;
  object-fit: contain;
  flex: none;
}
@media (max-width: 600px){
  .cert-badges img{ height: 90px; width: 90px; }
}

/* ---------- Network / partners ---------- */
.partners-row{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.partner-chip{
  background: var(--white);
  padding: 30px 18px;
  text-align: center;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}

/* ---------- CTA band ---------- */
.cta-band{
  padding: 96px 0;
  background: var(--blue-dark);
  color: var(--white);
}
.cta-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2{ font-size: clamp(22px, 2.4vw, 30px); color: var(--white); max-width: 34ch; }
.cta-inner p{ color: rgba(255,255,255,.68); margin-top: 14px; max-width: 42ch; }
.cta-actions{ display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Page header (interior pages) ---------- */
.page-header{
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}
.page-header h1{ font-size: clamp(34px, 4vw, 48px); margin-top: 18px; }
.page-header .lede{ margin-top: 20px; }

.ph-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 4px;
}
.ph-visual{
  border-radius: 6px;
  overflow: hidden;
}
.ph-img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}
@media (max-width: 768px){
  .ph-inner{ grid-template-columns: 1fr; }
  .ph-visual{ order: -1; }
}
.breadcrumb{ font-size: 13px; color: var(--ink-soft); margin-bottom: 4px; }
.breadcrumb a{ color: var(--blue); }

/* ---------- Contact ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}
.contact-card{
  border: 1px solid var(--line);
  padding: 40px;
}
.contact-card h3{ font-size: 20px; margin-bottom: 6px; }
.contact-card p{ color: var(--ink-soft); font-size: 15px; margin-bottom: 28px; }
.contact-row{
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contact-row:first-of-type{ border-top: none; }
.contact-row svg{ color: var(--blue); flex: none; margin-top: 2px; }
.contact-row b{ display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 4px; }
.contact-row a, .contact-row span{ font-size: 15.5px; }

.form-field{ margin-bottom: 20px; }
.form-field label{ display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--ink-soft); }
.form-field input, .form-field select, .form-field textarea{
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 15px;
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline: none;
  border-color: var(--blue);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note{ font-size: 12.5px; color: var(--ink-soft); margin-top: 14px; }

/* ---------- Utilities ---------- */
.mt-0{ margin-top: 0 !important; }
.text-center{ text-align: center; }
/* Visible by default (no-JS safe). JS opts elements into the hidden
   pre-state just before animating them in, so content never depends
   on JavaScript to become visible. */
.reveal{ transition: opacity .7s ease, transform .7s ease; }
.reveal.reveal-pending{ opacity: 0; transform: translateY(18px); }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ---------- Products page ---------- */
.product-block{ padding: 96px 0; }
.product-block + .product-block{ border-top: 1px solid var(--line); }
.product-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.product-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.product-badge.own{ border-color: var(--blue); color: var(--blue); background: var(--blue-tint); }
.product-badge.partner{ border-color: var(--sage); color: var(--blue-dark); background: var(--sage-tint); }
.product-badge .dot{ width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.ciso-logo{ height: 56px; width: auto; display: block; }

.product-intro{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}
.product-intro h2{ font-size: clamp(28px, 3.2vw, 38px); margin-top: 14px; }
.product-intro .lede{ margin-top: 18px; max-width: none; }
.product-meta{
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--paper);
}
.product-meta dl{ display: grid; gap: 16px; }
.product-meta .row{ display: grid; grid-template-columns: 40% 1fr; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.product-meta .row:last-child{ border-bottom: none; padding-bottom: 0; }
.product-meta dt{ font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); }
.product-meta dd{ margin: 0; font-size: 14.5px; color: var(--ink); font-weight: 500; }

.feature-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 56px;
}
.feature-item{ background: var(--white); padding: 28px 24px; }
.feature-item .fnum{ font-family: var(--serif); font-size: 13px; color: var(--sage); margin-bottom: 16px; }
.feature-item h4{ font-size: 15.5px; margin-bottom: 8px; }
.feature-item p{ font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Boussole PRP pricing table ---------- */
.boussole-pricing{ margin: 56px 0 0; overflow-x: auto; }
.bp-table{ min-width: 680px; }

.bp-head{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
}
.bp-feature-col{ background: transparent; }
.bp-plan{
  background: var(--paper);
  border: 1px solid var(--line);
  border-right: none;
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
}
.bp-plan:last-child{ border-right: 1px solid var(--line); }
.bp-plan--highlight{
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.bp-recommended{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.bp-plan-name{ font-family: var(--serif); font-size: 22px; font-weight: 400; color: inherit; }
.bp-plan--highlight .bp-plan-name{ color: var(--white); }
.bp-plan-desc{ font-size: 12.5px; color: var(--ink-soft); margin: 8px 0 16px; line-height: 1.4; }
.bp-plan--highlight .bp-plan-desc{ color: rgba(255,255,255,.6); }
.bp-plan-price{ font-family: var(--serif); font-size: 26px; font-weight: 400; margin-bottom: 20px; color: inherit; }
.bp-plan-price small{ display: block; font-family: var(--sans); font-size: 12px; font-weight: 500; color: var(--ink-soft); margin-top: 2px; }
.bp-plan--highlight .bp-plan-price small{ color: rgba(255,255,255,.55); }
.bp-btn{ width: 100%; text-align: center; font-size: 13px; padding: 10px 14px; }

.bp-section-label{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  background: var(--sage-tint);
  border: 1px solid var(--line);
  border-top: none;
  padding: 8px 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  grid-column: 1 / -1;
}
.bp-row{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  border: 1px solid var(--line);
  border-top: none;
}
.bp-row--last{ border-bottom: 1px solid var(--line); }
.bp-feat{
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--ink);
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
}
.bp-cell{
  padding: 14px 12px;
  text-align: center;
  font-size: 14px;
  color: var(--sage);
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bp-cell:last-child{ border-right: none; }
.bp-cell--hl{ background: rgba(16,19,21,.04); }
.bp-cell--text{ font-size: 12px; color: var(--ink-soft); line-height: 1.4; }
.bp-cell--cta{ font-size: 12px; font-weight: 600; color: var(--blue); line-height: 1.4; }

@media (max-width: 768px){ .boussole-pricing{ margin: 40px -20px 0; } }

.frameworks-row{ display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 56px; }
.fw-chip{ border: 1px solid var(--line); padding: 9px 16px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }

/* Pricing table */
.pricing-note{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 18px 22px;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.pricing-note svg{ flex: none; margin-top: 2px; color: var(--blue); }
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price-card{
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.price-card.featured{ border-color: var(--blue); box-shadow: 0 24px 48px -24px rgba(55,99,134,.35); }
.price-card-head{ padding: 26px 24px 22px; border-bottom: 1px solid var(--line); }
.price-card.featured .price-card-head{ background: var(--blue); }
.price-card.featured .price-card-head *{ color: var(--white); }
.price-card-head .plan{ font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); }
.price-card.featured .price-card-head .plan{ color: rgba(255,255,255,.85); }
.price-card-head .price{ font-family: var(--serif); font-size: 30px; margin-top: 10px; color: var(--ink); }
.price-card-head .price small{ font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink-soft); }
.price-card.featured .price-card-head .price small{ color: rgba(255,255,255,.75); }
.price-card-head .price-desc{ font-size: 13px; color: var(--ink-soft); margin-top: 8px; }
.price-card-body{ padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.price-card-body ul{ display: grid; gap: 12px; margin-bottom: 22px; }
.price-card-body li{ display: flex; gap: 10px; font-size: 13.5px; color: var(--ink-soft); align-items: flex-start; }
.price-card-body li svg{ flex: none; margin-top: 3px; color: var(--blue); }
.price-card-body .btn{ margin-top: auto; justify-content: center; width: 100%; }

/* ---------- Pro sur site — mini price slider ---------- */
.pro-slider{
  margin-top: 20px;
  user-select: none;
}
.pro-slider-track{
  position: relative;
  height: 3px;
  background: var(--line);
  border-radius: 3px;
  margin-bottom: 12px;
  cursor: pointer;
}
.pro-slider-fill{
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--blue);
  border-radius: 3px;
  width: 0%;
  transition: width 0.28s cubic-bezier(.4,0,.2,1);
}
.pro-slider-handle{
  position: absolute;
  top: 50%;
  left: 0%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--blue);
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
  transform: translate(-50%, -50%);
  cursor: grab;
  transition: left 0.28s cubic-bezier(.4,0,.2,1);
  z-index: 2;
}
.pro-slider-handle:hover{ box-shadow: 0 0 0 5px rgba(55,99,134,.18); }
.pro-slider-handle:active{ cursor: grabbing; }
.pro-slider-handle:focus-visible{ outline: 2px solid var(--blue); outline-offset: 3px; }
.pro-slider-stops{
  display: flex;
  justify-content: space-between;
}
.pro-stop{
  background: none;
  border: none;
  padding: 0;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--sage);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.pro-stop:hover{ color: var(--ink-soft); }
.pro-stop--active{ color: var(--blue); }

/* Animate price on change */
#proPrix{ transition: opacity 0.12s ease; }

/* ---------- Price slider (CISO Assistant) ---------- */
.price-slider-block{
  margin-top: 48px;
  background: var(--ink);
  border-radius: 10px;
  padding: 56px 56px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  color: var(--white);
}

.psb-left{ display: flex; flex-direction: column; }
.psb-tier{
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 14px;
  margin-bottom: 12px;
  transition: opacity 0.15s ease;
}
.psb-price-row{ display: flex; align-items: baseline; gap: 8px; line-height: 1; }
.psb-amount{
  font-family: var(--serif);
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 500;
  color: var(--white);
  transition: opacity 0.12s ease, transform 0.15s ease;
}
.psb-amount.is-changing{ opacity: 0; transform: translateY(-6px); }
.psb-currency{ font-family: var(--serif); font-size: 36px; font-weight: 400; color: rgba(255,255,255,.6); }
.psb-period{ font-size: 13px; color: rgba(255,255,255,.45); margin-top: 10px; }
.psb-desc{ font-size: 14px; color: rgba(255,255,255,.55); margin-top: 18px; line-height: 1.5; min-height: 40px; transition: opacity 0.15s ease; }
.psb-cta{ margin-top: 32px; align-self: flex-start; }
.psb-note{ font-size: 12px; color: rgba(255,255,255,.3); margin-top: 20px; line-height: 1.55; }

/* Right column */
.psb-right{ display: flex; flex-direction: column; gap: 36px; }

/* Track */
.psb-track-area{ display: flex; flex-direction: column; gap: 0; }
.psb-track{
  position: relative;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 3px;
  margin: 0 0 32px;
}
.psb-fill{
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--blue);
  border-radius: 3px;
  width: 0%;
  transition: width 0.3s cubic-bezier(.4,0,.2,1);
}
.psb-handle{
  position: absolute;
  top: 50%;
  left: 0%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  transform: translate(-50%, -50%);
  cursor: grab;
  transition: left 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.15s ease;
  z-index: 2;
}
.psb-handle:hover{ box-shadow: 0 0 0 6px rgba(55,99,134,.35); }
.psb-handle:active{ cursor: grabbing; box-shadow: 0 0 0 8px rgba(55,99,134,.4); }
.psb-handle:focus-visible{ outline: 2px solid var(--blue); outline-offset: 3px; }

/* Stop buttons */
.psb-stops{
  display: flex;
  justify-content: space-between;
}
.psb-stop{
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.4);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.psb-stop:hover{ color: rgba(255,255,255,.7); }
.psb-stop--active{ color: var(--white); }
.psb-dot{
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.2);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.psb-stop--active .psb-dot{ background: var(--blue); border-color: var(--blue); }

/* Features list */
.psb-features{ display: grid; gap: 12px; }
.psb-feat{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,.6);
}
.psb-feat svg{ flex: none; margin-top: 2px; color: var(--sage); }

@media (max-width: 860px){
  .price-slider-block{
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 40px;
  }
}
@media (max-width: 480px){
  .price-slider-block{ padding: 32px 24px; }
  .psb-stop .psb-label{ font-size: 11px; }
}

/* ---------- Legal / policy content ---------- */
.legal-content{ max-width: 760px; }
.legal-content .updated{ font-size: 13.5px; color: var(--ink-soft); margin-bottom: 40px; }
.legal-content h2{
  font-size: 22px;
  margin-top: 48px;
  margin-bottom: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal-content h2:first-of-type{ margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h2 .num{ color: var(--blue); font-family: var(--sans); font-size: 14px; font-weight: 700; margin-right: 10px; }
.legal-content p{ font-size: 15.5px; color: var(--ink-soft); margin-bottom: 14px; }
.legal-content ul{ margin: 0 0 14px; display: grid; gap: 8px; }
.legal-content li{ font-size: 15.5px; color: var(--ink-soft); padding-left: 20px; position: relative; }
.legal-content li::before{ content: "—"; position: absolute; left: 0; color: var(--blue); }
.legal-content a{ color: var(--blue); font-weight: 600; }
.legal-content strong{ color: var(--ink); }

/* Partners page */
.partner-hero-strip{ display: flex; flex-wrap: wrap; gap: 10px; }
.partner-category{ margin-bottom: 56px; }
.partner-category:last-child{ margin-bottom: 0; }
.partner-cat-label{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.partner-cat-label svg{ flex: none; }
.partner-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.partner-card{
  border: 1px solid var(--line);
  background: var(--white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.partner-card .partner-logo{
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}
.partner-card .partner-logo img{ max-height: 44px; max-width: 80px; width: auto; object-fit: contain; flex: none; }
.partner-card .p-name{
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.partner-card .p-mark{
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}
.partner-card .p-cat{ font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }
.partner-card .p-desc-box{
  flex: 1;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 16px;
}
.partner-card .p-desc-box p{ font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
.partner-card a.visit{ font-size: 13px; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.partner-card.placeholder{ border-style: dashed; align-items: center; justify-content: center; text-align: center; color: var(--ink-soft); gap: 8px; }
.partner-card.placeholder .p-cat{ color: var(--ink-soft); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px){
  .service-grid, .sector-grid, .results-grid, .steps, .values-grid, .partners-row,
  .feature-grid, .pricing-grid, .partner-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-top{ grid-template-columns: 1fr 1fr; }
  .step{ border-right: none; border-bottom: 1px solid var(--line); padding: 28px 0; }
  .product-intro{ grid-template-columns: 1fr; }
}

@media (max-width: 900px){
  .main-nav{
    display: none;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--pad) 24px;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }
  .main-nav.nav-open{ display: flex; }
  .main-nav > ul{ flex-direction: column; gap: 0; }
  .main-nav > ul > li{ border-bottom: 1px solid var(--line); }
  .main-nav a, .nav-link-btn{ padding: 16px 0; width: 100%; justify-content: space-between; }
  .nav-cta{ gap: 14px; }
  .nav-cta .btn-primary{ padding: 11px 16px; font-size: 13px; }
  .nav-toggle{ display: flex; }
  .brand-logo--header{ height: 42px; }
  .has-dropdown .dropdown-panel{
    position: static !important;
    opacity: 1 !important; visibility: visible !important; transform: none !important;
    left: auto; top: auto;
    width: auto; box-shadow: none; border: none;
    padding: 0 0 12px;
    display: none;
  }
  .has-dropdown.mobile-open .dropdown-panel{ display: block; }
  .has-dropdown.mobile-open .nav-link-btn svg{ transform: rotate(180deg); }
  .hero-grid, .intro-grid, .split{ grid-template-columns: 1fr; }
  .split-media{ order: -1 !important; }
  .contact-grid{ grid-template-columns: 1fr; }
  .hero-stats{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px){
  .service-grid, .sector-grid, .results-grid, .steps, .values-grid, .partners-row,
  .feature-grid, .pricing-grid, .partner-grid{ grid-template-columns: 1fr; }
  .section{ padding: 72px 0; }
  .form-row{ grid-template-columns: 1fr; }
  .cta-inner{ flex-direction: column; align-items: flex-start; }
  .footer-top{ grid-template-columns: 1fr; gap: 40px; }
  .product-meta .row{ grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 420px){
  .brand-logo--header{ height: 36px; }
  .nav-cta{ gap: 10px; }
  .nav-cta .btn-primary{ padding: 10px 12px; font-size: 12px; }
}
