/* ── Variables ─────────────────────────────────────── */
:root {
  --bordeaux: #b0556b;
  --bordeaux-light: #f6e8e8;
  --bleu: #394665;
  --bleu-light: #ebecef;
  --white: #ffffff;
  --font-body: 'Montserrat', sans-serif;
  --font-title: 'Poppins', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--bleu);
  padding-top: 70px;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-title);
}

/* ── Conteneur universel ────────────────────────────── */
.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.section-inner--grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

/* ── Navbar ────────────────────────────────────────── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px;
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(57,70,101,0.07);
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar__logo img {
  height: 32px;
  width: auto;
}

.navbar__logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bordeaux);
  letter-spacing: -0.3px;
}

/* Nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 40px);
}

.navbar__links a {
  text-decoration: none;
  color: var(--bleu);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar__links a:hover {
  color: var(--bordeaux);
}

.navbar__links .arrow {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  flex-shrink: 0;
}

.navbar__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bleu);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn--outline {
  border: 1.5px solid var(--bleu);
  color: var(--bleu);
  background: transparent;
}

.btn--outline:hover {
  background: var(--bleu-light);
}

.btn--filled {
  background: var(--bordeaux);
  color: var(--white);
  border: 1.5px solid var(--bordeaux);
}

.btn--filled:hover {
  background: #9a4460;
}

/* ── Hero ──────────────────────────────────────────── */
.hero-wrapper {
  background: radial-gradient(ellipse 80% 60% at 50% 30%, #ffffff 30%, #ebecef 100%);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px clamp(20px, 5vw, 80px) 60px;
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
}

.hero__badge {
  display: inline-block;
  background: var(--bordeaux-light);
  color: var(--bordeaux);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
}

.hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--bleu);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__title .highlight {
  color: var(--bordeaux);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--bleu);
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 44px;
}

.hero__buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero__buttons .btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
}

/* ── Clients carousel ──────────────────────────────── */
.clients {
  padding: 20px 0 70px;
  overflow: hidden;
  text-align: center;
}

.clients__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bleu);
  margin-bottom: 10px;
}

.clients__divider {
  width: 40px;
  height: 3px;
  background: var(--bordeaux);
  margin: 0 auto 44px;
  border-radius: 2px;
}

.clients__carousel {
  overflow: hidden;
  width: 100%;
}

.clients__track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: scroll-logos 60s linear infinite;
}

.clients__track img {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.3s, opacity 0.3s;
}

.clients__track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Webinar ───────────────────────────────────────── */
.webinar {
  background: #ffffff;
  padding: 40px clamp(20px, 5vw, 80px);
}

.webinar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 36px;
  border: 1px solid #dde0e8;
  box-shadow: 0 2px 12px rgba(57, 70, 101, 0.06);
  max-width: 1400px;
  margin: 0 auto;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.32s ease;
}

.webinar__inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 1.5px rgba(200, 60, 94, 0.55), 0 0 16px -2px rgba(200, 60, 94, 0.15);
}

.webinar__thumb {
  width: 280px;
  height: 157px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.webinar__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.webinar__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bordeaux);
}

.webinar__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bleu);
  line-height: 1.3;
}

.webinar__desc {
  font-size: 0.85rem;
  color: var(--bleu);
  opacity: 0.65;
  line-height: 1.5;
}

.webinar__cta {
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.webinar__cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(200, 60, 94, 0.35);
  background: #c83c5e;
  border-color: #c83c5e;
}

/* ── Why section ───────────────────────────────────── */
.why {
  background: #ffffff;
  padding: 80px clamp(20px, 5vw, 80px);
  text-align: center;
}

.why__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bleu);
  margin: 20px 0 16px;
}

.why__subtitle {
  font-size: 1rem;
  color: var(--bleu);
  opacity: 0.75;
  max-width: 760px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

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

.why__card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.why__card-header-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.why__icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--bordeaux-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bordeaux);
}

.why__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bleu);
  line-height: 1.4;
}

.why__card-divider {
  width: 32px;
  height: 3px;
  background: var(--bordeaux);
  border-radius: 2px;
}

.why__card p {
  font-size: 0.9rem;
  color: var(--bleu);
  opacity: 0.75;
  line-height: 1.65;
}

.c-bordeaux {
  color: var(--bordeaux);
  opacity: 1;
}

/* ── Services ──────────────────────────────────────── */
.services {
  background: #f2f2f2;
  padding: 80px clamp(20px, 5vw, 80px);
}

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

.services__title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--bleu);
  text-transform: uppercase;
  line-height: 1.2;
}

.services__subtitle {
  font-size: 0.95rem;
  color: var(--bleu);
  opacity: 0.75;
  line-height: 1.7;
  max-width: 460px;
}

.services__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.services__card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(57, 70, 101, 0.1);
}

.services__card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.services__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--bleu-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bleu);
}

.services__card-title {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bleu);
  line-height: 1.4;
}

.services__card p {
  font-size: 0.8rem;
  color: var(--bleu);
  opacity: 0.7;
  line-height: 1.6;
}

.services__arrow {
  display: none;
}

.services__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Right column */
.services__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services__deco-circle {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 220px;
  height: 220px;
  background: rgba(180, 160, 220, 0.25);
  border-radius: 50%;
  z-index: 0;
}

.services__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}

/* ── Testimonials ──────────────────────────────────── */
.testimonials {
  background: var(--bordeaux);
  padding: 60px clamp(20px, 5vw, 80px) 48px;
}

.testimonials__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
}

.testi__badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.testimonials__title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
}

.testimonials__deco-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.testimonials__wrapper {
  overflow: hidden;
  width: 100%;
  border-radius: 24px;
  transform: translateZ(0);
}

.testimonials__track {
  display: flex;
  width: max-content;
  transition: transform 0.45s ease;
}

.testi__card {
  flex: 0 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  box-sizing: border-box;
}

.testi__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testi__logo-img {
  height: 85px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  align-self: flex-start;
}

.testi__sector {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bordeaux);
}

.testi__quote {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--bleu);
  line-height: 1.35;
}

.testi__text {
  font-size: 1.05rem;
  color: var(--bleu);
  opacity: 0.75;
  line-height: 1.75;
}

.testi__author {
  margin-top: 8px;
}

.testi__name {
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--bordeaux);
}

.testi__role {
  font-size: 0.95rem;
  color: var(--bleu);
  opacity: 0.65;
  font-style: italic;
}

.testi__right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.testi__right--empty {
  min-height: 300px;
}

.testi__blob {
  position: relative;
  width: 300px;
  height: 300px;
}

.testi__blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 55% 45% 48% 52% / 52% 48% 55% 45%;
  display: block;
}

.testi__blob::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 160px;
  background: var(--bordeaux);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  bottom: 10px;
  right: -20px;
  z-index: -1;
  opacity: 0.5;
  transform: rotate(20deg);
}

.testi__blob::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 130px;
  background: var(--bleu);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  bottom: 30px;
  right: 10px;
  z-index: -1;
  opacity: 0.5;
  transform: rotate(10deg);
}

.testimonials__nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.testi__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bleu);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  transition: opacity 0.2s;
}

.testi__btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}

.testi__btn:hover {
  opacity: 1;
}

/* ── Platform ──────────────────────────────────────── */
.platform {
  background: #f2f2f2;
  padding: 80px clamp(20px, 5vw, 80px);
}

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

.platform__title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--bleu);
  text-transform: uppercase;
  line-height: 1.2;
}

.platform__subtitle {
  font-size: 0.95rem;
  color: var(--bleu);
  opacity: 0.75;
  line-height: 1.7;
}

.platform__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.platform__card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(57, 70, 101, 0.08);
}

.platform__arrow {
  display: none;
}

.platform__card p {
  font-size: 0.72rem;
  color: var(--bleu);
  opacity: 0.7;
  line-height: 1.55;
}

.platform__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform__img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
}

/* ── Qui sont nos clients ──────────────────────────── */
.clients-section {
  background: #ffffff;
  padding: 80px clamp(20px, 5vw, 80px);
  text-align: center;
}

.clients-section__title {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--bleu);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.clients-section__subtitle {
  font-size: 0.95rem;
  color: var(--bleu);
  opacity: 0.75;
  line-height: 1.75;
  margin: 0 0 48px;
  text-align: left;
}

.clients-section__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.clients-section__card {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px 20px;
}

.clients-section__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.clients-section__card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.clients-section__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.clients-section__list li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.clients-section__list li::before {
  content: "✓";
  color: #ffffff;
  font-weight: 700;
  flex-shrink: 0;
}

.clients-section__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  margin-top: auto;
  border-radius: 12px;
  flex-shrink: 0;
}

/* ── Advisers ──────────────────────────────────────── */
.advisers {
  background: #ffffff;
  padding: 80px clamp(20px, 5vw, 80px) 60px;
  text-align: center;
}

.advisers__title {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--bleu);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.advisers__subtitle {
  font-size: 0.95rem;
  color: var(--bleu);
  opacity: 0.75;
  line-height: 1.75;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.advisers__wrapper {
  overflow: hidden;
  width: 100%;
}

.advisers__track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.advisers__card-wrap {
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}

.advisers__track img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.advisers__card-wrap:hover img {
  transform: scale(1.06);
}

.advisers__nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 28px;
  padding: 0 48px;
}

.advisers__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bleu);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  opacity: 1;
}

.advisers__btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}

.advisers__btn:hover {
  background: var(--bordeaux);
}


/* ── Gallery carousel ──────────────────────────────── */
.gallery {
  background: #ffffff;
  padding: 60px 0;
  overflow: hidden;
}

.gallery__carousel {
  overflow: hidden;
  width: 100%;
}

.gallery__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-gallery 30s linear infinite;
}

.gallery__track img {
  height: 280px;
  width: auto;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes scroll-gallery {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  background: #ffffff;
  padding: 64px 64px 0;
  border-top: 1px solid #e4e8f0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__logo {
  height: 26px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}

.footer__desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(57,70,101,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer__social {
  width: 36px;
  height: 36px;
  background: #f0f2f7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bleu);
  transition: background 0.2s, color 0.2s;
}

.footer__social:hover {
  background: var(--bordeaux);
  color: #ffffff;
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__heading {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 24px;
  line-height: 1.3;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(57,70,101,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #b0556b;
}

.footer__contact-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--bordeaux);
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.footer__contact-btn:hover {
  background: #c83c5e;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(200, 60, 94, 0.35);
}

.footer__bottom {
  border-top: 1px solid #e4e8f0;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__bottom a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(57,70,101,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__bottom a:hover {
  color: #b0556b;
}

.footer__bottom span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(57,70,101,0.55);
  margin-left: auto;
}

/* ── Subscribe ─────────────────────────────────────── */
.subscribe {
  background: #4a5b84;
  padding: 80px 48px;
}

.subscribe__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.subscribe__title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.subscribe__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}

.subscribe__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.subscribe__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.subscribe__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.subscribe__field label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.subscribe__field input {
  padding: 12px 14px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--bleu);
  background: #ffffff;
  outline: none;
  box-sizing: border-box;
  width: 100%;
}

.subscribe__field input:focus {
  box-shadow: 0 0 0 3px rgba(176,85,107,0.4);
}

.subscribe__btn {
  align-self: center;
  margin-top: 8px;
  padding: 14px 40px;
  background: var(--bordeaux);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.subscribe__btn:hover {
  background: #c83c5e;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(200, 60, 94, 0.35);
}

/* ── Whitepapers ───────────────────────────────────── */
.whitepapers {
  background: #f2f2f2;
  padding: 72px 0 80px;
  overflow: hidden;
}

.whitepapers__header {
  max-width: 1400px;
  margin: 0 auto 52px;
  padding: 0 48px;
  text-align: center;
}

.whitepapers__title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--bleu);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.whitepapers__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--bleu);
  opacity: 0.7;
  line-height: 1.7;
  max-width: 100%;
}

/* Carousel */
.wp__carousel {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.wp__window {
  flex: 1;
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(13,27,56,0.07);
}

.wp__track {
  display: flex;
  transition: transform 0.42s cubic-bezier(.4,0,.2,1);
}

.wp__slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding: 48px 64px;
}

.wp__slide-img {
  flex-shrink: 0;
  width: 220px;
  display: flex;
  justify-content: center;
}

.wp__slide-img img {
  width: 100%;
  height: auto;
}

.wp__slide-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wp__slide-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--bordeaux);
  text-transform: uppercase;
}

.wp__slide-title {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--bleu);
  line-height: 1.2;
  margin: 0;
}

.wp__slide-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--bleu);
  opacity: 0.7;
  line-height: 1.75;
  margin: 0;
  max-width: 560px;
}

.wp__slide-btn {
  display: inline-block;
  align-self: flex-start;
  background: var(--bleu);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.wp__carousel .wp__slide-btn:hover,
.wp__slide-btn:hover {
  background: #b0556b !important;
  color: #ffffff !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(200, 60, 94, 0.35);
}

/* Arrows */
.wp__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e4e8f0;
  border-radius: 50%;
  color: var(--bleu);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(13,27,56,0.1);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.wp__arrow:hover {
  background: #b0556b;
  border-color: #b0556b;
  color: #ffffff;
}

.wp__arrow svg {
  width: 18px;
  height: 18px;
}

.wp__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.wp__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(57,70,101,0.2);
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
}

.wp__dot--active {
  background: var(--bordeaux);
  transform: scale(1.3);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

/* ── Hamburger (toujours caché sur desktop) ─────────── */
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bleu);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.navbar__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger--open span:nth-child(2) { opacity: 0; }
.navbar__burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Tablet (≤ 1024px) ──────────────────────────────── */
@media (max-width: 1024px) {

  /* Navbar */
  .navbar { padding: 0 28px; }
  .navbar__links { gap: 24px; }
  .navbar__links a { font-size: 0.88rem; }
  .navbar__actions { gap: 10px; }
  .navbar__lang { display: none; }
  .btn { padding: 8px 16px; font-size: 0.85rem; }

  /* Hero */
  .hero { padding: 60px 28px 48px; }

  /* Webinar */
  .webinar { padding: 32px 28px; }
  .webinar__thumb { width: 200px; height: 130px; }

  /* Why */
  .why { padding: 60px 28px; }
  .why__cards { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services { padding: 60px 28px; }

  /* Platform */
  .platform { padding: 60px 28px; }

  /* Clients section */
  .clients-section { padding: 60px 28px; }

  /* Testimonials */
  .testimonials { padding: 48px 28px 36px; }
  .testi__card { padding: 36px 36px; }
  .testi__quote { font-size: 1.3rem; }
  .testimonials__deco-circle { width: 100px; height: 100px; }

  /* Advisers */
  .advisers { padding: 60px 28px 48px; }

  /* Whitepapers */
  .whitepapers { padding: 60px 0 68px; }
  .whitepapers__header { padding: 0 28px; margin-bottom: 40px; }
  .wp__carousel { padding: 0 8px; }
  .wp__slide-img { width: 180px; }
  .wp__slide-title { font-size: 1.5rem; }

  /* Subscribe */
  .subscribe { padding: 60px 28px; }

  /* Footer */
  .footer { padding: 48px 28px 0; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── Mobile (≤ 768px) ───────────────────────────────── */
@media (max-width: 768px) {

  /* Navbar */
  body { padding-top: 60px; }
  .navbar { padding: 0 20px; height: 60px; }
  .navbar__burger { display: flex; }
  .navbar__links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: #ffffff;
    padding: 16px 20px 24px;
    gap: 18px;
    border-bottom: 1px solid #e8e8e8;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .navbar__links--open { display: flex; }
  .navbar__actions {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: #ffffff;
    padding: 0 20px 20px;
    gap: 10px;
    z-index: 998;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .navbar__actions--open { display: flex; }
  .navbar__actions .btn { width: 100%; text-align: center; }
  .navbar__lang { display: flex; }

  /* Hero */
  .hero { padding: 48px 20px 36px; }
  .hero__buttons { flex-direction: column; width: 100%; }
  .hero__buttons .btn { width: 100%; justify-content: center; }

  /* Webinar */
  .webinar { padding: 24px 20px; }
  .webinar__inner { flex-direction: column; padding: 20px; gap: 16px; }
  .webinar__thumb { width: 100%; height: auto; max-height: 180px; }

  /* Why */
  .why { padding: 48px 20px; }
  .why__cards { grid-template-columns: 1fr; }

  /* Services */
  .services { padding: 48px 20px; }
  .services .section-inner--grid2 { grid-template-columns: 1fr; gap: 32px; }
  .services__cards { grid-template-columns: 1fr; }

  /* Platform */
  .platform { padding: 48px 20px; }
  .platform .section-inner--grid2 { grid-template-columns: 1fr; gap: 32px; }
  .platform__cards { grid-template-columns: 1fr; }
  .platform__right { order: -1; }

  /* Clients section */
  .clients-section { padding: 48px 20px; }
  .clients-section__cards { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials { padding: 40px 20px 28px; }
  .testimonials__deco-circle { display: none; }
  .testi__card { grid-template-columns: 1fr; padding: 28px 20px; gap: 24px; }
  .testi__right { display: none; }
  .testi__quote { font-size: 1.15rem; }
  .testi__text { font-size: 0.95rem; }
  .testi__logo-img { height: 56px; }

  /* Advisers */
  .advisers { padding: 48px 20px 36px; }
  .advisers__nav { padding: 0; }

  /* Whitepapers */
  .whitepapers { padding: 48px 0 56px; }
  .whitepapers__header { padding: 0 20px; margin-bottom: 32px; }
  .wp__carousel { padding: 0 4px; gap: 4px; }
  .wp__slide { flex-direction: column; align-items: flex-start; padding: 8px 16px; gap: 24px; }
  .wp__slide-img { width: 160px; }
  .wp__arrow { width: 36px; height: 36px; }
  .wp__slide-btn { padding: 12px 20px; font-size: 0.82rem; }

  /* Subscribe */
  .subscribe { padding: 48px 20px; }
  .subscribe__row { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 40px 20px 0; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { gap: 16px; flex-direction: column; align-items: flex-start; }
  .footer__bottom span { margin-left: 0; }
}
