:root {
  --blue: #0071e3;
  --blue-dark: #0058b0;
  --ink: #1d1d1f;
  --ink-soft: #3d3d3f;
  --ink-mute: #6e6e73;
  --paper: #ffffff;
  --paper-2: #f5f5f7;
  --border: #d2d2d7;
  --green: #22c55e;
  --yellow: #f59e0b;
  --navy: #0d1f3c;
  --font: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.section {
  padding: 80px 0;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  color: var(--blue);
}

.section-subtitle {
  font-size: 16px;
  color: var(--ink-mute);
  line-height: 1.6;
  max-width: 560px;
}

/* ── NAV ─────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav__logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav__logo span.kip {
  color: var(--ink);
}

.nav__logo span.safe {
  color: var(--blue);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--blue);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  border-radius: 980px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: var(--paper);
  border-color: var(--blue);
}

.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn--ghost:hover {
  background: rgba(0,113,227,0.06);
}

.btn--lg {
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 980px;
}

.btn--white {
  background: var(--paper);
  color: var(--blue);
  border-color: var(--paper);
}

.btn--white:hover {
  background: rgba(255,255,255,0.9);
}

.btn--white-outline {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.5);
}

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

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 14px 12px;
  margin: -10px -8px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__drawer {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--paper);
  z-index: 999;
  padding: 32px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.nav__drawer.is-open {
  display: flex;
}

.nav__drawer a {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}

.nav__drawer a:hover {
  color: var(--blue);
}

.nav__drawer .btn--primary {
  margin-top: 24px;
  border-radius: 980px;
  text-align: center;
  font-size: 16px;
  padding: 14px 28px;
}

/* ── HERO ────────────────────────────────────────── */

.hero {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  text-align: center;
  padding: 80px 0 0;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.07;
  margin-bottom: 24px;
}

.hero h1 .line1 {
  color: var(--ink);
  display: block;
}

.hero h1 .line2 {
  color: var(--blue);
  display: block;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--ink-mute);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero__stat {
  padding: 28px 20px;
  text-align: center;
}

.hero__stat:not(:last-child) {
  border-right: 1px solid var(--border);
}

.hero__stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-label {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.4;
}

/* ── LOGOS BAR ───────────────────────────────────── */

.logos-bar {
  background: var(--paper-2);
  padding: 20px 40px;
}

.logos-bar__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logos-bar__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
  flex-shrink: 0;
}

.logos-bar__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.logos-bar__pill {
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 5px 14px;
  font-size: 12px;
  color: var(--ink-mute);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── SERVICES ────────────────────────────────────── */

.services {
  background: var(--paper);
}

.services__header {
  margin-bottom: 48px;
}

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

.service-card {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  background: var(--paper);
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(0,113,227,0.1);
}

.service-card--featured {
  background: var(--navy);
  border-color: transparent;
  color: var(--paper);
}

.service-card--featured:hover {
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 6px 32px rgba(0,0,0,0.3);
}

.service-card__num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.service-card--featured .service-card__num {
  color: rgba(255,255,255,0.4);
}

.service-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.service-card--featured .service-card__icon {
  background: rgba(255,255,255,0.1);
}

.service-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.service-card--featured .service-card__title {
  color: var(--paper);
}

.service-card__desc {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.5;
  flex: 1;
}

.service-card--featured .service-card__desc {
  color: rgba(255,255,255,0.6);
}

.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.service-card:hover .service-card__link {
  gap: 8px;
}

.service-card--featured .service-card__link {
  color: rgba(255,255,255,0.7);
}

/* ── WHY KIPSAFE ─────────────────────────────────── */

.why {
  background: var(--paper-2);
}

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.why__checklist {
  background: var(--paper);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why__check-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.why__check-item:last-child {
  border-bottom: none;
}

.why__check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.why__check-content {}

.why__check-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}

.why__check-sub {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
}

.why__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.why__heading {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
}

.why__points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why__point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why__point-num {
  width: 32px;
  height: 32px;
  background: var(--blue);
  color: var(--paper);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.why__point-content {}

.why__point-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.why__point-desc {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* ── PROCESS ─────────────────────────────────────── */

.process {
  background: var(--paper);
  text-align: center;
}

.process__header {
  margin-bottom: 60px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.process__step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.process__step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.process__step-desc {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* ── TESTIMONIALS ────────────────────────────────── */

.testimonials {
  background: var(--navy);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 16px;
}

.testimonials__title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--paper);
}

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

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card__stars {
  color: var(--blue);
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--paper);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);
  line-height: 1.2;
}

.testimonial-card__role {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── FAQ ─────────────────────────────────────────── */

.faq {
  background: var(--paper);
}

.faq__inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s ease;
}

.faq__question:hover {
  background: var(--paper-2);
}

.faq__question.is-open {
  color: var(--blue);
}

.faq__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--ink-mute);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.faq__question.is-open .faq__icon {
  transform: rotate(45deg);
  border-color: var(--blue);
  color: var(--blue);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__answer.is-open {
  max-height: 400px;
}

.faq__answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.65;
}

/* ── CTA BAND ────────────────────────────────────── */

.cta-band {
  background: var(--blue);
  padding: 72px 0;
  text-align: center;
}

.cta-band h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 12px;
}

.cta-band__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

.cta-band__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ──────────────────────────────────────── */

.footer {
  background: #07111f;
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  display: block;
}

.footer__logo .kip {
  color: var(--paper);
}

.footer__logo .safe {
  color: var(--blue);
}

.footer__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 260px;
}

.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: rgba(255,255,255,0.8);
}

.footer__contact-item {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer__contact-item a {
  color: var(--blue);
  transition: color 0.2s ease;
}

.footer__contact-item a:hover {
  color: #60a5fa;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer__phone {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
}

/* ── FLOATING CTA ────────────────────────────────── */

.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.float-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.float-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--paper);
  border-radius: 980px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,113,227,0.35);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.float-cta a:hover {
  background: var(--blue-dark);
  box-shadow: 0 6px 28px rgba(0,113,227,0.45);
}

/* ── RESPONSIVE ──────────────────────────────────── */

@media (max-width: 768px) {
  .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 26px;
  }

  /* Nav */
  .nav__links {
    display: none;
  }

  .nav__right .btn--primary {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero h1 {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__stat:nth-child(2) {
    border-right: none;
  }

  .hero__stat:nth-child(1),
  .hero__stat:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  /* Logos */
  .logos-bar {
    padding: 16px 20px;
  }

  .logos-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* Why */
  .why__inner {
    grid-template-columns: 1fr;
  }

  .why__heading {
    font-size: 26px;
  }

  /* Process */
  .process__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process__steps::before {
    display: none;
  }

  .process__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Float CTA */
  .float-cta {
    bottom: 16px;
    right: 16px;
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .cta-band__buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ── LOGO IMAGES (nav + footer) ─────────────────────── */
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.footer__logo-img {
  height: 30px;
  width: auto;
  display: block;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .nav__logo-img { height: 34px; }
}

/* ═══════════════════════════════════════════════════
   ENRICHISSEMENT VISUEL — hero photo, brands, icônes
   ═══════════════════════════════════════════════════ */

/* ── HERO SPLIT ── */
.hero--split {
  text-align: left;
  padding: 72px 0 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 64px;
}
.hero--split .hero__subtitle {
  margin-left: 0;
  margin-right: 0;
}
.hero--split .hero__ctas {
  justify-content: flex-start;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 26px;
}
.hero__trust span {
  font-size: 13px;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero__trust span::before {
  content: "\2713";
  color: var(--green);
  font-weight: 700;
}

/* Visuel hero + badges flottants */
.hero__visual {
  position: relative;
}
.hero__photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(13, 31, 60, 0.18);
  display: block;
}
.hero__badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(13, 31, 60, 0.16);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero__badge--soc {
  top: 22px;
  left: -26px;
}
.hero__badge--clients {
  bottom: 26px;
  right: -18px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.hero__badge--clients strong {
  font-size: 14px;
  font-weight: 700;
}
.hero__badge-stars {
  color: #f5b301;
  font-size: 12px;
  letter-spacing: 2px;
}

/* Pastille "live" pulsante */
.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-ring 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  70%  { box-shadow: 0 0 0 11px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ── BARRE TECHNOS PARTENAIRES ── */
.logos-bar__brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 40px;
}
.brand {
  font-size: 17px;
  color: #93939a;
  transition: color 0.2s;
  cursor: default;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand--fortinet { font-weight: 800; letter-spacing: 0.06em; }
.brand--fortinet .f-tinet {
  display: inline-block;
  transform: rotate(90deg) translateX(-1px);
  font-weight: 800;
}
.brand--paloalto { font-weight: 600; gap: 6px; }
.brand--paloalto small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  align-self: flex-end;
  margin-bottom: 2px;
}
.brand--vmware { font-weight: 400; }
.brand--vmware b { font-weight: 800; }
.brand--veeam { font-weight: 800; letter-spacing: 0.05em; }
.brand--stormshield { font-weight: 700; letter-spacing: 0.04em; font-size: 15px; }
.brand--microsoft { font-weight: 600; gap: 8px; }
.ms-logo {
  width: 15px;
  height: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
}
.ms-logo i { background: #93939a; transition: background 0.2s; }
.brand--microsoft:hover .ms-logo i:nth-child(1) { background: #f25022; }
.brand--microsoft:hover .ms-logo i:nth-child(2) { background: #7fba00; }
.brand--microsoft:hover .ms-logo i:nth-child(3) { background: #00a4ef; }
.brand--microsoft:hover .ms-logo i:nth-child(4) { background: #ffb900; }
.brand--promisec {
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.05em;
  gap: 8px;
}
.brand--promisec em {
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff;
  border-radius: 4px;
  padding: 3px 6px;
}

/* ── ICÔNES SERVICES (SVG) ── */
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eaf2fe;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__icon svg {
  width: 24px;
  height: 24px;
}
.service-card--featured .service-card__icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* ── SECTION POURQUOI : PHOTO ── */
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "media right"
    "list  list";
  gap: 48px;
  align-items: stretch;
}
.why__media    { grid-area: media; position: relative; }
.why__right    { grid-area: right; }
.why__checklist {
  grid-area: list;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.why__photo {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.why__photo-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(13, 31, 60, 0.18);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.why__photo-badge strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.why__photo-badge small {
  font-size: 12px;
  color: var(--ink-mute);
}
.why__check-item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
}

/* ── AVATARS TÉMOIGNAGES ── */
.testimonial-card__avatar {
  color: #fff !important;
}
.testimonial-card:nth-child(1) .testimonial-card__avatar {
  background: linear-gradient(135deg, #0071e3, #00c6fb);
}
.testimonial-card:nth-child(2) .testimonial-card__avatar {
  background: linear-gradient(135deg, #7c3aed, #db2777);
}
.testimonial-card:nth-child(3) .testimonial-card__avatar {
  background: linear-gradient(135deg, #059669, #22c55e);
}

/* ── CTA BAND : PHOTO DE FOND ── */
.cta-band {
  position: relative;
  background-image: url("../assets/img/cta-servers.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 74, 148, 0.94) 0%, rgba(0, 113, 227, 0.88) 100%);
}
.cta-band .wrapper {
  position: relative;
  z-index: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__photo { height: 380px; }
  .hero__badge--soc { left: 14px; }
  .hero__badge--clients { right: 14px; }
  .why__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "right" "list";
  }
  .why__photo { min-height: 300px; height: 300px; }
  .why__checklist { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero__photo { height: 300px; border-radius: 18px; }
  .hero__badge { font-size: 12px; padding: 10px 14px; }
  .why__checklist { grid-template-columns: 1fr; }
  .logos-bar__brands { gap: 12px 26px; }
  .brand { font-size: 15px; }
}

/* ── Partenaires réels + ligne clients ── */
.brand--checkpoint { font-weight: 700; letter-spacing: -0.01em; }
.brand--eset { font-weight: 800; gap: 5px; }
.brand--eset small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  align-self: flex-end;
  margin-bottom: 2px;
}
.logos-bar__inner--clients { margin-top: 16px; }

/* ── PARTENAIRES OFFICIELS (cards) ── */
.partners {
  background: var(--paper-2);
  padding: 64px 0;
}
.partners__header {
  text-align: center;
  margin-bottom: 40px;
}
.partners__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.partner-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.partner-card:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 34px rgba(0, 113, 227, 0.10);
  transform: translateY(-3px);
}
.partner-card .brand {
  font-size: 19px;
  color: var(--ink);
  cursor: default;
}
.partner-card__role {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.45;
}
.partner-card--featured {
  border: 1.5px solid var(--blue);
  position: relative;
  box-shadow: 0 10px 34px rgba(0, 113, 227, 0.08);
}
.partner-card__exclusive {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 980px;
  white-space: nowrap;
}
.brand--promisec-card {
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--blue) !important;
}
.partners__also {
  text-align: center;
  margin: 32px auto 0;
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.9;
  max-width: 780px;
}
.testimonials__sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.6;
  margin: 14px auto 0;
  max-width: 560px;
}
@media (max-width: 991px) {
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .partner-card--featured { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .partners__grid { grid-template-columns: 1fr; }
}

/* ── RÉFÉRENCES CONFIDENTIELLES (remplace les témoignages) ── */
.refs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ref-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px;
}
.ref-card__icon { font-size: 28px; margin-bottom: 14px; }
.ref-card__sector {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.ref-card__scope {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.65;
}
.refs-note {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.refs-note__icon { font-size: 24px; }
.refs-note__body { flex: 1; min-width: 260px; }
.refs-note__body strong {
  color: #fff;
  font-size: 15px;
  display: block;
  margin-bottom: 6px;
}
.refs-note__body p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}
.refs-note--light {
  background: var(--paper-2);
  border-color: var(--border);
  margin-top: 0;
}
.refs-note--light .refs-note__body strong { color: var(--ink); }
.refs-note--light .refs-note__body p { color: var(--ink-mute); }
@media (max-width: 900px) {
  .refs-grid { grid-template-columns: 1fr; }
}

/* ── Illustrations SVG : affichage complet sans rognage ── */
.illus-img {
  object-fit: contain !important;
  background: #f5f5f7;
}

/* ══ BANDEAU CONSENTEMENT COOKIES ══ */
#cookie-consent {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 2000;
  max-width: 440px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(13, 31, 60, 0.20);
  padding: 22px 24px;
  animation: cookieUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes cookieUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-consent__body { display: flex; gap: 14px; align-items: flex-start; }
.cookie-consent__icon { font-size: 26px; line-height: 1; flex-shrink: 0; }
.cookie-consent__text strong { display: block; font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.cookie-consent__text p { font-size: 13px; color: var(--ink-mute); line-height: 1.55; margin: 0; }
.cookie-consent__text a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.cookie-consent__actions { display: flex; gap: 10px; margin-top: 18px; }
.cookie-consent__btn {
  flex: 1;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 16px;
  border-radius: 980px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cookie-consent__btn--accept { background: var(--blue); color: #fff; border-color: var(--blue); }
.cookie-consent__btn--accept:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.cookie-consent__btn--refuse { background: var(--paper); color: var(--ink); border-color: var(--border); }
.cookie-consent__btn--refuse:hover { border-color: var(--ink-mute); background: var(--paper-2); }
.footer__cookie-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: inherit;
  color: inherit;
  opacity: 0.75;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
}
.footer__cookie-link:hover { opacity: 1; color: var(--blue); }
@media (max-width: 560px) {
  #cookie-consent { left: 12px; right: 12px; bottom: 12px; max-width: none; padding: 18px 20px; }
  .cookie-consent__actions { flex-direction: column-reverse; }
}
@media (prefers-reduced-motion: reduce) {
  #cookie-consent { animation: none; }
}

/* ══ ICÔNES SVG (remplacent les emojis) ══ */
[class*="__icon"] > svg, [class*="icon-wrap"] > svg {
  width: 24px; height: 24px; color: var(--blue); flex-shrink: 0;
}
.svc-block__icon-wrap > svg, .audit-card__icon > svg { width: 28px; height: 28px; }
.scope-card__icon, .related-card__icon, .audit-card__icon, .founder__icon,
.contact-card__icon, .tier-card__icon, .svc-block__icon-wrap {
  display: inline-flex; align-items: center; justify-content: center;
}
/* Contextes sombres → icône claire */
.ref-card__icon > svg,
.testimonials .refs-note__icon > svg,
.audit-card--pack .audit-card__icon > svg { color: #8fbaff; }
.founder__icon > svg { width: 28px; height: 28px; color: #fff; }

/* ── Partenaire Sophos ── */
.brand--sophos { font-weight: 800; letter-spacing: 0.03em; color: #0a2472; }
.partner-card:hover .brand--sophos { color: #0a2472; }
.cta-ico { width: 15px; height: 15px; flex-shrink: 0; }
.svc-block__visual-icon > svg { width: 40px; height: 40px; color: var(--blue); }
.promisec-featured__card-icon > svg { width: 40px; height: 40px; color: #60a5fa; }
.inline-ico { width: 18px; height: 18px; color: var(--blue); vertical-align: -3px; }
[class*="-icon"] > svg { width: 22px; height: 22px; }
.contact-urgence__item-icon > svg { color: #8fbaff; }
