/* ============================================
   DigitalTrust Consulting - Main Stylesheet
   Colors from logo: Navy #0A1628 | Cyan #00B4E4
   ============================================ */

:root {
  --navy: #0A1628;
  --navy-light: #132038;
  --cyan: #00B4E4;
  --cyan-dark: #0099c4;
  --cyan-light: #e6f7fc;
  --white: #ffffff;
  --gray-100: #f5f7fa;
  --gray-200: #e2e8f0;
  --gray-400: #a0aec0;
  --gray-600: #4a5568;
  --gray-800: #1a202c;
  --text: #1a1a2e;
  --shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 10px 40px rgba(10, 22, 40, 0.12);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 180, 228, 0.15);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 12px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.logo img {
  height: 42px;
  width: auto;
}

.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--cyan);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--cyan);
  background: rgba(0, 180, 228, 0.1);
}

.lang-toggle {
  display: flex !important;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0, 180, 228, 0.4);
}

.lang-toggle button {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 14px;
  cursor: pointer;
  transition: var(--transition);
  min-width: 44px;
  letter-spacing: 0.5px;
}

.lang-toggle button.active {
  background: var(--cyan);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, #0d2137 50%, #0a2a3d 100%);
  color: var(--white);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 228, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: normal;
  color: var(--cyan);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 640px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--cyan);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 180, 228, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ========== STATS ========== */
.stats {
  background: var(--navy);
  padding: 0 0 60px;
  margin-top: -1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--navy-light);
  border-radius: var(--radius);
  padding: 36px 24px;
  border: 1px solid rgba(0, 180, 228, 0.15);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ========== SECTIONS ========== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 750;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 10px;
}

/* ========== PILLARS / CARDS ========== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

.pillar-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--cyan-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--cyan);
}

.pillar-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ========== PROOF ========== */
.proof {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2a40 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.proof blockquote {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 24px;
  font-style: italic;
}

.proof cite {
  font-size: 0.9rem;
  color: var(--cyan);
  font-style: normal;
  font-weight: 600;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.about-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.about-card .role {
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.about-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.experience-list {
  margin-top: 20px;
}

.experience-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.experience-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
}

/* ========== VALUES ========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.value-item h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ========== SERVICES DETAIL ========== */
.service-block {
  margin-bottom: 40px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-200);
}

.service-block h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-block h3 .service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--cyan-light);
  border-radius: 10px;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.service-block ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.service-block li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.service-block li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

/* ========== WHY US ========== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.advantage-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border-top: 4px solid var(--cyan);
  box-shadow: var(--shadow);
  text-align: center;
}

.advantage-card .num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cyan);
  opacity: 0.3;
  margin-bottom: 8px;
}

.advantage-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.targets {
  margin-top: 48px;
}

.targets h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}

.targets-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.targets-list span {
  background: var(--cyan-light);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}

.contact-info h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--gray-600);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact-info a {
  color: var(--cyan);
  font-weight: 600;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--gray-100);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 180, 228, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-group input {
  margin-top: 4px;
  width: auto;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 400;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
  max-width: 280px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer ul a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--cyan) 0%, #0090c0 100%);
  padding: 64px 0;
  text-align: center;
  color: var(--navy);
}

.cta-section h2 {
  font-size: 1.8rem;
  font-weight: 750;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  opacity: 0.9;
}

/* ========== LANGUAGE TOGGLE CONTENT ========== */
[data-lang="en"] {
  display: none;
}

body.lang-en [data-lang="fr"] {
  display: none;
}

body.lang-en [data-lang="en"] {
  display: block;
}

body.lang-en span[data-lang="en"] {
  display: inline;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 180, 228, 0.2);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

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

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .service-block ul {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 120px 0 70px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 1.7rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}



/* ============================================
   LANGUAGE SYSTEM (CSS-first - more reliable)
   ============================================ */

/* By default show French, hide English */
[data-lang="en"] {
  display: none !important;
}

/* When body has .lang-en → show English, hide French */
body.lang-en [data-lang="fr"] {
  display: none !important;
}

body.lang-en [data-lang="en"] {
  display: block !important;
}

/* Special cases for inline elements */
body.lang-en span[data-lang="en"],
body.lang-en a[data-lang="en"],
body.lang-en strong[data-lang="en"],
body.lang-en em[data-lang="en"],
body.lang-en label[data-lang="en"] {
  display: inline !important;
}

body.lang-en h1[data-lang="en"],
body.lang-en h2[data-lang="en"],
body.lang-en h3[data-lang="en"],
body.lang-en p[data-lang="en"],
body.lang-en div[data-lang="en"],
body.lang-en li[data-lang="en"] {
  display: block !important;
}

/* Language toggle buttons - ALWAYS visible and strong */
.lang-toggle {
  display: flex !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(0, 180, 228, 0.5) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}

.lang-toggle button {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  cursor: pointer !important;
  min-width: 48px !important;
  letter-spacing: 0.5px !important;
}

.lang-toggle button.active {
  background: #00B4E4 !important;
  color: #0A1628 !important;
}

.lang-toggle button:not(.active):hover {
  background: rgba(0, 180, 228, 0.25) !important;
}


/* ============================================
   FIX v5 — Les boutons FR/EN doivent TOUJOURS être visibles.
   (La règle [data-lang="en"]{display:none} cachait le bouton EN,
   rendant la bascule vers l'anglais impossible.)
   ============================================ */
.lang-toggle button[data-lang="fr"],
.lang-toggle button[data-lang="en"],
body.lang-en .lang-toggle button[data-lang="fr"],
body.lang-en .lang-toggle button[data-lang="en"] {
  display: inline-block !important;
}

/* Les <option> du formulaire ne peuvent pas être masquées par display
   de façon fiable : on les gère aussi via hidden */
body.lang-en option[data-lang="fr"] { display: none !important; }
option[data-lang="en"] { display: none !important; }
body.lang-en option[data-lang="en"] { display: block !important; }


/* ============================================
   FIX v8 — Titres de la page Services :
   seuls les spans .service-icon sont des pastilles ;
   les titres FR/EN restent du texte normal.
   ============================================ */
.service-block h3 span[data-lang] {
  display: inline !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  color: var(--navy) !important;
  border-radius: 0 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}
.service-block h3 span[data-lang="en"] { display: none !important; }
body.lang-en .service-block h3 span[data-lang="fr"] { display: none !important; }
body.lang-en .service-block h3 span[data-lang="en"] { display: inline !important; }


/* ============================================
   v9 — BANDE DÉROULANTE (remplace le bandeau de chiffres)
   ============================================ */
.marquee {
  background: var(--navy);
  padding: 20px 0 26px;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0, 180, 228, 0.2);
  margin-top: -1px;
}

.marquee-track {
  display: inline-flex !important;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  animation: dtc-marquee 40s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes dtc-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.marquee-item::before { content: '✦'; color: var(--cyan); font-size: 0.8rem; }

/* Gestion des langues pour la bande (prioritaire sur les règles génériques) */
.marquee-track[data-lang="en"] { display: none !important; }
body.lang-en .marquee-track[data-lang="fr"] { display: none !important; }
body.lang-en .marquee-track[data-lang="en"] { display: inline-flex !important; }

/* Accessibilité : réduire l'animation si demandé par le système */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { white-space: normal; }
  .marquee-track { flex-wrap: wrap; gap: 16px 28px; justify-content: center; }
}


/* ============================================
   v10 — BANDEAU FIXE DE REPÈRES DE CONFIANCE
   (remplace la bande déroulante, plus d'animation)
   ============================================ */
.key-strip {
  background: var(--navy);
  padding: 18px 0 26px;
  border-bottom: 1px solid rgba(0, 180, 228, 0.2);
  margin-top: -1px;
}

.key-strip-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
}

.key-item {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.key-item::before { content: '✦'; color: var(--cyan); font-size: 0.8rem; }

/* Gestion des langues (prioritaire sur les règles génériques) */
.key-strip-items[data-lang="fr"] { display: flex !important; }
.key-strip-items[data-lang="en"] { display: none !important; }
body.lang-en .key-strip-items[data-lang="fr"] { display: none !important; }
body.lang-en .key-strip-items[data-lang="en"] { display: flex !important; }

@media (max-width: 560px) {
  .key-strip-items { gap: 10px 22px; }
  .key-item { font-size: 0.88rem; }
}


/* ============================================
   v11 — SCHÉMA « NOTRE APPROCHE »
   (Diagnostiquer -> Mettre en œuvre -> Pérenniser)
   ============================================ */
.approach {
  background: var(--navy);
  padding: 8px 0 44px;
  border-bottom: 1px solid rgba(0, 180, 228, 0.2);
  margin-top: -1px;
}

.approach-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.approach-step {
  background: var(--navy-light);
  border: 1px solid rgba(0, 180, 228, 0.55);
  border-radius: 12px;
  padding: 18px 26px;
  text-align: center;
  min-width: 180px;
  flex: 0 1 220px;
}

.approach-icon { font-size: 1.6rem; margin-bottom: 8px; }

.approach-step h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.approach-step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin: 0;
}

.approach-arrow {
  align-self: center;
  color: var(--cyan);
  font-size: 1.6rem;
  font-weight: 700;
}

@media (max-width: 700px) {
  .approach-steps { flex-direction: column; align-items: center; }
  .approach-step { width: 100%; max-width: 340px; flex: none; }
  .approach-arrow { transform: rotate(90deg); }
}


/* ============================================
   v12 — DENSITÉ : espacements réduits sur toutes les pages
   ============================================ */
.section { padding: 54px 0; }
.section-header { margin-bottom: 32px; }
.hero { padding: 120px 0 64px; }
.approach { padding: 4px 0 34px; }
.service-block { margin-bottom: 22px; padding: 24px 26px; }
.pillars-grid, .advantages-grid { gap: 18px; }
.pillar-card { padding: 24px 22px; }
.pillar-icon { margin-bottom: 14px; }
.advantage-card { padding: 26px 22px; }
.about-grid, .contact-grid { gap: 34px; }
.about-card, .contact-form { padding: 26px; }
.values-grid { margin-top: 32px !important; gap: 16px; }
.value-item { padding: 20px 18px; }
.targets { margin-top: 34px; }
.proof { padding: 44px 0; }
.cta-section { padding: 48px 0; }
.footer { padding: 38px 0 22px; }
.footer-grid { margin-bottom: 26px; gap: 30px; }

/* Photo de contexte sur l'accueil */
.hero { display: block; }
.hero .container.hero-content { position: relative; }
.hero-photo {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(0, 180, 228, 0.4);
  z-index: 0;
}

@media (max-width: 1050px) {
  .hero-photo { display: none; }
}


/* ============================================
   v13 — PHOTOS ET COMBLEMENT DES VIDES
   ============================================ */

/* Tuile photo dans la grille des expertises */
.pillar-photo { padding: 0; overflow: hidden; position: relative; display: flex; }
.pillar-photo img { width: 100%; height: 100%; min-height: 210px; object-fit: cover; display: block; }
.pillar-photo .pillar-photo-fallback { display: none; }
.pillar-photo.no-photo { padding: 24px 22px; background: var(--cyan-light); border-color: var(--cyan); }
.pillar-photo.no-photo img { display: none; }
.pillar-photo.no-photo .pillar-photo-fallback { display: block; }
.pillar-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--cyan-dark);
  font-weight: 700;
  font-size: 0.92rem;
}
.pillar-link:hover { color: var(--navy); }

/* Photo en tête d'une carte (À propos) */
.card-photo {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
}

/* Photo latérale (Contact) */
.side-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
}
