/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
/* Structure de base */
#burger-btn {
  display: none;
}
.logo img {
  width: 140px;
  margin-right: 12px;
}
@media (max-width: 1250px) {
  #burger-btn {
    display: flex;
  }
}
@media (min-width: 920px) {
  .logo img {
    width: 180px;
  }
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

.navbar-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
#navbar-menu a.active {
  color: #4d9fff;
  font-weight: 600;
}
/* Les deux switchers sont cachés par défaut */
.lang-switcher {
  font-size: 0.9rem;
  font-weight: 500;
  gap: 8px;
  display: flex;
  align-items: center;
  color: white;
}
.lang-switcher a {
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
}
.desktop-lang {
  display: flex;
}

.mobile-lang {
  display: none;
}

/* Mobile : cacher le switcher desktop et montrer celui dans le menu */
@media (max-width: 768px) {
  .desktop-lang {
    display: none;
  }

  .mobile-lang {
    display: flex;
    margin-top: 16px;
    justify-content: center;
  }
}

body {
  margin: 0; /* ← Ajoute cette ligne */
  font-family: "Poppins", Arial, sans-serif;
  background: linear-gradient(135deg, #073369 0%, #223d5e 100%);
  color: #fff;
  min-height: 100vh;
}

header {
  display: flex;
  align-items: center;
  justify-self: center;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 60px 0 60px;
  position: absolute;
  z-index: 100;
  gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.menu-right {
  display: flex;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 2rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-left: 32px;
  font-size: 1.1rem;
  transition: color 0.2s;
}

nav a.contact-btn {
  background: #2f62ee;
  border-radius: 8px;
  padding: 10px 24px;
  color: #fff;
  margin-left: 32px;
  transition: background 0.2s;
}
nav a.contact-btn:hover {
  background: #1c45a8;
}

/* Hero Section */
.hero {
  width: 100vw; /* Couvre toute la largeur de la fenêtre */
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* flex-direction: column;  <-- à retirer si tu veux garder le texte à gauche */
  justify-content: flex-start;
  position: relative;
  background-image: url("img/hero.jpg"); /* Mets le bon nom */
  background-size: cover;
  background-position: center 0;
  border-radius: 0; /* Enlève ou ajuste l'arrondi si besoin */
  overflow: hidden;
  padding: 80px 60px;
  box-sizing: border-box;
}
.hero-content,
.hero-image {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 1000px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 32px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 36px;
  color: #d0deff;
  max-width: 600px;
}

.demo-btn {
  background: #2f62ee;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.demo-btn:hover {
  background: #1c45a8;
}

.hero-image img {
  width: 440px;
  max-width: 90vw;
  border-radius: 16px;
  /* optionally add a slight shadow */
  box-shadow: 0 6px 48px rgba(44, 94, 214, 0.21);
}

.click-to-context-single {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 24px 32px;
  background-color: #eaf0f7;
}
.text-block-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
}

.text-block {
  flex: 1;
  max-width: 540px;
}

.click-to-context-single h2 {
  font-size: 2.5rem;
  color: #1976d2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 20px;
}

.text-block p {
  font-size: 0.9rem;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 16px;
}

.image-block {
  flex: 1;
  position: relative;
  max-width: 600px;
  margin-bottom: 40px;
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.image-block .label {
  position: absolute;
  background: rgba(50, 82, 112, 0.95);
  color: white;
  padding: 8px 14px;
  font-size: 0.9rem;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  max-width: 180px;
  transform: translate(-50%, -50%);
}

.itac-how-it-works {
  padding: 50px 20px;
}

.itac-how-it-works .container {
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  font-size: 3em;
  font-weight: bold;
  color: #ffffff;
}

.itac-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.steps-container {
  width: 40%;
  min-width: 300px;
}

.step {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.step::after {
  content: "";
  display: block;
  position: absolute;
  transform: translateX(8px) translateY(1rem);
  height: calc(100% + 1.5rem);
  width: 4px;
  background-color: #66b5ff;
}
.step:last-of-type::after {
  display: none;
}

.bullet {
  width: 20px;
  height: 20px;
  background-color: #66b5ff; /* Couleur du point, ajustez si nécessaire */
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
  margin-top: 5px; /* Aligner le point avec le début du texte */
}

.text-content h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0;
}

.text-content p {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
}

.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  aspect-ratio: 1/1;
  text-align: center;
  background: radial-gradient(circle, #4187c9 0%, transparent 70%);
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* Bords légèrement arrondis pour l'image */
}

.bottom-text {
  font-size: 0.8em;
  text-align: center;
  margin-top: 5px;
  color: #cccccc;
}

/* Media Queries pour les appareils mobiles */
@media (max-width: 768px) {
  .itac-content {
    flex-direction: column;
  }

  h1 {
    font-size: 2.5em;
  }

  .image-container {
    order: -1; /* Place l'image en haut sur les petits écrans */
  }
}

.why-itac {
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.why-itac h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.why-itac-content {
  display: flex;
  justify-content: flex-start; /* aligne à gauche */
  align-items: flex-start;
  gap: 58px; /* espace entre images et texte */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0; /* pas de padding à gauche */
}

.why-itac-images {
  margin: 0; /* pas de marge, pas de padding */
}

.why-img {
  width: px;
  height: 679px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(30, 50, 80, 0.13);
}

.why-itac-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* texte bien à gauche */
  justify-content: center;
  min-width: 350px;
  max-width: 520px; /* pour ne pas prendre tout l'espace */
  margin: 0; /* AUCUNE marge */
  text-align: left;
}

.why-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.why-desc {
  color: #c2d6fa;
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.why-list {
  color: #fff;
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
  font-size: 1.1rem;
}
.why-list li {
  margin-bottom: 18px;
  padding-left: 28px;
  position: relative;
}
.why-list li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #5be1c6;
  font-size: 1.3em;
}

.demo-btn {
  background: #4187f6;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 18px;
}
.demo-btn:hover {
  background: #265bcb;
}
.media-trust {
  background: #edf4fc;
  padding: 64px 0 80px 0;
  text-align: center;
  height: 40rem;
}

.media-trust h2 {
  color: #173365;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -1px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.media-stats {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.media-stat {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(28, 51, 140, 0.07);
  padding: 50px 48px 36px 48px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}

.media-stat-value {
  color: #1a70d1;
  font-size: 8rem;
  font-weight: 1000;
  margin-bottom: 18px;
  letter-spacing: -2px;
}

.media-stat-label {
  color: #2477eb;
  font-size: 1.25rem;
  font-weight: 500;
}

.laptop-img {
  width: 1000px; /* Essaie 900px ou 1000px pour un meilleur équilibre */
  height: auto;
  max-width: 100%;
  max-height: 700px;
  object-fit: contain;
  display: block;
}
.events-testimonials {
  background: #edf4fc;
  padding: 64px 0 80px 0;
}

.events-testimonials h2 {
  color: #173365;
  font-size: 2.6rem;
  font-weight: 800;
  margin-left: 72px;
  margin-bottom: 48px;
  letter-spacing: -1px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.events-testimonials-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.events-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 16px;
}

.event {
  color: #173365;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(28, 51, 140, 0.08);
  padding: 38px 38px 28px 38px;
  max-width: 700px;
  width: 100%;
  min-height: 370px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: #ffcb37;
  font-size: 2.1rem;
  letter-spacing: 6px;
  margin-bottom: 22px;
}

.testimonial-arrows {
  position: absolute;
  top: 28px;
  right: 30px;
  display: none;
  gap: 10px;
}
.arrow-btn {
  background: #e9f0fb;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  font-size: 1.3rem;
  color: #5186ec;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
}
.arrow-btn:hover {
  background: #d5e6fa;
}

.testimonial-text {
  color: #26324b;
  font-size: 1.11rem;
  margin-bottom: 38px;
  line-height: 1.6;
  margin-top: 0;
}
.events-image {
  max-width: 500px;
}
.testimonial-profile {
  display: flex;

  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  color: #183358;
  font-size: 1.1rem;
}
.testimonial-role {
  color: #758aac;
  font-size: 0.95rem;
  margin-top: 2px;
}
.audience-section {
  background-color: #d6e8fd;
  padding: 40px 0px 4rem;
  text-align: center;
  background-color: #d6e8fd;
}

.connect-section {
  background-color: #d6e8fd;
  padding: 40px 0px 0;
  text-align: center;
  background-color: #d6e8fd;
}

.audience-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #183358;
}

.audience-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.audience-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
}

.audience-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.audience-card h3 {
  font-size: 1.3em;
  color: #1877f2;
  margin-bottom: 10px;
}

.audience-card p {
  font-size: 1em;
  color: #333;
  line-height: 1.5;
}

.site-footer {
  background: #013160;
  color: #fff;
  text-align: center;
  padding: 80px 0 36px 0;
}

.footer-contact h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 44px;
  margin-top: 0;
  line-height: 1.15;
  color: #fff;
}

.contact-form {
  max-width: 480px;
  margin: 0 auto 36px auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px 18px;
  border-radius: 8px;
  border: none;
  font-size: 1.08rem;
  background: #3a5482;
  color: #fff;
  outline: none;
  transition: background 0.17s, box-shadow 0.17s;
  resize: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b6c9de;
  font-size: 1.03rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  background: #5170a3;
  box-shadow: 0 0 0 2px #4187f6;
}

.contact-form button[type="submit"] {
  padding: 16px 0;
  background: #4187f6;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.17s;
}
.contact-form button[type="submit"]:hover {
  background: #265bcb;
}

.footer-divider {
  border: none;
  border-top: 1px solid #a7c6e3;
  margin: 54px auto 36px auto;
  width: 90%;
  max-width: 900px;
}

.footer-bottom {
  margin-top: 0;
}

.footer-brand {
  font-size: 1.16rem;
  margin-bottom: 32px;
}
.footer-brand a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.18s;
}
.footer-brand a:hover {
  color: #51b8f0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 38px;
  color: #fff;
  margin-top: 22px;
  font-size: 1.08rem;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.17s;
}
.footer-links a:hover {
  color: #51b8f0;
}
.footer-sep {
  display: inline-block;
  width: 1.6em;
}
/* ----- MOBILE RESPONSIVE ----- */
@media (max-width: 1250px) {
  .text-block-content {
    flex-direction: column;
  }
  .click-to-context-single h2 {
    font-size: 2rem;
    line-height: normal;
  }
  /* ------ BURGER MENU ------ */
  .burger {
    display: none; /* caché sur desktop */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    gap: 6px;
    cursor: pointer;
    z-index: 120;
  }
  .navbar-right {
    display: none;
  }

  .burger span {
    display: block;
    width: 28px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* MOBILE STYLES */
  @media (max-width: 1250px) {
    .burger {
      display: flex;
    }
    .navbar {
      flex-direction: row;
      gap: 0;
      padding: 18px 10px 0 10px;
    }
    #navbar-menu {
      position: fixed;
      top: 0;
      right: -100vw;
      width: 80vw;
      height: 100vh;
      background: #0e3763;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 90px 24px 24px 24px;
      gap: 28px;
      box-shadow: -12px 0 32px rgba(20, 40, 80, 0.15);
      z-index: 110;
      transition: right 0.28s cubic-bezier(0.8, 0.2, 0.2, 1);
    }
    #navbar-menu.active {
      right: 0;
    }
    nav a,
    nav a.contact-btn {
      font-size: 1.2rem;
      margin: 0;
      padding: 10px 0;
      width: 100%;
      border-radius: 8px;
      text-align: left;
    }
    /* Quand le menu est ouvert, empêcher de scroller le body */
    body.menu-open {
      overflow: hidden;
    }
  }
  .hero {
    padding: 60px 20px;
  }
  .hero-content {
    max-width: 95vw;
  }
  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
  .hero p {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }
  .demo-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

@media (max-width: 600px) {
  @media (max-width: 600px) {
    .navbar {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between; /* espace entre logo et burger */
      padding: 16px 12px 0 12px; /* tu peux ajuster le 12px pour la marge droite */
      gap: 40vw;
    }
    .logo {
      margin-bottom: 0;
      max-width: 70vw;
    }
    .burger {
      margin-left: 0; /* important ! */
      margin-right: 0;
    }
  }
  nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  }
  nav a,
  nav a.contact-btn {
    margin-left: 0;
    font-size: 0.97rem;
    padding: 8px 10px;
  }
  .hero {
    padding: 32px 8px 20px 8px;
    min-height: 100vh;
  }
  .hero-content {
    max-width: 100vw;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 0.8rem;
  }
  .demo-btn {
    font-size: 0.98rem;
    padding: 10px 18px;
  }
}

/* BONUS : Pour éviter que le texte touche les bords */
body {
  overflow-x: hidden;
}
@media (max-width: 950px) {
  .why-itac-content {
    flex-direction: column;
    align-items: center;
    gap: 36px;
    max-width: 98vw;
    padding: 0 2vw;
  }

  .why-itac-images {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .why-img {
    width: 80vw;
    max-width: 440px;
    height: auto;
    min-height: unset;
  }

  .why-itac-text {
    align-items: center;
    max-width: 95vw;
    min-width: 0;
    margin-top: 16px;
    text-align: center;
    padding: 0;
  }

  .why-itac h2 {
    margin-left: 5px;
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .why-itac {
    padding: 44px 0 28px 0;
  }

  .why-itac-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 0 4vw;
  }

  .why-img {
    width: 96vw;
    max-width: 99vw;
    height: auto;
    border-radius: 10px;
  }

  .why-itac-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .why-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
    line-height: 1.3;
    color: #fff;
  }

  .why-desc {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #c2d6fa;
  }

  .why-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 28px;
    font-size: 1rem;
    color: #fff;
    width: 100%;
  }

  .why-list li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
  }

  .why-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #5be1c6;
    font-size: 1.2em;
  }

  .demo-btn {
    width: 100%;
    font-size: 1rem;
    padding: 12px 20px;
    margin-top: 12px;
    text-align: center;
    background: #4187f6;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.17s;
  }

  .demo-btn:hover {
    background: #265bcb;
  }
}

@media (max-width: 1250px) {
  .media-trust {
    padding: 44px 0 48px 0;
    height: auto; /* plus de hauteur fixe sur mobile */
  }
  .media-trust h2 {
    font-size: 2rem;
    margin-bottom: 28px;
  }
  .media-stats {
    gap: 24px;
    flex-wrap: wrap;
    max-width: 98vw;
  }
  .media-stat {
    padding: 36px 20px 28px 20px;
    min-width: 180px;
    max-width: 320px;
  }
  .media-stat-value {
    font-size: 4.2rem;
  }
}

@media (max-width: 600px) {
  .media-trust {
    padding: 32px 0 28px 0;
    height: auto;
  }
  .media-trust h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    padding: 0 2vw;
  }
  .media-stats {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .media-stat {
    width: 92vw;
    max-width: 99vw;
    min-width: 0;
    padding: 22px 6vw 18px 6vw;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center; /* utile aussi pour les textes */
  }
  .media-stat-value {
    font-size: 5rem;
    margin-bottom: 12px;
  }
  .media-stat-label {
    font-size: 1rem;
  }
}
@media (max-width: 1100px) {
  .itac-interface-content {
    gap: 18px;
    min-height: 500px;
  }
  .interface-text h2 {
    font-size: 2.1rem;
    max-width: 90vw;
  }
  .laptop-img {
    width: 600px;
    max-width: 90vw;
    max-height: 380px;
  }
  .interface-text {
    position: relative;
    padding-left: 24px;
    min-height: 320px;
  }
  .interface-visual {
    padding-right: 16px;
  }
}

@media (max-width: 750px) {
  .itac-interface-content {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
    gap: 8px;
    padding: 40px 0;
  }
  .interface-text {
    align-items: center;
    padding: 0 5vw;
    text-align: center;
    min-height: unset;
  }
  .interface-text h2,
  .interface-text p {
    max-width: 98vw;
  }
  .interface-text h2 {
    font-size: 2rem;
    margin-bottom: 18px;
  }
  .interface-text p {
    font-size: 1rem;
    margin-bottom: 14px;
  }
  .interface-visual {
    justify-content: center;
    padding: 0;
    width: 100%;
  }
  .laptop-img {
    width: 96vw;
    max-width: 99vw;
    max-height: 220px;
  }
}

@media (max-width: 450px) {
  .itac-interface {
    min-height: 0;
    padding: 0;
  }
  .laptop-img {
    max-width: 100vw;
    width: 100vw;
    max-height: 180px;
  }
}
@media (max-width: 950px) {
  .events-testimonials {
    padding: 38px 0 44px 0;
  }
  .events-image {
    max-width: 350px;
  }
  .events-testimonials h2 {
    margin-left: 0;
    font-size: 2rem;
    margin-bottom: 28px;
  }
  .events-testimonials-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    max-width: 99vw;
    padding: 0 2vw;
  }
  .events-list {
    flex: unset;
    width: 100%;
    align-items: center;
    gap: 18px;
    margin-top: 0;
  }
  .event {
    font-size: 1.15rem;
    text-align: center;
  }
  .testimonial-card {
    max-width: 95vw;
    padding: 24px 10px 20px 10px;
    min-height: unset;
    font-size: 1rem;
  }
  .testimonial-stars {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  .testimonial-arrows {
    top: 14px;
    right: 10px;
    gap: 4px;
  }
  .arrow-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  .testimonial-text {
    font-size: 0.98rem;
    margin-bottom: 22px;
  }
  .testimonial-profile {
    gap: 10px;
  }
  .testimonial-avatar {
    width: 40px;
    height: 40px;
  }
  .testimonial-name {
    font-size: 1rem;
  }
  .testimonial-role {
    font-size: 0.91rem;
  }
}

@media (max-width: 600px) {
  .events-testimonials {
    padding: 20px 0 18px 0;
  }
  .events-testimonials h2 {
    font-size: 1.17rem;
    margin-bottom: 10px;
    padding: 0 2vw;
  }
  .events-testimonials-content {
    gap: 14px;
    padding: 0 2vw;
  }
  .events-list {
    gap: 7px;
    align-items: flex-start;
  }
  .events-image {
    max-width: 300px;
  }
  .event {
    font-size: 1rem;
    padding: 3px 0;
  }
  .testimonial-card {
    max-width: 99vw;
    padding: 14px 3vw 10px 3vw;
    border-radius: 12px;
    font-size: 0.98rem;
  }
  .testimonial-stars {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  .testimonial-arrows {
    top: 4px;
    right: 4px;
  }
  .arrow-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  .testimonial-text {
    font-size: 0.91rem;
    margin-bottom: 14px;
  }
  .testimonial-avatar {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 1250px) {
  .site-footer {
    padding: 44px 0 24px 0;
  }
  .footer-contact h2 {
    font-size: 1.65rem;
    margin-bottom: 22px;
    padding: 0 2vw;
  }
  .contact-form {
    max-width: 98vw;
    gap: 14px;
    margin-bottom: 22px;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
    padding: 12px 12px;
  }
  .contact-form button[type="submit"] {
    font-size: 1rem;
    padding: 12px 0;
  }
  .footer-divider {
    margin: 34px auto 24px auto;
    max-width: 98vw;
  }
  .footer-brand {
    font-size: 1rem;
    margin-bottom: 18px;
    padding: 0 2vw;
  }
  .footer-links {
    font-size: 1rem;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 40px 20px 10px 20px;
  }
  .footer-contact h2 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    padding: 0 3vw;
    line-height: 1.18;
  }
  .contact-form {
    gap: 9px;
    max-width: 99vw;
    margin-bottom: 12px;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.6rem;
    padding: 20px 10px;
    border-radius: 6px;
  }
  .contact-form button[type="submit"] {
    font-size: 0.98rem;
    padding: 11px 0;
    border-radius: 6px;
  }
  .footer-divider {
    margin: 18px auto 14px auto;
    max-width: 99vw;
  }
  .footer-brand {
    font-size: 0.93rem;
    margin-bottom: 12px;
    padding: 0 2vw;
  }
  .footer-links {
    font-size: 0.95rem;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
  }
  .footer-sep {
    display: none;
  }
}
/* === PRICING SECTION === */
.pricing-section {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.card-features li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
}
.pricing-section {
  padding: 160px 20px;
  background: #013160;
  color: #fff;
  text-align: center;
}

.pricing-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.pricing-card {
  background: #d6e8fd;
  color: #0a224e;
  border-radius: 22px;
  max-width: 400px;
  flex: 1 1 300px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.pricing-card-header {
  display: flex;
  flex-direction: column;
  background-color: #0e4c89;
  border-radius: 20px;
  padding: 32px 24px 0;
}
.feature-list {
  padding: 24px 24px 32px;
}
.plan-title {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  width: fit-content;
  font-size: 18px;
}

.plan-title.solo {
  background-color: #7099b9;
}

.plan-title.collaborate {
  background: linear-gradient(to right, #708cf5, #c48ffd);
}

.plan-title.selfhosted {
  background-color: #4f82c2;
}

.plan-desc {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: white;
  text-align: left;
  font-weight: 400;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  font-size: 3rem;
  margin: 0 0 16px;
  font-weight: bold;
  color: white;
}

.plan-price span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  margin-left: 8px;
  margin-bottom: 16px;
  color: #b3c0cf;
  text-align: left;
}

.plan-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 20px 0;
}

.plan-features li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.plan-footer {
  margin-bottom: 32px;
  font-weight: bold;
  font-size: 1rem;
}

.plan-cta {
  background-color: #2f62ee;
  color: white;
  padding: 10px 100px;
  border-radius: 8px;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

.plan-cta:hover {
  background-color: #1c45a8;
}

.pricing-note {
  font-size: 0.8rem;
  margin-top: 40px;
  color: #ccc;
}
.gdpr-hero {
  position: relative;
  background: url("img/GDPR-fond.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: left;
  color: white;
}
/*
.gdpr-hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
*/
.gdpr-hero-content {
  text-align: left;
  max-width: 700px;
  padding: 0 24px;
}

.gdpr-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.gdpr-hero-content h1 span {
  display: block;
  margin-top: 8px;
}

.cta-btn {
  margin-top: 32px;
  display: inline-block;
  background-color: #1d63ff;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #0d49d3;
}
.gdpr-values {
  background-color: #eaf2fb; /* bleu très clair */
  padding: 80px 24px;
}

.gdpr-values .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.gdpr-values h2 {
  color: #1664d0;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.gdpr-values p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #0e1a36;
  margin-bottom: 16px;
}
.privacy-section {
  padding: 60px 20px;
  background-color: #04264c;
  color: #ffffff;
}

.privacy-section h2 {
  font-size: 2.2rem;
  color: #ffffff;
  max-width: 1200px;
  margin: auto auto 20px;
  text-align: left;
}

.privacy-section p {
  font-size: 1rem;
  max-width: 900px;
  text-align: left;
  color: #d0dce5;
  max-width: 1200px;
  margin: auto auto 20px;
}

.privacy-cards {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 24px;
}

.card {
  max-width: 48%;
  background-color: #0b3b66;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-size: 1.1rem;
  margin-top: 16px;
  margin-bottom: 12px;
  color: #ffffff;
}

.card p {
  color: #c8d3df;
  font-size: 0.95rem;
}

.icon {
  width: 28px;
  height: 28px;
}
.dpia-section {
  background-color: #e9f1fa;
  padding: 80px 20px;
  color: #0d1b2a;
  font-family: "Inter", sans-serif;
}

.dpia-block {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.dpia-block h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f78d1;
  margin-bottom: 20px;
}

.dpia-block p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #0d1b2a;
  line-height: 1.6;
}

@media (max-width: 1250px) {
  .gdpr-hero-content h1 {
    font-size: 2.5rem;
  }
  .cards {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .card {
    width: 90vw;
    min-width: unset;
    max-width: 400px;
    margin: 0 auto;
    padding: 24px 12px 28px 12px;
  }
  .itac-works h2 {
    font-size: 2rem;
    padding-top: 28px;
  }
}
@media (max-width: 600px) {
  .audience-section h2  {
    font-size: 2rem;
  }
}