:root {
  /* Colors */
  --color-primary: #1f3f69;
  --color-primary-dark: #12253f;
  --color-accent: #2c5896; /* Brighter blue for buttons */
  --color-text: #1f2230;
  --color-text-light: #5a5f73;
  --color-bg: #ffffff;
  --color-bg-alt: #f6f8fc;
  --color-bg-pale: #fafbfd;
  --color-bg-dark: #1a202c;
  
  /* Spacing */
  --spacing-section: clamp(60px, 8vw, 100px);
  --container-width: 1200px;
  --header-height: 80px;
  
  /* Fonts */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Source Sans Pro', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px rgba(0,0,0,0.05);
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* Reset & Base */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); color: var(--color-accent); font-weight: 500; }

p { margin-bottom: 1.5rem; color: var(--color-text-light); font-size: 1.125rem; }

a { text-decoration: none; color: inherit; transition: color 0.2s; }

/* Utilities */
.container, .section-inner, .hero-container, .header-inner {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.center-text { text-align: center; margin-left: auto; margin-right: auto; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }

/* Header */
.site-header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-nav ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.site-nav {
  flex-shrink: 1;
  min-width: 0;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--color-accent);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  margin-right: 0.5rem;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-phone:hover {
  background: var(--color-primary);
  color: white;
}

.header-phone svg {
  flex-shrink: 0;
}

.header-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #0077b5;
  border-radius: 50%;
  margin-right: 0.4rem;
  transition: all 0.2s;
  flex-shrink: 0;
}

.header-linkedin:hover {
  background: #0077b5;
  color: white;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta:hover {
  background: var(--color-primary-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: background 0.2s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* Animation hamburger -> X */
.menu-toggle.is-active .hamburger {
  background: transparent;
}

.menu-toggle.is-active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.is-active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  padding: 40px 0;
  background: var(--color-bg);
  overflow: hidden;
}

.hero h1 {
  font-size: 40px;
}

.hero-figure {
  display: flex;
  flex-direction: column;
  justify-self: center;
}

.hero-figure img {
  max-height: 480px;
  width: auto;
  object-fit: cover;
}

.hero-caption {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top: 0.75rem;
  max-width: 100%;
  align-items: center;
}

.hero-caption-title {
  font-size: 0.95rem;
  color: var(--color-accent);
  font-weight: 500;
  font-style: italic;
  max-width: 100%;
  line-height: 1.4;
}

.hero-container {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 2rem;
  align-items: center;
  justify-items: start;
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--color-text-light);
}

.hero-figure img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Sections */
.section { padding: var(--spacing-section) 0; }
.section--cloud { background: var(--color-bg-alt); }
.section--white { background: var(--color-bg); }
.section--pale { background: var(--color-bg-pale); }
.section--soft-gray { background: #f2f4f8; }
.section--tinted { background: #eef2f6; }
.section--dark { background: var(--color-bg-dark); color: white; }
.section--dark h3, .section--dark p { color: rgba(255,255,255,0.9); }
.section--accent { background: var(--color-primary); color: white; }
.section--accent h2, .section--accent p { color: white; }

/* Components */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cta-button--primary {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.cta-button--outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.cta-button--white {
  background: white;
  color: var(--color-primary);
}

/* External link icon */
.external-icon {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  flex-shrink: 0;
}

.cta-button .external-icon {
  stroke: currentColor;
}

/* CTA Diagnostic CODIR - Extra visible */
.cta-diagnostic {
  position: relative;
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a5a4a 100%);
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.4);
}

/* Pseudo-element for GPU-composited glow animation */
.cta-diagnostic::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 4px 30px rgba(45, 106, 79, 0.6);
  opacity: 0;
  animation: pulse-glow 2s ease-in-out infinite;
  pointer-events: none;
}

.cta-diagnostic:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(45, 106, 79, 0.5);
}

.cta-diagnostic:hover::before {
  animation: none;
  opacity: 0;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* CTA Highlight Box - Zone encadrée */
.cta-highlight-box {
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.08) 0%, rgba(45, 106, 79, 0.03) 100%);
  border: 2px solid rgba(45, 106, 79, 0.15);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  margin-top: 2.5rem;
  text-align: center;
}

.cta-wrapper {
  position: relative;
  display: inline-block;
}

/* Badge Gratuit */
.cta-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #e63946;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(230, 57, 70, 0.4);
  z-index: 1;
}

/* Icône diagnostic */
.diagnostic-icon {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  flex-shrink: 0;
  stroke: currentColor;
}

/* Sous-texte CTA */
.cta-subtext {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.header-cta .external-icon {
  width: 14px;
  height: 14px;
  margin-left: 6px;
}

/* Hero Actions Container */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 1.5rem;
}

/* Logos */
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 3rem;
  list-style: none;
  padding: 2rem 0;
  margin: 0;
}

.logo-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-grid li img {
  height: 45px;
  width: auto;
  max-width: 160px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-grid li img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Cards & Columns */
.section-content, .two-columns, .three-columns {
  display: grid;
  gap: 2rem;
}

.two-columns { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.three-columns { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card, .feature {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-layout.reverse .text-content { order: 2; }
.split-layout.reverse .image-content { order: 1; }

.styled-figure img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.figcaption-right {
  text-align: right;
  font-style: italic;
  color: var(--color-text-light);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* About Section */
.about-figure img {
  max-height: 500px;
  width: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-certif img {
  max-height: calc(100vh - var(--header-height) - 100px);
  height: auto;
  width: auto;
  object-fit: contain;
}

.quote-inline {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-primary);
  border-left: 4px solid var(--color-accent);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

/* Video Section */
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.video-player {
  max-height: 450px;
  width: auto;
  max-width: 100%;
  border-radius: var(--radius-md);
}

.quote-block {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-primary);
  border-left: 4px solid var(--color-accent);
  padding-left: 1.5rem;
}

/* Locations */
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.loc-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Location Tags - Clickable Links */
.loc-tag--link {
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.loc-tag--link:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 63, 105, 0.3);
}

.loc-arrow {
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.loc-tag--link:hover .loc-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* FAQ */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.1);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
  list-style: none; /* Hide default triangle */
  position: relative;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  font-weight: bold;
}

.faq-item[open] summary::after { content: '-'; }

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--color-text-light);
}

/* Footer */
.site-footer {
  background: var(--color-bg-alt);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.footer-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.legal-links {
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-copyright {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin: 1rem 0 0;
  padding: 0;
}

/* Trust Section LinkedIn Link */
.trust-cta {
  margin-top: 2rem;
}

.linkedin-reco-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  color: #0077b5;
  border: 2px solid #0077b5;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.linkedin-reco-link:hover {
  background: #0077b5;
  color: white;
}

.linkedin-reco-link svg {
  flex-shrink: 0;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.breadcrumb-inner {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.breadcrumb a {
  color: var(--color-accent);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 0.5rem;
  color: var(--color-text-light);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .back-to-top {
    width: 44px;
    height: 44px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* Animations */
.fade-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive - Tablets (iPad Pro portrait) */
@media (max-width: 1100px) and (min-width: 901px) {
  .logo {
    font-size: 1.15rem;
    margin-right: 1rem;
  }

  .site-nav ul {
    gap: 0.6rem;
  }

  .site-nav a {
    font-size: 0.8rem;
  }

  .header-phone {
    padding: 0.35rem 0.6rem;
    font-size: 0.8rem;
  }

  .header-phone .phone-number {
    display: none;
  }

  .header-linkedin {
    width: 32px;
    height: 32px;
    margin-right: 0.25rem;
  }

  .header-cta {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero { background: var(--color-bg); text-align: center; }
  .hero-container, .split-layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero-figure { max-width: 500px; margin: 0 auto; }
  .hero-caption { text-align: center; }
  .split-layout.reverse .text-content { order: 0; }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
    flex-shrink: 0;
  }
  
  .site-nav {
    display: block !important;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: white;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .site-nav ul { flex-direction: column; align-items: center; gap: 1.5rem; }
  .header-cta { display: none; }
  .header-linkedin { width: 36px; height: 36px; margin-right: 0.25rem; }
  .header-phone .phone-number { display: none; }
  .header-phone { padding: 0.5rem; margin-right: 0.5rem; border: none; }
}

@media (max-width: 768px) {
  /* CTA Buttons responsive - tablets */
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    box-sizing: border-box;
  }

  .cta-button--outline {
    margin-left: 0;
  }
}

/* Mobile line breaks - hidden by default */
.mobile-break {
  display: none;
}

.mobile-hide {
  display: inline;
}

@media (max-width: 600px) {
  .mobile-break {
    display: block;
  }

  .mobile-hide {
    display: none;
  }

  .hero h1 { font-size: 2rem; }

  .figcaption-right {
    text-align: center;
  }
  .two-columns, .three-columns { grid-template-columns: 1fr; }

  /* CTA Buttons responsive - mobile */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .cta-button {
    width: 100%;
    max-width: none;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.85rem;
    box-sizing: border-box;
    text-align: center;
  }

  .cta-button--outline {
    margin-left: 0;
  }

  /* Section CTA buttons */
  .section .cta-button {
    max-width: 100%;
  }

  /* Logos responsive - mobile */
  .logo-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .logo-grid li {
    width: 100%;
    justify-content: center;
  }

  .logo-grid li img {
    height: 35px;
    max-width: 140px;
  }

  /* CTA Diagnostic responsive - mobile */
  .cta-highlight-box {
    padding: 1.5rem 1rem;
    margin-top: 2rem;
  }

  .cta-diagnostic {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }

  .cta-badge {
    top: -10px;
    right: -5px;
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
  }

  .cta-subtext {
    font-size: 0.8rem;
  }

  /* Footer responsive - mobile */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-inner p {
    margin: 0;
  }

  .site-footer a[href^="tel:"] {
    display: block;
    margin-top: 0.25rem;
    white-space: nowrap;
  }
}

/* Social Badges */
.social-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Social Badges Grid - 2 colonnes */
.social-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .social-badges-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.badge-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.badge-link:hover {
  transform: translateX(5px);
  opacity: 0.85;
}

.badge-text {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 500;
  min-width: 220px;
}

.badge-link svg,
.badge-link img {
  flex-shrink: 0;
}

.linkedin-icon {
  display: inline-flex;
  transition: transform 0.2s, opacity 0.2s;
}

.linkedin-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.icf-badge {
  display: inline-flex;
  transition: transform 0.2s, opacity 0.2s;
}

.icf-badge img {
  border-radius: 0;
}

.icf-badge:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

@media (max-width: 900px) {
  .social-badges {
    align-items: center;
    width: 100%;
  }

  .badge-text {
    min-width: auto;
  }

  #a-propos .text-content {
    text-align: center;
  }

  #a-propos .certif-badge {
    justify-content: center;
  }
}