{"id":987617809,"date":"2026-07-02T07:30:11","date_gmt":"2026-07-02T07:30:11","guid":{"rendered":"https:\/\/teamcdg.com\/?page_id=987617809"},"modified":"2026-07-02T07:30:15","modified_gmt":"2026-07-02T07:30:15","slug":"fret-routier","status":"publish","type":"page","link":"https:\/\/teamcdg.com\/en\/fret-routier\/","title":{"rendered":"Fret Routier"},"content":{"rendered":"<p>[et_pb_section fb_built=&#8221;1&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; disabled_on=&#8221;off|off|off&#8221; module_class=&#8221;video-particle-section&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; background_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/07\/fret-routier-2.jpg&#8221; background_enable_video_mp4=&#8221;off&#8221; positioning=&#8221;none&#8221; z_index=&#8221;1&#8243; custom_padding=&#8221;50px||50px||true|false&#8221; custom_padding_tablet=&#8221;153px||153px||true|false&#8221; custom_padding_phone=&#8221;50px||50px||true|false&#8221; hover_enabled=&#8221;0&#8243; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; alt=&#8221;Fret Routier&#8221; title_text=&#8221;fret-routier&#8221; sticky_enabled=&#8221;0&#8243;][et_pb_row column_structure=&#8221;3_5,2_5&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; make_equal=&#8221;on&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; width=&#8221;95%&#8221; max_width=&#8221;92%&#8221; module_alignment=&#8221;center&#8221; custom_padding_tablet=&#8221;&#8221; custom_padding_phone=&#8221;|0px|0px|0px|false|true&#8221; animation_direction=&#8221;left&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;3_5&#8243; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; custom_css_main_element=&#8221;margin:auto;&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_code disabled_on=&#8221;on|on|on&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; disabled=&#8221;on&#8221; global_colors_info=&#8221;{}&#8221;]<canvas id=\"particles-canvas\"><\/canvas><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><script><!-- [et_pb_line_break_holder] -->document.addEventListener(\"DOMContentLoaded\", function() {<!-- [et_pb_line_break_holder] -->  const canvas = document.getElementById(\"particles-canvas\");<!-- [et_pb_line_break_holder] -->  if (!canvas) return;<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->  const ctx = canvas.getContext(\"2d\");<!-- [et_pb_line_break_holder] -->  let particles = [];<!-- [et_pb_line_break_holder] -->  const particleCount = 80;<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->  \/\/ Ensure proper canvas sizing<!-- [et_pb_line_break_holder] -->  function resizeCanvas() {<!-- [et_pb_line_break_holder] -->    const section = document.querySelector(\".video-particle-section\");<!-- [et_pb_line_break_holder] -->    canvas.width = section.offsetWidth;<!-- [et_pb_line_break_holder] -->    canvas.height = section.offsetHeight;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->  resizeCanvas();<!-- [et_pb_line_break_holder] -->  window.addEventListener(\"resize\", resizeCanvas);<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->  \/\/ Particle class<!-- [et_pb_line_break_holder] -->  class Particle {<!-- [et_pb_line_break_holder] -->    constructor() {<!-- [et_pb_line_break_holder] -->      this.x = Math.random() * canvas.width;<!-- [et_pb_line_break_holder] -->      this.y = Math.random() * canvas.height;<!-- [et_pb_line_break_holder] -->      this.size = Math.random() * 3 + 1;<!-- [et_pb_line_break_holder] -->      this.speedX = Math.random() * 0.8 - 0.4;<!-- [et_pb_line_break_holder] -->      this.speedY = Math.random() * 0.8 - 0.4;<!-- [et_pb_line_break_holder] -->      this.color = \"rgba(255,255,255,0.8)\";<!-- [et_pb_line_break_holder] -->    }<!-- [et_pb_line_break_holder] -->    update() {<!-- [et_pb_line_break_holder] -->      this.x += this.speedX;<!-- [et_pb_line_break_holder] -->      this.y += this.speedY;<!-- [et_pb_line_break_holder] -->      if (this.x < 0 || this.x > canvas.width) this.speedX *= -1;<!-- [et_pb_line_break_holder] -->      if (this.y < 0 || this.y > canvas.height) this.speedY *= -1;<!-- [et_pb_line_break_holder] -->    }<!-- [et_pb_line_break_holder] -->    draw() {<!-- [et_pb_line_break_holder] -->      ctx.beginPath();<!-- [et_pb_line_break_holder] -->      ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2);<!-- [et_pb_line_break_holder] -->      ctx.fillStyle = this.color;<!-- [et_pb_line_break_holder] -->      ctx.fill();<!-- [et_pb_line_break_holder] -->    }<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->  \/\/ Initialize particles<!-- [et_pb_line_break_holder] -->  function initParticles() {<!-- [et_pb_line_break_holder] -->    particles = [];<!-- [et_pb_line_break_holder] -->    for (let i = 0; i < particleCount; i++) {<!-- [et_pb_line_break_holder] -->      particles.push(new Particle());<!-- [et_pb_line_break_holder] -->    }<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->  \/\/ Animate particles<!-- [et_pb_line_break_holder] -->  function animate() {<!-- [et_pb_line_break_holder] -->    ctx.clearRect(0, 0, canvas.width, canvas.height);<!-- [et_pb_line_break_holder] -->    particles.forEach(p => {<!-- [et_pb_line_break_holder] -->      p.update();<!-- [et_pb_line_break_holder] -->      p.draw();<!-- [et_pb_line_break_holder] -->    });<!-- [et_pb_line_break_holder] -->    requestAnimationFrame(animate);<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->  initParticles();<!-- [et_pb_line_break_holder] -->  animate();<!-- [et_pb_line_break_holder] -->});<!-- [et_pb_line_break_holder] --><\/script><!-- [et_pb_line_break_holder] -->[\/et_pb_code][dnxte_multi_heading text_one=&#8221;Fret Routier&#8221; text_one_reveal_effect=&#8221;on&#8221; text_one_reveal_color_before=&#8221;#55668F&#8221; text_two_reveal_effect=&#8221;on&#8221; text_two_reveal_color_before=&#8221;#55668F&#8221; text_three_reveal_effect=&#8221;on&#8221; text_three_reveal_color_before=&#8221;#55668F&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_one_font=&#8221;Montserrat|700||on|||||&#8221; text_one_text_color=&#8221;#FFFFFF&#8221; text_one_font_size=&#8221;52px&#8221; text_one_line_height=&#8221;1.4em&#8221; text_two_font=&#8221;Montserrat|700|||||||&#8221; text_two_text_color=&#8221;#FFFFFF&#8221; text_two_font_size=&#8221;55px&#8221; text_two_line_height=&#8221;1.4em&#8221; text_three_font=&#8221;Montserrat|700|||||||&#8221; text_three_text_color=&#8221;#FFFFFF&#8221; text_three_font_size=&#8221;55px&#8221; text_three_line_height=&#8221;1.4em&#8221; width=&#8221;100%&#8221; max_width=&#8221;1000px&#8221; custom_margin=&#8221;||36px||false|false&#8221; custom_padding=&#8221;|||80px|false|false&#8221; custom_padding_tablet=&#8221;|||80px|false|false&#8221; custom_padding_phone=&#8221;|30px||30px|false|true&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; text_one_font_size_tablet=&#8221;55px&#8221; text_one_font_size_phone=&#8221;38px&#8221; text_one_font_size_last_edited=&#8221;on|phone&#8221; text_two_font_size_tablet=&#8221;55px&#8221; text_two_font_size_phone=&#8221;30px&#8221; text_two_font_size_last_edited=&#8221;on|phone&#8221; text_three_font_size_tablet=&#8221;55px&#8221; text_three_font_size_phone=&#8221;30px&#8221; text_three_font_size_last_edited=&#8221;on|phone&#8221; global_colors_info=&#8221;{}&#8221;][\/dnxte_multi_heading][\/et_pb_column][et_pb_column type=&#8221;2_5&#8243; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(255,255,255,0.66)&#8221; custom_padding=&#8221;29px|50px|15px|50px|false|true&#8221; border_radii=&#8221;on|4px|4px|4px|4px&#8221; global_colors_info=&#8221;{}&#8221;][dnxte_multi_heading text_one=&#8221;Nous contacter&#8221; heading_tag=&#8221;p&#8221; inline_multi_align=&#8221;center&#8221; text_one_margin=&#8221;||-1px||false|false&#8221; text_one_padding=&#8221;||0px||false|false&#8221; text_two_padding=&#8221;||0px||false|false&#8221; text_three_padding=&#8221;||0px||false|false&#8221; text_one_reveal_effect=&#8221;on&#8221; text_one_reveal_color_before=&#8221;#55668F&#8221; text_two_reveal_effect=&#8221;on&#8221; text_two_reveal_color_before=&#8221;#55668F&#8221; text_three_reveal_effect=&#8221;on&#8221; text_three_reveal_color_before=&#8221;#55668F&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_one_font=&#8221;Montserrat|700|||||||&#8221; text_one_text_align=&#8221;left&#8221; text_one_text_color=&#8221;#000000&#8243; text_one_font_size=&#8221;34px&#8221; text_one_line_height=&#8221;1.4em&#8221; text_two_font=&#8221;Montserrat|700|||||||&#8221; text_two_text_align=&#8221;center&#8221; text_two_text_color=&#8221;#FFFFFF&#8221; text_two_font_size=&#8221;0px&#8221; text_three_font=&#8221;Montserrat|700|||||||&#8221; text_three_text_color=&#8221;#FFFFFF&#8221; text_three_font_size=&#8221;55px&#8221; text_three_line_height=&#8221;0.8em&#8221; custom_margin=&#8221;||-11px||false|false&#8221; custom_margin_tablet=&#8221;||-35px||false|false&#8221; custom_margin_phone=&#8221;||-14px||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;0px||0px||true|false&#8221; text_one_font_size_tablet=&#8221;55px&#8221; text_one_font_size_phone=&#8221;30px&#8221; text_one_font_size_last_edited=&#8221;on|phone&#8221; text_one_line_height_tablet=&#8221;0.8em&#8221; text_one_line_height_phone=&#8221;1.1em&#8221; text_one_line_height_last_edited=&#8221;on|phone&#8221; text_two_font_size_tablet=&#8221;55px&#8221; text_two_font_size_phone=&#8221;30px&#8221; text_two_font_size_last_edited=&#8221;on|phone&#8221; text_three_font_size_tablet=&#8221;55px&#8221; text_three_font_size_phone=&#8221;30px&#8221; text_three_font_size_last_edited=&#8221;on|phone&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][\/dnxte_multi_heading][et_pb_code _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;||30px||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<div id=\"bitforms_4_987617809_1\" class=\"b4-bit-form AI4 _frm-bg-b4 bit-form bf-form-wrapper\">\n      \n          <form novalidate id=\"form-bitforms_4_987617809_1\" class=\"AG4 AH4 _frm-b4 bf-form\" method='post'>\n              <input type=\"text\" class=\"d-none\" name=\"csrf\" value=\"f5bDOeARmI0ok1vOCmgYQOxxUGoEO+3h56GFqLBohfc=\">\n              <input type=\"text\" class=\"d-none\" name=\"t_identity\" value=\"TV2DNYVuu7JIvnuBLpFa1I6RlNG4hzZAg0JfnOEbJ90=\">\n              \n              <input type=\"text\" class=\"d-none\" name=\"bitforms_id\" value=\"bitforms_4\">\n                  <div class=\"btcd-fld-itm b4-2 \"><div class=\"bf-text-field J4 N4 O4 P4  b4-2-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H4 z4 AD4  b4-2-lbl-wrp b4-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b4-2-1-lbl\" class=\"A4 D4 H4 z4 AA4 AB4 AC4  b4-2-lbl b4-lbl bf-lbl bf-label \" for=\"b4-2-1\">\n          \n          \n          SOCI\u00c9T\u00c9\n          \n          <span class=\"AE4 AF4  b4-2-req-smbl b4-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b4-2-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P4 y4  b4-2-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b4-2-1\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AZ4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4  b4-2-fld b4-fld bf-fld bf-field \" type=\"text\" required aria-required=\"true\" aria-describedby=\"b4-2-err-txt\" autocomplete='name' name='text-b4-2' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K4 L4 M4  b4-2-err-wrp b4-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I4  b4-2-err-inner b4-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b4-2-err-txt\" class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4  b4-2-err-msg b4-err-msg bf-err-msg bf-error-messages-container  J4  b4-2-err-txt b4-err-txt bf-err-txt bf-error-text  \">\n            \n          <\/div>\n          \n          \n        <\/div>\n      <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-8 \"><div class=\"bf-text-field J4 N4 O4 P4  b4-8-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H4 z4 AD4  b4-8-lbl-wrp b4-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b4-8-1-lbl\" class=\"A4 D4 H4 z4 AA4 AB4 AC4  b4-8-lbl b4-lbl bf-lbl bf-label \" for=\"b4-8-1\">\n          \n          \n          T\u00c9L\u00c9PHONE\n          \n          <span class=\"AE4 AF4  b4-8-req-smbl b4-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b4-8-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P4 y4  b4-8-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b4-8-1\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AZ4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4  b4-8-fld b4-fld bf-fld bf-field \" type=\"text\" required aria-required=\"true\" aria-describedby=\"b4-8-err-txt\" name='text-4-8' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K4 L4 M4  b4-8-err-wrp b4-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I4  b4-8-err-inner b4-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b4-8-err-txt\" class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4  b4-8-err-msg b4-err-msg bf-err-msg bf-error-messages-container  J4  b4-8-err-txt b4-err-txt bf-err-txt bf-error-text  \">\n            \n          <\/div>\n          \n          \n        <\/div>\n      <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-7 \"><div class=\"bf-email-field J4 N4 O4 P4  b4-7-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H4 z4 AD4  b4-7-lbl-wrp b4-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b4-7-1-lbl\" class=\"A4 D4 H4 z4 AA4 AB4 AC4  b4-7-lbl b4-lbl bf-lbl bf-label \" for=\"b4-7-1\">\n          \n          \n          EMAIL\n          \n          <span class=\"AE4 AF4  b4-7-req-smbl b4-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b4-7-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P4 y4  b4-7-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b4-7-1\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AZ4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4  b4-7-fld b4-fld bf-fld bf-field \" type=\"email\" required aria-required=\"true\" aria-describedby=\"b4-7-err-txt\" autocomplete='email' name='email-b4-7' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K4 L4 M4  b4-7-err-wrp b4-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I4  b4-7-err-inner b4-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b4-7-err-txt\" class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4  b4-7-err-msg b4-err-msg bf-err-msg bf-error-messages-container  J4  b4-7-err-txt b4-err-txt bf-err-txt bf-error-text  \">\n            \n          <\/div>\n          \n          \n        <\/div>\n      <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-3 \"><div class=\"bf-textarea-field J4 N4 O4 P4  b4-3-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H4 z4 AD4  b4-3-lbl-wrp b4-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b4-3-1-lbl\" class=\"A4 D4 H4 z4 AA4 AB4 AC4  b4-3-lbl b4-lbl bf-lbl bf-label \" for=\"b4-3-1\">\n          \n          \n          MESSAGE\n          \n          <span class=\"AE4 AF4  b4-3-req-smbl b4-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b4-3-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P4 y4  b4-3-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n      <textarea id=\"b4-3-1\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 h4 i4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AP4 AZ4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4  b4-3-fld b4-fld bf-fld bf-field \" required aria-required=\"true\" aria-describedby=\"b4-3-err-txt\" name='textarea-b4-3'><\/textarea>\n      \n      \n    <\/div>\n          \n          <div class=\"K4 L4 M4  b4-3-err-wrp b4-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I4  b4-3-err-inner b4-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b4-3-err-txt\" class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4  b4-3-err-msg b4-err-msg bf-err-msg bf-error-messages-container  J4  b4-3-err-txt b4-err-txt bf-err-txt bf-error-text  \">\n            \n          <\/div>\n          \n          \n        <\/div>\n      <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-1 \"><div class=\"bf-button-field J4 N4 O4 P4  b4-1-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper banner_form\">\n        \n        <div class=\"b4-1-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"D4  b4-1-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <button class=\"A4 B4 C4 D4 E4 F4 G4 H4 AJ4 AK4 AL4 AM4 AN4 AO4 Aj4 Ak4 Al4  b4-1-btn b4-btn bf-btn bf-button  \" type=\"submit\" name='button-b4-1' aria-describedby=\"b4-1-err-txt\">\n          \n          ENVOYER\n          \n          <span class=\"bf-spinner d-none\" aria-hidden=\"true\"><\/span>\n        <\/button>\n      <\/div>\n          \n          \n        <\/div>\n      <\/div><\/div>\n          <\/form>\n          \n          <div id='bf-form-msg-wrp-bitforms_4_987617809_1'><\/div>\n          <!-- \n            Live Region for Screen Reader Announcements (Accessibility)\n          -->\n          <div class=\"bf-live-region\" role=\"status\" aria-live=\"polite\" style=\"position: absolute;width: 1px;height: 1px;padding: 0;margin: -1px;overflow: hidden;white-space: nowrap;border: 0\"><\/div>\n          <div role=\"dialog\" aria-hidden=\"true\" data-modal-backdrop=\"true\" class=\"A4 D4 G4 AV4 AW4 AX4 msg-container-5 deactive scroll\">\n\t              <div data-contentid=\"bitforms_4_987617809_1\" data-msgid=\"5\" role=\"button\" class=\"A4 D4 G4 H4 AU4 msg-background-5 msg-backdrop\">\n\t                <div class=\"bf-msg-content H4 P4 T4 U4 AY4 Ap4 msg-content-5\">\n\t                  <button data-contentid=\"bitforms_4_987617809_1\" data-msgid=\"5\" class=\"C4 K4 N4 AQ4 AR4 AS4 Am4 An4 Ao4 close-5 bf-msg-close\" type=\"button\">\n\t                        <svg class=\"AT4 close-icn-5\" viewBox=\"0 0 30 30\">\n\t                        <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"4\" y1=\"3.88\" x2=\"26\" y2=\"26.12\"><\/line>\n\t                        <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"26\" y1=\"3.88\" x2=\"4\" y2=\"26.12\"><\/line>\n\t                        <\/svg>\n\t                  <\/button>\n\t                  <div class=\"msg-content\"><\/div>\n\t                <\/div>\n\t              <\/div>\n\t            <\/div>\n      <\/div>[\/et_pb_code][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;68px||68px||true|false&#8221; custom_padding_tablet=&#8221;68px||68px||true|false&#8221; custom_padding_phone=&#8221;30px||30px||true|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row column_structure=&#8221;2_5,3_5&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;0px||||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;2_5&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/07\/Fret-Routier-banner.jpg&#8221; title_text=&#8221;Fret Routier-banner&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; hover_enabled=&#8221;0&#8243; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  -webkit-mask-size: 800%;||  mask-size: 800%;||  -webkit-mask-position: 0;||  mask-position: 0;&#8221; border_radii=&#8221;on|20px|20px|20px|20px&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;||  -webkit-mask-position: 120%;||  mask-position: 120%;||  opacity: 1;&#8221; alt=&#8221;fret routier&#8221; sticky_enabled=&#8221;0&#8243;][\/et_pb_image][\/et_pb_column][et_pb_column type=&#8221;3_5&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_font_size=&#8221;18px&#8221; text_line_height=&#8221;1.4em&#8221; custom_margin=&#8221;0px||||false|false&#8221; custom_margin_tablet=&#8221;50px||||false|false&#8221; custom_margin_phone=&#8221;50px||||false|false&#8221; custom_margin_last_edited=&#8221;on|tablet&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Il est ind\u00e9niable que ces derni\u00e8res ann\u00e9es, le <\/span><b>transport routier<\/b><span style=\"font-weight: 400;\"> s&#8217;impose comme le pilier central des cha\u00eenes logistiques contemporaines. Consid\u00e9rez que le transport par camion demeure le vecteur essentiel pour assurer la liaison entre les sites de production et les zones de <\/span><b>consommation<\/b><span style=\"font-weight: 400;\"> finales.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">De nos jours, l&#8217;<\/span><b>exp\u00e9dition<\/b><span style=\"font-weight: 400;\"> de <\/span><b>marchandises<\/b><span style=\"font-weight: 400;\"> par la route requiert une r\u00e9activit\u00e9 hors pair pour satisfaire aux exigences \u00e9cologiques actuelles. Face aux <\/span><b>d\u00e9fis commerciaux<\/b><span style=\"font-weight: 400;\"> de notre \u00e9poque, il est imp\u00e9ratif de collaborer avec un <\/span><b>partenaire<\/b><span style=\"font-weight: 400;\"> dont le s\u00e9rieux est irr\u00e9prochable.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">C&#8217;est dans cette optique que <\/span><a href=\"https:\/\/teamcdg.com\/\"><span style=\"font-weight: 400;\">l&#8217;\u00e9quipe de <\/span><b>Team International<\/b><\/a><span style=\"font-weight: 400;\"> con\u00e7oit des strat\u00e9gies personnalis\u00e9es afin d&#8217;assurer une <\/span><b>s\u00e9curit\u00e9<\/b><span style=\"font-weight: 400;\"> sans faille pour l&#8217;ensemble de vos cargaisons.<\/span><\/p>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;68px||68px||true|false&#8221; custom_padding_tablet=&#8221;68px||68px||true|false&#8221; custom_padding_phone=&#8221;30px||30px||true|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;0px||10px||false|false&#8221; custom_margin_tablet=&#8221;||50px||false|false&#8221; custom_margin_phone=&#8221;||0px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; custom_padding=&#8221;0px||||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_2_font=&#8221;Montserrat|700|||||||&#8221; header_2_text_align=&#8221;center&#8221; header_2_text_color=&#8221;#000000&#8243; header_2_font_size=&#8221;34px&#8221; header_2_line_height=&#8221;1.2em&#8221; header_2_font_size_tablet=&#8221;34px&#8221; header_2_font_size_phone=&#8221;30px&#8221; header_2_font_size_last_edited=&#8221;on|phone&#8221; header_2_line_height_tablet=&#8221;1.2em&#8221; header_2_line_height_phone=&#8221;1.2em&#8221; header_2_line_height_last_edited=&#8221;on|phone&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<h2><strong>L&#8217;essor strat\u00e9gique du transport routier de marchandises<br \/>\n<\/strong><\/h2>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=&#8221;3_5,2_5&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;#f7f7f7&#8243; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;||||false|false&#8221; custom_padding=&#8221;20px|20px|50px|20px|false|true&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;3_5&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_font_size=&#8221;18px&#8221; text_line_height=&#8221;1.4em&#8221; custom_margin=&#8221;0px||||false|false&#8221; custom_margin_tablet=&#8221;0px||||false|false&#8221; custom_margin_phone=&#8221;40px||||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Pour r\u00e9pondre aux imp\u00e9ratifs de durabilit\u00e9 et aux <\/span><b>d\u00e9fis commerciaux<\/b><span style=\"font-weight: 400;\"> contemporains, l&#8217;appui d&#8217;un <\/span><b>partenaire<\/b><span style=\"font-weight: 400;\"> d&#8217;une fiabilit\u00e9 exemplaire est devenu incontournable. Fort de cette vision, <\/span><a href=\"https:\/\/teamcdg.com\/\"><span style=\"font-weight: 400;\">l&#8217;\u00e9quipe de <\/span><b>Team International<\/b><\/a><span style=\"font-weight: 400;\"> \u00e9labore des plans logistiques sur mesure garantissant une <\/span><b>s\u00e9curit\u00e9<\/b><span style=\"font-weight: 400;\"> absolue pour vos exp\u00e9ditions.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Le <\/span><b>march\u00e9<\/b><span style=\"font-weight: 400;\"> europ\u00e9en s&#8217;appuie prioritairement sur le fret routier pour p\u00e9renniser sa <\/span><b>croissance \u00e9conomique<\/b><span style=\"font-weight: 400;\">. En effet, les <\/span><b>\u00e9changes<\/b><span style=\"font-weight: 400;\"> commerciaux de la <\/span><b>France<\/b><span style=\"font-weight: 400;\"> avec ses principaux<\/span><b> partenaires commerciaux<\/b><span style=\"font-weight: 400;\"> repr\u00e9sentent chaque <\/span><b>ann\u00e9e<\/b><span style=\"font-weight: 400;\"> des <\/span><b>milliards<\/b><span style=\"font-weight: 400;\"> de <\/span><b>usd<\/b><span style=\"font-weight: 400;\">. Cette dynamique logistique soutient le <\/span><b>pib<\/b><span style=\"font-weight: 400;\"> r\u00e9gional en optimisant l&#8217;activit\u00e9 industrielle.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Pour r\u00e9pondre aux attentes du march\u00e9, les <\/span><b>entreprises<\/b><span style=\"font-weight: 400;\"> s&#8217;efforcent constamment de r\u00e9duire leur <\/span><b>temps<\/b><span style=\"font-weight: 400;\"> de cycle. Bien que d&#8217;autres modes de transport progressent, la route demeure sans \u00e9gale pour sa flexibilit\u00e9 de porte \u00e0 porte dans une <\/span><b>\u00e9conomie<\/b><span style=\"font-weight: 400;\"> de flux tendus. Nous mobilisons ainsi nos ressources d&#8217;<\/span><b>affr\u00e8tement<\/b><span style=\"font-weight: 400;\"> pour accompagner votre <\/span><b>d\u00e9veloppement<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">La <\/span><b>communication<\/b><span style=\"font-weight: 400;\"> permanente avec nos \u00e9quipes de terrain permet une r\u00e9activit\u00e9 optimale face aux impr\u00e9vus. Par ailleurs, la gestion des formalit\u00e9s de <\/span><b>douane<\/b><span style=\"font-weight: 400;\">, notamment hors Union Europ\u00e9enne, exige une rigueur administrative totale.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Face \u00e0 la complexit\u00e9 des nouvelles directives num\u00e9riques, notre <\/span><b>soci\u00e9t\u00e9<\/b><span style=\"font-weight: 400;\"> pr\u00e9pare chaque <\/span><b>document<\/b><span style=\"font-weight: 400;\"> officiel avec soin pour pr\u00e9venir tout blocage. Cette expertise douani\u00e8re est au c\u0153ur de la <\/span><b>relation<\/b><span style=\"font-weight: 400;\"> de <\/span><b>confiance<\/b><span style=\"font-weight: 400;\"> que nous entretenons avec nos clients.<\/span><\/p>\n<p>[\/et_pb_text][\/et_pb_column][et_pb_column type=&#8221;2_5&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/07\/Zones-geographiques-et-corridors-de-distribution-routiere.jpg&#8221; title_text=&#8221;Zones g\u00e9ographiques et corridors de distribution routi\u00e8re&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; hover_enabled=&#8221;0&#8243; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);|| mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);|| -webkit-mask-size: 800%;|| mask-size: 800%;|| -webkit-mask-position: 0;|| mask-position: 0;&#8221; border_radii=&#8221;on|20px|20px|20px|20px&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;|| -webkit-mask-position: 120%;|| mask-position: 120%;|| opacity: 1;&#8221; sticky_enabled=&#8221;0&#8243;][\/et_pb_image][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;68px||68px||true|false&#8221; custom_padding_tablet=&#8221;68px||68px||true|false&#8221; custom_padding_phone=&#8221;30px||30px||true|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;0px||10px||false|false&#8221; custom_margin_tablet=&#8221;||50px||false|false&#8221; custom_margin_phone=&#8221;||0px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; custom_padding=&#8221;0px||||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_2_font=&#8221;Montserrat|700|||||||&#8221; header_2_text_align=&#8221;center&#8221; header_2_text_color=&#8221;#000000&#8243; header_2_font_size=&#8221;34px&#8221; header_2_line_height=&#8221;1.2em&#8221; header_2_font_size_tablet=&#8221;34px&#8221; header_2_font_size_phone=&#8221;30px&#8221; header_2_font_size_last_edited=&#8221;on|phone&#8221; header_2_line_height_tablet=&#8221;1.2em&#8221; header_2_line_height_phone=&#8221;1.2em&#8221; header_2_line_height_last_edited=&#8221;on|phone&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<h2><strong>Nos solutions de fret routier et d&#8217;affr\u00e8tement sur mesure<br \/>\n<\/strong><\/h2>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=&#8221;2_5,3_5&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;#f7f7f7&#8243; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;||||false|false&#8221; custom_padding=&#8221;20px|20px|50px|20px|false|true&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;2_5&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/07\/Lessor-strategique-du-transport-routier-de-marchandises.jpg&#8221; title_text=&#8221;L\u2019essor strat\u00e9gique du transport routier de marchandises&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; hover_enabled=&#8221;0&#8243; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);|| mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);|| -webkit-mask-size: 800%;|| mask-size: 800%;|| -webkit-mask-position: 0;|| mask-position: 0;&#8221; border_radii=&#8221;on|20px|20px|20px|20px&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;|| -webkit-mask-position: 120%;|| mask-position: 120%;|| opacity: 1;&#8221; alt=&#8221;L\u2019essor strat\u00e9gique du transport routier de marchandises&#8221; sticky_enabled=&#8221;0&#8243;][\/et_pb_image][\/et_pb_column][et_pb_column type=&#8221;3_5&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_font_size=&#8221;18px&#8221; text_line_height=&#8221;1.4em&#8221; custom_margin=&#8221;0px||||false|false&#8221; custom_margin_tablet=&#8221;0px||||false|false&#8221; custom_margin_phone=&#8221;40px||||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">L&#8217;\u00e9quipe de <\/span><a href=\"https:\/\/teamcdg.com\/services\/\"><b>Team International<\/b><span style=\"font-weight: 400;\"> a d\u00e9velopp\u00e9 des <\/span><b>services<\/b><span style=\"font-weight: 400;\"> de haute pr\u00e9cision<\/span><\/a><span style=\"font-weight: 400;\"> afin de satisfaire la multiplicit\u00e9 de vos attentes. <\/span><b>Notre approche<\/b><span style=\"font-weight: 400;\"> d\u00e9bute par une \u00e9tude rigoureuse de la nature et du <\/span><b>volume<\/b><span style=\"font-weight: 400;\"> de votre <\/span><b>produit<\/b><span style=\"font-weight: 400;\"> pour d\u00e9finir le meilleur trajet. Pour vos besoins de <\/span><b>livraison<\/b><span style=\"font-weight: 400;\"> imp\u00e9ratifs, nous mobilisons par exemple un v\u00e9hicule l\u00e9ger en <\/span><b>fret express<\/b><span style=\"font-weight: 400;\">, garantissant un \u00e9quilibre optimal entre r\u00e9activit\u00e9 et <\/span><b>prix<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Nous proposons des solutions techniques pour chaque <\/span><b>secteur<\/b><span style=\"font-weight: 400;\">. Nos services de <\/span><b>transport<\/b><span style=\"font-weight: 400;\"> frigorifique assurent la pr\u00e9servation de vos <\/span><b>produits alimentaires<\/b><span style=\"font-weight: 400;\"> ou de sant\u00e9. Par ailleurs, nos conducteurs certifi\u00e9s ADR assurent la gestion s\u00e9curis\u00e9e des <\/span><b>mati\u00e8res dangereuses<\/b><span style=\"font-weight: 400;\">. Voici nos leviers op\u00e9rationnels :<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">L&#8217;affr\u00e8tement en camions complets (FTL) pour vos flux industriels cons\u00e9quents ;<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Le groupage et la messagerie (LTL) pour rentabiliser vos envois partiels ;<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Le v\u00e9hicule l\u00e9ger d\u00e9di\u00e9 pour vos pi\u00e8ces strat\u00e9giques et urgences critiques ;<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">La logistique du <\/span><b>mat\u00e9riel sc\u00e9nique<\/b><span style=\"font-weight: 400;\"> avec gestion du <\/span><b>carnet ATA<\/b><span style=\"font-weight: 400;\"> pour vos tourn\u00e9es ;<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Le transport \u00e0 temp\u00e9rature contr\u00f4l\u00e9e pour maintenir la <\/span><b>qualit\u00e9<\/b><span style=\"font-weight: 400;\"> des marchandises p\u00e9rissables.<\/span><\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">Chaque intervention est pr\u00e9cis\u00e9ment ajust\u00e9e \u00e0 vos contraintes de <\/span><b>d\u00e9lai<\/b><span style=\"font-weight: 400;\">. Nous nous engageons sur un <\/span><b>tarif<\/b><span style=\"font-weight: 400;\"> comp\u00e9titif tout en pla\u00e7ant la <\/span><b>s\u00e9curit\u00e9<\/b><span style=\"font-weight: 400;\"> au premier plan. Cette exigence fait de nous le <\/span><b>meilleur<\/b><span style=\"font-weight: 400;\"> partenaire pour le pilotage de votre <\/span><b>entreprise import export<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;68px||68px||true|false&#8221; custom_padding_tablet=&#8221;68px||68px||true|false&#8221; custom_padding_phone=&#8221;30px||30px||true|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;0px||10px||false|false&#8221; custom_margin_tablet=&#8221;||50px||false|false&#8221; custom_margin_phone=&#8221;||0px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; custom_padding=&#8221;0px||||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_2_font=&#8221;Montserrat|700|||||||&#8221; header_2_text_align=&#8221;center&#8221; header_2_text_color=&#8221;#000000&#8243; header_2_font_size=&#8221;34px&#8221; header_2_line_height=&#8221;1.2em&#8221; header_2_font_size_tablet=&#8221;34px&#8221; header_2_font_size_phone=&#8221;30px&#8221; header_2_font_size_last_edited=&#8221;on|phone&#8221; header_2_line_height_tablet=&#8221;1.2em&#8221; header_2_line_height_phone=&#8221;1.2em&#8221; header_2_line_height_last_edited=&#8221;on|phone&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<h2><strong>Un processus op\u00e9rationnel rigoureux pour vos flux terrestres<br \/>\n<\/strong><\/h2>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=&#8221;3_5,2_5&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;#f7f7f7&#8243; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;||||false|false&#8221; custom_padding=&#8221;20px|20px|50px|20px|false|true&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;3_5&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_font_size=&#8221;18px&#8221; text_line_height=&#8221;1.4em&#8221; custom_margin=&#8221;0px||||false|false&#8221; custom_margin_tablet=&#8221;0px||||false|false&#8221; custom_margin_phone=&#8221;40px||||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">La r\u00e9ussite d&#8217;un <\/span><a href=\"https:\/\/teamcdg.com\/transitaire\/\"><span style=\"font-weight: 400;\">transit terrestre<\/span><\/a><span style=\"font-weight: 400;\"> s&#8217;appuie sur une anticipation rigoureuse. Pour chaque <\/span><b>projet<\/b><span style=\"font-weight: 400;\">, nous validons d&#8217;abord la faisabilit\u00e9 technique du chargement. Cette <\/span><b>\u00e9tape<\/b><span style=\"font-weight: 400;\"> essentielle sert \u00e0 d\u00e9terminer la remorque adapt\u00e9e, comme un fourgon, un plateau ou une b\u00e2che, afin d&#8217;\u00e9carter tout impr\u00e9vu lors de la manutention.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Par la suite, notre <\/span><b>\u00e9quipe<\/b><span style=\"font-weight: 400;\"> organise l&#8217;enl\u00e8vement depuis vos entrep\u00f4ts ou votre site de <\/span><b>production<\/b><span style=\"font-weight: 400;\">. Nous assurons une supervision pr\u00e9cise pour pr\u00e9venir tout <\/span><b>risque<\/b><span style=\"font-weight: 400;\"> de d\u00e9s\u00e9quilibre ou de dommage. Parall\u00e8lement, nous \u00e9tablissons la lettre de voiture internationale (CMR) avec une exactitude totale pour chaque colis et palette.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Le suivi de l&#8217;acheminement est effectu\u00e9 en continu par nos exploitants. Malgr\u00e9 les al\u00e9as climatiques ou de trafic, nos itin\u00e9raires sont ajust\u00e9s en temps r\u00e9el. Gr\u00e2ce \u00e0 cette <\/span><b>agilit\u00e9<\/b><span style=\"font-weight: 400;\">, nous transformons chaque <\/span><b>d\u00e9fi<\/b><span style=\"font-weight: 400;\"> logistique en une op\u00e9ration fluide pour nos clients.<\/span><\/p>\n<p>[\/et_pb_text][\/et_pb_column][et_pb_column type=&#8221;2_5&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/07\/Nos-solutions-de-fret-routier-et-daffretement-sur-mesure.jpg&#8221; title_text=&#8221;Nos solutions de fret routier et d\u2019affr\u00e8tement sur mesure&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; hover_enabled=&#8221;0&#8243; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);|| mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);|| -webkit-mask-size: 800%;|| mask-size: 800%;|| -webkit-mask-position: 0;|| mask-position: 0;&#8221; border_radii=&#8221;on|20px|20px|20px|20px&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;|| -webkit-mask-position: 120%;|| mask-position: 120%;|| opacity: 1;&#8221; alt=&#8221;Nos solutions de fret routier et d\u2019affr\u00e8tement sur mesure&#8221; sticky_enabled=&#8221;0&#8243;][\/et_pb_image][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;68px||68px||true|false&#8221; custom_padding_tablet=&#8221;68px||68px||true|false&#8221; custom_padding_phone=&#8221;30px||30px||true|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;0px||10px||false|false&#8221; custom_margin_tablet=&#8221;||50px||false|false&#8221; custom_margin_phone=&#8221;||0px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; custom_padding=&#8221;0px||||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_2_font=&#8221;Montserrat|700|||||||&#8221; header_2_text_align=&#8221;center&#8221; header_2_text_color=&#8221;#000000&#8243; header_2_font_size=&#8221;34px&#8221; header_2_line_height=&#8221;1.2em&#8221; header_2_font_size_tablet=&#8221;34px&#8221; header_2_font_size_phone=&#8221;30px&#8221; header_2_font_size_last_edited=&#8221;on|phone&#8221; header_2_line_height_tablet=&#8221;1.2em&#8221; header_2_line_height_phone=&#8221;1.2em&#8221; header_2_line_height_last_edited=&#8221;on|phone&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<h2><strong>Nos atouts strat\u00e9giques : Tra\u00e7abilit\u00e9, assurance et durabilit\u00e9<\/strong><\/h2>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=&#8221;3_5,2_5&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; background_enable_color=&#8221;off&#8221; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;||||false|false&#8221; custom_padding=&#8221;20px||50px||false|true&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;3_5&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_font_size=&#8221;18px&#8221; text_line_height=&#8221;1.4em&#8221; custom_margin=&#8221;0px||||false|false&#8221; custom_margin_tablet=&#8221;50px||||false|false&#8221; custom_margin_phone=&#8221;50px||||false|false&#8221; custom_margin_last_edited=&#8221;on|tablet&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Sachez que la visibilit\u00e9 en <\/span><b>temps<\/b><span style=\"font-weight: 400;\"> r\u00e9el est devenue une exigence absolue sur le <\/span><b>march\u00e9<\/b> <b>actuel<\/b><span style=\"font-weight: 400;\">. Notez que nous mettons en place une <\/span><b>tra\u00e7abilit\u00e9 24\/7<\/b><span style=\"font-weight: 400;\"> pour l&#8217;int\u00e9gralit\u00e9 de vos exp\u00e9ditions routi\u00e8res.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Il est \u00e0 noter que cet outil num\u00e9rique performant vous permet de rassurer votre propre <\/span><b>consommateur<\/b><span style=\"font-weight: 400;\"> final quant \u00e0 l&#8217;arriv\u00e9e imminente de sa commande. La ma\u00eetrise de l&#8217;information est aujourd&#8217;hui aussi importante que le d\u00e9placement physique des biens.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Le fait est que nous proposons syst\u00e9matiquement une <\/span><b>assurance ad valorem<\/b><span style=\"font-weight: 400;\"> pour couvrir la <\/span><b>valeur<\/b><span style=\"font-weight: 400;\"> financi\u00e8re totale de votre chargement. \u00c0 titre d&#8217;exemple, le transport de fret <\/span><b>sensible<\/b><span style=\"font-weight: 400;\"> ou de <\/span><b>haute technologie<\/b><span style=\"font-weight: 400;\"> demande cette protection maximale pour s\u00e9curiser votre <\/span><b>investissement<\/b><span style=\"font-weight: 400;\">.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">De surcro\u00eet, nos protocoles anti-vol imposent des stationnements exclusifs sur des aires s\u00e9curis\u00e9es lors des pauses obligatoires des conducteurs. Nous fondons notre promesse de service sur les piliers suivants :<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Une g\u00e9olocalisation permanente de l&#8217;ensemble des v\u00e9hicules sur le r\u00e9seau europ\u00e9en ;<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Une couverture assurantielle compl\u00e8te contre les dommages, le vol ou les accidents de la circulation ;<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">La fourniture syst\u00e9matique d&#8217;un <\/span><b>CO\u2082 report<\/b><span style=\"font-weight: 400;\"> pour mesurer et r\u00e9duire votre empreinte carbone.<\/span><\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">Il faut savoir que ce rapport environnemental r\u00e9pond directement aux nouvelles directives du <\/span><b>commerce international<\/b><span style=\"font-weight: 400;\">. De ce fait, vous pouvez justifier de vos efforts de <\/span><b>durabilit\u00e9<\/b><span style=\"font-weight: 400;\"> aupr\u00e8s de vos actionnaires et de vos clients. En plus, cet engagement \u00e9co-responsable renforce durablement la <\/span><b>confiance<\/b><span style=\"font-weight: 400;\"> de vos diff\u00e9rents <\/span><b>partenaires commerciaux<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p>[\/et_pb_text][\/et_pb_column][et_pb_column type=&#8221;2_5&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/07\/Un-processus-operationnel-rigoureux-pour-vos-flux-terrestres.jpg&#8221; title_text=&#8221;Un processus op\u00e9rationnel rigoureux pour vos flux terrestres&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; hover_enabled=&#8221;0&#8243; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);|| mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);|| -webkit-mask-size: 800%;|| mask-size: 800%;|| -webkit-mask-position: 0;|| mask-position: 0;&#8221; border_radii=&#8221;on|20px|20px|20px|20px&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;|| -webkit-mask-position: 120%;|| mask-position: 120%;|| opacity: 1;&#8221; alt=&#8221;Un processus op\u00e9rationnel rigoureux pour vos flux terrestres&#8221; sticky_enabled=&#8221;0&#8243;][\/et_pb_image][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;68px||68px||true|false&#8221; custom_padding_tablet=&#8221;68px||68px||true|false&#8221; custom_padding_phone=&#8221;30px||30px||true|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;0px||10px||false|false&#8221; custom_margin_tablet=&#8221;||50px||false|false&#8221; custom_margin_phone=&#8221;||0px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; custom_padding=&#8221;0px||||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_2_font=&#8221;Montserrat|700|||||||&#8221; header_2_text_align=&#8221;center&#8221; header_2_text_color=&#8221;#000000&#8243; header_2_font_size=&#8221;34px&#8221; header_2_line_height=&#8221;1.2em&#8221; header_2_font_size_tablet=&#8221;34px&#8221; header_2_font_size_phone=&#8221;30px&#8221; header_2_font_size_last_edited=&#8221;on|phone&#8221; header_2_line_height_tablet=&#8221;1.2em&#8221; header_2_line_height_phone=&#8221;1.2em&#8221; header_2_line_height_last_edited=&#8221;on|phone&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<h2><strong>Secteurs d&#8217;activit\u00e9 et sp\u00e9cialisations industrielles<br \/>\n<\/strong><\/h2>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=&#8221;2_5,3_5&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; background_enable_color=&#8221;off&#8221; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;||||false|false&#8221; custom_padding=&#8221;20px||50px||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;2_5&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/07\/Nos-atouts-strategiques-Tracabilite-assurance-et-durabilite.jpg&#8221; title_text=&#8221;Nos atouts strat\u00e9giques Tra\u00e7abilit\u00e9, assurance et durabilit\u00e9&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; hover_enabled=&#8221;0&#8243; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  -webkit-mask-size: 800%;||  mask-size: 800%;||  -webkit-mask-position: 0;||  mask-position: 0;&#8221; border_radii=&#8221;on|20px|20px|20px|20px&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;||  -webkit-mask-position: 120%;||  mask-position: 120%;||  opacity: 1;&#8221; alt=&#8221;Nos atouts strat\u00e9giques : Tra\u00e7abilit\u00e9, assurance et durabilit\u00e9&#8221; sticky_enabled=&#8221;0&#8243;][\/et_pb_image][\/et_pb_column][et_pb_column type=&#8221;3_5&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_font_size=&#8221;18px&#8221; text_line_height=&#8221;1.4em&#8221; custom_margin=&#8221;0px||||false|false&#8221; custom_margin_tablet=&#8221;0px||||false|false&#8221; custom_margin_phone=&#8221;40px||||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">L&#8217;expertise historique de <\/span><b>Team International<\/b><span style=\"font-weight: 400;\"> dans l&#8217;<\/span><b>affr\u00e8tement<\/b><span style=\"font-weight: 400;\"> routier permet de r\u00e9pondre \u00e0 des exigences sectorielles pointues. Dans le domaine du <\/span><b>mat\u00e9riel sc\u00e9nique<\/b><span style=\"font-weight: 400;\">, notre ponctualit\u00e9 rigoureuse est le facteur <\/span><b>cl\u00e9<\/b><span style=\"font-weight: 400;\"> pour la livraison de structures et d&#8217;\u00e9quipements lors de grands \u00e9v\u00e9nements culturels.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Parall\u00e8lement, nous ma\u00eetrisons les codes du <\/span><b>luxe<\/b><span style=\"font-weight: 400;\"> et des <\/span><b>\u0153uvres d&#8217;art<\/b><span style=\"font-weight: 400;\">, o\u00f9 la discr\u00e9tion et le soin extr\u00eame sont de mise. Pour la <\/span><b>sant\u00e9<\/b><span style=\"font-weight: 400;\">, nos v\u00e9hicules frigorifiques connect\u00e9s assurent une int\u00e9grit\u00e9 thermique constante.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">L&#8217;industrie automobile s&#8217;appuie \u00e9galement sur nous pour le transport de <\/span><b>v\u00e9hicules<\/b><span style=\"font-weight: 400;\"> et de composants lourds. Malgr\u00e9 les contraintes de <\/span><b>production<\/b><span style=\"font-weight: 400;\"> en flux tendu, notre capacit\u00e9 d&#8217;adaptation soutient efficacement l&#8217;<\/span><b>\u00e9conomie<\/b><span style=\"font-weight: 400;\"> moderne.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Notre p\u00f4le <\/span><b>a\u00e9ronautique<\/b><span style=\"font-weight: 400;\"> assure \u00e9galement le transport critique de <\/span><b>moteurs d&#8217;avion<\/b><span style=\"font-weight: 400;\">, de <\/span><b>pi\u00e8ces d\u00e9tach\u00e9es<\/b><span style=\"font-weight: 400;\"> et d&#8217;<\/span><b>\u00e9quipements avioniques<\/b><span style=\"font-weight: 400;\"> avec une pr\u00e9cision chirurgicale.<\/span><\/p>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;68px||68px||true|false&#8221; custom_padding_tablet=&#8221;68px||68px||true|false&#8221; custom_padding_phone=&#8221;30px||30px||true|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;0px||10px||false|false&#8221; custom_margin_tablet=&#8221;||50px||false|false&#8221; custom_margin_phone=&#8221;||0px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; custom_padding=&#8221;0px||||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_2_font=&#8221;Montserrat|700|||||||&#8221; header_2_text_align=&#8221;center&#8221; header_2_text_color=&#8221;#000000&#8243; header_2_font_size=&#8221;34px&#8221; header_2_line_height=&#8221;1.2em&#8221; header_2_font_size_tablet=&#8221;34px&#8221; header_2_font_size_phone=&#8221;30px&#8221; header_2_font_size_last_edited=&#8221;on|phone&#8221; header_2_line_height_tablet=&#8221;1.2em&#8221; header_2_line_height_phone=&#8221;1.2em&#8221; header_2_line_height_last_edited=&#8221;on|phone&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<h2><strong>Zones g\u00e9ographiques et corridors de distribution routi\u00e8re<br \/>\n<\/strong><\/h2>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=&#8221;3_5,2_5&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; background_enable_color=&#8221;off&#8221; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;||||false|false&#8221; custom_padding=&#8221;20px||50px||false|true&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;3_5&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_font_size=&#8221;18px&#8221; text_line_height=&#8221;1.4em&#8221; custom_margin=&#8221;0px||||false|false&#8221; custom_margin_tablet=&#8221;50px||||false|false&#8221; custom_margin_phone=&#8221;50px||||false|false&#8221; custom_margin_last_edited=&#8221;on|tablet&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Notre couverture routi\u00e8re s&#8217;\u00e9tend sur l&#8217;ensemble du territoire europ\u00e9en et s&#8217;\u00e9tire jusqu&#8217;aux fronti\u00e8res orientales.La <\/span><b>France<\/b><span style=\"font-weight: 400;\"> reste notre plaque tournante principale, avec des hubs de <\/span><b>cross-docking<\/b><span style=\"font-weight: 400;\"> strat\u00e9giquement positionn\u00e9s en \u00cele-de-France et dans la <\/span><b>r\u00e9gion<\/b><span style=\"font-weight: 400;\"> lyonnaise.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Il est \u00e0 noter que ces plateformes facilitent le regroupement des marchandises avant leur r\u00e9exp\u00e9dition vers les diff\u00e9rents pays voisins. Le fait est que nous desservons quotidiennement des destinations majeures comme l&#8217;Allemagne, l&#8217;Italie, l&#8217;Espagne et le Benelux. \u00c0 titre d&#8217;exemple, les flux industriels vers les pays d&#8217;Europe de l&#8217;Est connaissent une <\/span><b>augmentation<\/b><span style=\"font-weight: 400;\"> tr\u00e8s soutenue, et nous y r\u00e9pondons par des lignes r\u00e9guli\u00e8res fiables.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">De surcro\u00eet, notre <\/span><b>organisation<\/b><span style=\"font-weight: 400;\"> routi\u00e8re permet des connexions extr\u00eamement rapides avec les terminaux portuaires et a\u00e9roportuaires, facilitant ainsi les op\u00e9rations de pr\u00e9-acheminement et de post-acheminement. Il faut savoir que les liaisons avec les pays situ\u00e9s hors de l&#8217;Union Europ\u00e9enne, comme la Suisse ou le Royaume-Uni, sont g\u00e9r\u00e9es avec la m\u00eame efficacit\u00e9.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">De ce fait, notre parfaite ma\u00eetrise des r\u00e9glementations douani\u00e8res efface litt\u00e9ralement les <\/span><b>barri\u00e8res<\/b><span style=\"font-weight: 400;\"> frontali\u00e8res. Cette pr\u00e9sence g\u00e9ographique globale et parfaitement orchestr\u00e9e s\u00e9curise votre <\/span><b>exportation<\/b><span style=\"font-weight: 400;\"> et accompagne vos ambitions de conqu\u00eate sur le <\/span><b>continent<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Concernant le reste du <\/span><b>continent africain<\/b><span style=\"font-weight: 400;\"> (hors Afrique du Sud), nous op\u00e9rons exclusivement des livraisons en <\/span><b>rendu port ou a\u00e9roport<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p>[\/et_pb_text][\/et_pb_column][et_pb_column type=&#8221;2_5&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/07\/Secteurs-dactivite-et-specialisations-industrielles.jpg&#8221; title_text=&#8221;Secteurs d\u2019activit\u00e9 et sp\u00e9cialisations industrielles&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; hover_enabled=&#8221;0&#8243; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);|| mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);|| -webkit-mask-size: 800%;|| mask-size: 800%;|| -webkit-mask-position: 0;|| mask-position: 0;&#8221; border_radii=&#8221;on|20px|20px|20px|20px&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;|| -webkit-mask-position: 120%;|| mask-position: 120%;|| opacity: 1;&#8221; alt=&#8221;Secteurs d\u2019activit\u00e9 et sp\u00e9cialisations industrielles&#8221; sticky_enabled=&#8221;0&#8243;][\/et_pb_image][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;68px||68px||true|false&#8221; custom_padding_tablet=&#8221;68px||68px||true|false&#8221; custom_padding_phone=&#8221;30px||30px||true|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;||10px||false|false&#8221; custom_margin_tablet=&#8221;||50px||false|false&#8221; custom_margin_phone=&#8221;||0px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; custom_padding=&#8221;0px||||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_2_font=&#8221;Montserrat|700|||||||&#8221; header_2_text_align=&#8221;center&#8221; header_2_text_color=&#8221;#000000&#8243; header_2_font_size=&#8221;34px&#8221; header_2_line_height=&#8221;1.2em&#8221; header_2_font_size_tablet=&#8221;34px&#8221; header_2_font_size_phone=&#8221;30px&#8221; header_2_font_size_last_edited=&#8221;on|phone&#8221; header_2_line_height_tablet=&#8221;1.2em&#8221; header_2_line_height_phone=&#8221;1.2em&#8221; header_2_line_height_last_edited=&#8221;on|phone&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<h2><strong>FAQ : Logistique et Fret Routier<\/p>\n<p><\/strong><\/h2>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=&#8221;1_2,1_2&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;1_2&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_accordion _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_accordion_item title=&#8221;Quels sont les d\u00e9lais habituels pour un acheminement express par la route en Europe ?&#8221; open=&#8221;on&#8221; open_toggle_text_color=&#8221;#000000&#8243; open_toggle_background_color=&#8221;rgba(0,0,0,0.03)&#8221; closed_toggle_background_color=&#8221;#e63c28&#8243; icon_color=&#8221;#FFFFFF&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; body_font=&#8221;Source Sans Pro||||||||&#8221; body_text_color=&#8221;#000000&#8243; body_font_size=&#8221;16px&#8221; border_width_all=&#8221;0px&#8221; global_colors_info=&#8221;{}&#8221; toggle_text_color=&#8221;#FFFFFF&#8221; toggle_font=&#8221;Montserrat|700|||||||&#8221; toggle_line_height=&#8221;1.4em&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Selon la distance \u00e0 parcourir, le <\/span><b>temps<\/b><span style=\"font-weight: 400;\"> de <\/span><a href=\"https:\/\/teamcdg.com\/fret-express\/\"><span style=\"font-weight: 400;\">transit en service express<\/span><\/a><span style=\"font-weight: 400;\"> oscille g\u00e9n\u00e9ralement entre 24 et 48 heures. Nous mobilisons un v\u00e9hicule utilitaire l\u00e9ger (VUL) d\u00e9di\u00e9 exclusivement \u00e0 votre <\/span><b>marchandise<\/b><span style=\"font-weight: 400;\">. Cette approche \u00e9limine les ruptures de charge ainsi que les arr\u00eats interm\u00e9diaires, ce qui garantit une <\/span><b>livraison<\/b><span style=\"font-weight: 400;\"> de porte \u00e0 porte ultra-<\/span><b>rapide<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p>[\/et_pb_accordion_item][et_pb_accordion_item title=&#8221;Prenez-vous en charge le transport routier de mat\u00e9riel sc\u00e9nique ?&#8221; open_toggle_text_color=&#8221;#000000&#8243; open_toggle_background_color=&#8221;rgba(0,0,0,0.03)&#8221; closed_toggle_background_color=&#8221;#e63c28&#8243; icon_color=&#8221;#FFFFFF&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; body_font=&#8221;Source Sans Pro||||||||&#8221; body_text_color=&#8221;#000000&#8243; body_font_size=&#8221;16px&#8221; border_width_all=&#8221;0px&#8221; global_colors_info=&#8221;{}&#8221; toggle_text_color=&#8221;#FFFFFF&#8221; toggle_font=&#8221;Montserrat|700|||||||&#8221; toggle_line_height=&#8221;1.4em&#8221; open=&#8221;off&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Le fait est que nous soutenons quotidiennement de nombreux th\u00e9\u00e2tres et tourn\u00e9es culturelles. Ainsi, nous poss\u00e9dons une parfaite ma\u00eetrise de la gestion du <\/span><b>carnet ATA<\/b><span style=\"font-weight: 400;\">, permettant de franchir les fronti\u00e8res hors UE sans s&#8217;acquitter de <\/span><b>taxes<\/b><span style=\"font-weight: 400;\"> d\u00e9finitives. Il faut dire que notre rigoureuse ponctualit\u00e9 assure le plein succ\u00e8s logistique de votre <\/span><b>\u00e9v\u00e9nement<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p>[\/et_pb_accordion_item][et_pb_accordion_item title=&#8221;De quelle mani\u00e8re s\u00e9curisez-vous le fret sensible durant son transport ?&#8221; open_toggle_text_color=&#8221;#000000&#8243; open_toggle_background_color=&#8221;rgba(0,0,0,0.03)&#8221; closed_toggle_background_color=&#8221;#e63c28&#8243; icon_color=&#8221;#FFFFFF&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; body_font=&#8221;Source Sans Pro||||||||&#8221; body_text_color=&#8221;#000000&#8243; body_font_size=&#8221;16px&#8221; border_width_all=&#8221;0px&#8221; global_colors_info=&#8221;{}&#8221; toggle_text_color=&#8221;#FFFFFF&#8221; toggle_font=&#8221;Montserrat|700|||||||&#8221; toggle_line_height=&#8221;1.4em&#8221; open=&#8221;off&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Sachez que nos remorques sont pourvues de <\/span><b>capteurs embarqu\u00e9s<\/b><span style=\"font-weight: 400;\"> anti-intrusion et de serrures renforc\u00e9es. Il est \u00e0 noter que gr\u00e2ce \u00e0 notre <\/span><b>tra\u00e7abilit\u00e9 24\/7<\/b><span style=\"font-weight: 400;\">, nos exploitants surveillent en direct chaque arr\u00eat du v\u00e9hicule. De surcro\u00eet, pour une s\u00e9r\u00e9nit\u00e9 absolue, nous pr\u00e9conisons syst\u00e9matiquement la souscription \u00e0 notre <\/span><b>assurance ad valorem<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p>[\/et_pb_accordion_item][\/et_pb_accordion][\/et_pb_column][et_pb_column type=&#8221;1_2&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_accordion _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_accordion_item title=&#8221;Est-il possible de transporter des produits class\u00e9s comme dangereux ?&#8221; open=&#8221;on&#8221; open_toggle_text_color=&#8221;#000000&#8243; open_toggle_background_color=&#8221;rgba(0,0,0,0.03)&#8221; closed_toggle_background_color=&#8221;#e63c28&#8243; icon_color=&#8221;#FFFFFF&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; body_font=&#8221;Source Sans Pro||||||||&#8221; body_text_color=&#8221;#000000&#8243; body_font_size=&#8221;16px&#8221; border_width_all=&#8221;0px&#8221; global_colors_info=&#8221;{}&#8221; toggle_text_color=&#8221;#FFFFFF&#8221; toggle_font=&#8221;Montserrat|700|||||||&#8221; toggle_line_height=&#8221;1.4em&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Absolument, car nous collaborons avec des chauffeurs d\u00e9tenant une certification ADR valide. Sachez que notre <\/span><b>\u00e9quipe<\/b><span style=\"font-weight: 400;\"> examine avec soin vos fiches de donn\u00e9es de s\u00e9curit\u00e9 (MSDS) avant d&#8217;autoriser tout chargement. \u00c0 savoir que nous appliquons la <\/span><b>r\u00e9glementation<\/b><span style=\"font-weight: 400;\"> \u00e0 la lettre afin de pr\u00e9venir le moindre <\/span><b>risque<\/b><span style=\"font-weight: 400;\"> d&#8217;incident.<\/span><\/p>\n<p>[\/et_pb_accordion_item][et_pb_accordion_item title=&#8221;Proposez-vous un suivi de l&#8217;impact \u00e9cologique li\u00e9 au transport ?&#8221; open_toggle_text_color=&#8221;#000000&#8243; open_toggle_background_color=&#8221;rgba(0,0,0,0.03)&#8221; closed_toggle_background_color=&#8221;#e63c28&#8243; icon_color=&#8221;#FFFFFF&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; body_font=&#8221;Source Sans Pro||||||||&#8221; body_text_color=&#8221;#000000&#8243; body_font_size=&#8221;16px&#8221; border_width_all=&#8221;0px&#8221; global_colors_info=&#8221;{}&#8221; toggle_text_color=&#8221;#FFFFFF&#8221; toggle_font=&#8221;Montserrat|700|||||||&#8221; toggle_line_height=&#8221;1.4em&#8221; open=&#8221;off&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Notez que nous fournissons un <\/span><b>CO\u2082 report<\/b><span style=\"font-weight: 400;\"> d\u00e9taill\u00e9 pour chaque <\/span><b>exp\u00e9dition<\/b><span style=\"font-weight: 400;\"> effectu\u00e9e. Le fait est que la <\/span><b>durabilit\u00e9<\/b><span style=\"font-weight: 400;\"> repr\u00e9sente d\u00e9sormais un crit\u00e8re d\u00e9terminant pour les donneurs d&#8217;ordres \u00e0 l&#8217;\u00e9chelle mondiale. En plus, nous \u0153uvrons continuellement \u00e0 l&#8217;optimisation des trajets pour minimiser les kilom\u00e8tres parcourus \u00e0 vide et r\u00e9duire l&#8217;empreinte carbone globale.<\/span><\/p>\n<p>[\/et_pb_accordion_item][et_pb_accordion_item title=&#8221;Quelle distinction faites-vous entre l&#8217;affr\u00e8tement FTL et le service LTL ?&#8221; open_toggle_text_color=&#8221;#000000&#8243; open_toggle_background_color=&#8221;rgba(0,0,0,0.03)&#8221; closed_toggle_background_color=&#8221;#e63c28&#8243; icon_color=&#8221;#FFFFFF&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; body_font=&#8221;Source Sans Pro||||||||&#8221; body_text_color=&#8221;#000000&#8243; body_font_size=&#8221;16px&#8221; border_width_all=&#8221;0px&#8221; global_colors_info=&#8221;{}&#8221; toggle_text_color=&#8221;#FFFFFF&#8221; toggle_font=&#8221;Montserrat|700|||||||&#8221; toggle_line_height=&#8221;1.4em&#8221; open=&#8221;off&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Il faut dire que le terme FTL correspond \u00e0 un camion complet privatis\u00e9 pour un client unique, ce qui est parfait pour les volumes importants. Le LTL (ou groupage) offre la possibilit\u00e9 de mutualiser l&#8217;espace de la remorque avec d&#8217;autres exp\u00e9ditions, ce qui r\u00e9duit nettement le <\/span><b>prix<\/b><span style=\"font-weight: 400;\">. En cons\u00e9quence, nous d\u00e9terminons syst\u00e9matiquement la solution la plus adapt\u00e9e selon le volume r\u00e9el de votre <\/span><b>produit<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p>[\/et_pb_accordion_item][\/et_pb_accordion][\/et_pb_column][\/et_pb_row][\/et_pb_section]<\/p>\n","protected":false},"excerpt":{"rendered":"<p><div class=\"et_pb_module dnxte_multi_heading dnxte_multi_heading_0\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module_inner\">\n\t\t\t\t\t<div class=\"wrapper\"><h1 class='header-level '><span class=\"dnxt-text-one reveal-effect masker wow\"><span class=\"dnxt-gradient-text-color-1\">Fret Routier<\/span><\/span><\/h1><\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div><div class=\"et_pb_module dnxte_multi_heading dnxte_multi_heading_1\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module_inner\">\n\t\t\t\t\t<div class=\"wrapper\"><p class='header-level '><span class=\"dnxt-text-one reveal-effect masker wow\"><span class=\"dnxt-gradient-text-color-1\">Nous contacter<\/span><\/span><\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div><div id=\"bitforms_4_987617809_2\" class=\"b4-bit-form AI4 _frm-bg-b4 bit-form bf-form-wrapper\">\n      \n          <form novalidate id=\"form-bitforms_4_987617809_2\" class=\"AG4 AH4 _frm-b4 bf-form\" method='post'>\n              <input type=\"text\" class=\"d-none\" name=\"csrf\" value=\"yv24x2\/r75R7ysph0a31q7s7qrrWKiUBixHuXJHkMAQ=\">\n              <input type=\"text\" class=\"d-none\" name=\"t_identity\" value=\"q2NIq+qMWjfiFrjO56XRizHq2aJOgC6Es+aOiQOJ8q0=\">\n              \n              <input type=\"text\" class=\"d-none\" name=\"bitforms_id\" value=\"bitforms_4\">\n                  <div class=\"btcd-fld-itm b4-2 \"><div class=\"bf-text-field J4 N4 O4 P4  b4-2-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H4 z4 AD4  b4-2-lbl-wrp b4-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b4-2-2-lbl\" class=\"A4 D4 H4 z4 AA4 AB4 AC4  b4-2-lbl b4-lbl bf-lbl bf-label \" for=\"b4-2-2\">\n          \n          \n          SOCI\u00c9T\u00c9\n          \n          <span class=\"AE4 AF4  b4-2-req-smbl b4-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b4-2-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P4 y4  b4-2-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b4-2-2\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AZ4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4  b4-2-fld b4-fld bf-fld bf-field \" type=\"text\" required aria-required=\"true\" aria-describedby=\"b4-2-err-txt\" autocomplete='name' name='text-b4-2' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K4 L4 M4  b4-2-err-wrp b4-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I4  b4-2-err-inner b4-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b4-2-err-txt\" class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4  b4-2-err-msg b4-err-msg bf-err-msg bf-error-messages-container  J4  b4-2-err-txt b4-err-txt bf-err-txt bf-error-text  \">\n            \n          <\/div>\n          \n          \n        <\/div>\n      <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-8 \"><div class=\"bf-text-field J4 N4 O4 P4  b4-8-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H4 z4 AD4  b4-8-lbl-wrp b4-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b4-8-2-lbl\" class=\"A4 D4 H4 z4 AA4 AB4 AC4  b4-8-lbl b4-lbl bf-lbl bf-label \" for=\"b4-8-2\">\n          \n          \n          T\u00c9L\u00c9PHONE\n          \n          <span class=\"AE4 AF4  b4-8-req-smbl b4-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b4-8-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P4 y4  b4-8-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b4-8-2\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AZ4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4  b4-8-fld b4-fld bf-fld bf-field \" type=\"text\" required aria-required=\"true\" aria-describedby=\"b4-8-err-txt\" name='text-4-8' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K4 L4 M4  b4-8-err-wrp b4-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I4  b4-8-err-inner b4-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b4-8-err-txt\" class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4  b4-8-err-msg b4-err-msg bf-err-msg bf-error-messages-container  J4  b4-8-err-txt b4-err-txt bf-err-txt bf-error-text  \">\n            \n          <\/div>\n          \n          \n        <\/div>\n      <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-7 \"><div class=\"bf-email-field J4 N4 O4 P4  b4-7-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H4 z4 AD4  b4-7-lbl-wrp b4-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b4-7-2-lbl\" class=\"A4 D4 H4 z4 AA4 AB4 AC4  b4-7-lbl b4-lbl bf-lbl bf-label \" for=\"b4-7-2\">\n          \n          \n          EMAIL\n          \n          <span class=\"AE4 AF4  b4-7-req-smbl b4-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b4-7-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P4 y4  b4-7-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b4-7-2\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AZ4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4  b4-7-fld b4-fld bf-fld bf-field \" type=\"email\" required aria-required=\"true\" aria-describedby=\"b4-7-err-txt\" autocomplete='email' name='email-b4-7' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K4 L4 M4  b4-7-err-wrp b4-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I4  b4-7-err-inner b4-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b4-7-err-txt\" class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4  b4-7-err-msg b4-err-msg bf-err-msg bf-error-messages-container  J4  b4-7-err-txt b4-err-txt bf-err-txt bf-error-text  \">\n            \n          <\/div>\n          \n          \n        <\/div>\n      <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-3 \"><div class=\"bf-textarea-field J4 N4 O4 P4  b4-3-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H4 z4 AD4  b4-3-lbl-wrp b4-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b4-3-2-lbl\" class=\"A4 D4 H4 z4 AA4 AB4 AC4  b4-3-lbl b4-lbl bf-lbl bf-label \" for=\"b4-3-2\">\n          \n          \n          MESSAGE\n          \n          <span class=\"AE4 AF4  b4-3-req-smbl b4-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b4-3-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P4 y4  b4-3-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n      <textarea id=\"b4-3-2\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 h4 i4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AP4 AZ4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4  b4-3-fld b4-fld bf-fld bf-field \" required aria-required=\"true\" aria-describedby=\"b4-3-err-txt\" name='textarea-b4-3'><\/textarea>\n      \n      \n    <\/div>\n          \n          <div class=\"K4 L4 M4  b4-3-err-wrp b4-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I4  b4-3-err-inner b4-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b4-3-err-txt\" class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4  b4-3-err-msg b4-err-msg bf-err-msg bf-error-messages-container  J4  b4-3-err-txt b4-err-txt bf-err-txt bf-error-text  \">\n            \n          <\/div>\n          \n          \n        <\/div>\n      <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-1 \"><div class=\"bf-button-field J4 N4 O4 P4  b4-1-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper banner_form\">\n        \n        <div class=\"b4-1-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"D4  b4-1-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <button class=\"A4 B4 C4 D4 E4 F4 G4 H4 AJ4 AK4 AL4 AM4 AN4 AO4 Aj4 Ak4 Al4  b4-1-btn b4-btn bf-btn bf-button  \" type=\"submit\" name='button-b4-1' aria-describedby=\"b4-1-err-txt\">\n          \n          ENVOYER\n          \n          <span class=\"bf-spinner d-none\" aria-hidden=\"true\"><\/span>\n        <\/button>\n      <\/div>\n          \n          \n        <\/div>\n      <\/div><\/div>\n          <\/form>\n          \n          <div id='bf-form-msg-wrp-bitforms_4_987617809_2'><\/div>\n          <!-- \n            Live Region for Screen Reader Announcements (Accessibility)\n          -->\n          <div class=\"bf-live-region\" role=\"status\" aria-live=\"polite\" style=\"position: absolute;width: 1px;height: 1px;padding: 0;margin: -1px;overflow: hidden;white-space: nowrap;border: 0\"><\/div>\n          <div role=\"dialog\" aria-hidden=\"true\" data-modal-backdrop=\"true\" class=\"A4 D4 G4 AV4 AW4 AX4 msg-container-5 deactive scroll\">\n\t              <div data-contentid=\"bitforms_4_987617809_2\" data-msgid=\"5\" role=\"button\" class=\"A4 D4 G4 H4 AU4 msg-background-5 msg-backdrop\">\n\t                <div class=\"bf-msg-content H4 P4 T4 U4 AY4 Ap4 msg-content-5\">\n\t                  <button data-contentid=\"bitforms_4_987617809_2\" data-msgid=\"5\" class=\"C4 K4 N4 AQ4 AR4 AS4 Am4 An4 Ao4 close-5 bf-msg-close\" type=\"button\">\n\t                        <svg class=\"AT4 close-icn-5\" viewBox=\"0 0 30 30\">\n\t                        <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"4\" y1=\"3.88\" x2=\"26\" y2=\"26.12\"><\/line>\n\t                        <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"26\" y1=\"3.88\" x2=\"4\" y2=\"26.12\"><\/line>\n\t                        <\/svg>\n\t                  <\/button>\n\t                  <div class=\"msg-content\"><\/div>\n\t                <\/div>\n\t              <\/div>\n\t            <\/div>\n      <\/div>Il est ind\u00e9niable que ces derni\u00e8res ann\u00e9es, le transport routier s&#8217;impose comme le pilier central des cha\u00eenes logistiques contemporaines. Consid\u00e9rez que le transport par camion demeure le vecteur essentiel pour assurer la liaison entre les sites de production et les zones de consommation finales. De nos jours, l&#8217;exp\u00e9dition de marchandises par la route requiert une r\u00e9activit\u00e9 hors pair pour satisfaire aux exigences \u00e9cologiques actuelles. Face aux d\u00e9fis commerciaux de notre \u00e9poque, il est imp\u00e9ratif de collaborer avec un partenaire dont le s\u00e9rieux est irr\u00e9prochable. C&#8217;est dans cette optique que l&#8217;\u00e9quipe de Team International con\u00e7oit des strat\u00e9gies personnalis\u00e9es afin d&#8217;assurer une s\u00e9curit\u00e9 sans faille pour l&#8217;ensemble de vos cargaisons.L&#8217;essor strat\u00e9gique du transport routier [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_et_pb_use_builder":"on","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"class_list":["post-987617809","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Logistique Fret Routier : Expert Team International<\/title>\n<meta name=\"description\" content=\"Team International optimise vos flux de fret routier. Transport s\u00e9curis\u00e9, douane et suivi proactif pour vos exp\u00e9ditions urgentes.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/teamcdg.com\/en\/fret-routier\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Logistique Fret Routier : Expert Team International\" \/>\n<meta property=\"og:description\" content=\"Team International optimise vos flux de fret routier. Transport s\u00e9curis\u00e9, douane et suivi proactif pour vos exp\u00e9ditions urgentes.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/teamcdg.com\/en\/fret-routier\/\" \/>\n<meta property=\"og:site_name\" content=\"Team International CDG\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-02T07:30:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/logo-team-2-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"793\" \/>\n\t<meta property=\"og:image:height\" content=\"288\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/fret-routier\\\/\",\"url\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/fret-routier\\\/\",\"name\":\"Logistique Fret Routier : Expert Team International\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#website\"},\"datePublished\":\"2026-07-02T07:30:11+00:00\",\"dateModified\":\"2026-07-02T07:30:15+00:00\",\"description\":\"Team International optimise vos flux de fret routier. Transport s\u00e9curis\u00e9, douane et suivi proactif pour vos exp\u00e9ditions urgentes.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/fret-routier\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/teamcdg.com\\\/en\\\/fret-routier\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/fret-routier\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Fret Routier\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/\",\"name\":\"Team International\",\"description\":\"Team CDG\",\"publisher\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#organization\"},\"alternateName\":\"Team CDG\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#organization\",\"name\":\"Team International\",\"alternateName\":\"Team CDG\",\"url\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/teamcdg.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/logo-team-2-1.png\",\"contentUrl\":\"https:\\\/\\\/teamcdg.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/logo-team-2-1.png\",\"width\":793,\"height\":288,\"caption\":\"Team International\"},\"image\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Logistique Fret Routier : Expert Team International","description":"Team International optimise vos flux de fret routier. Transport s\u00e9curis\u00e9, douane et suivi proactif pour vos exp\u00e9ditions urgentes.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/teamcdg.com\/en\/fret-routier\/","og_locale":"en_US","og_type":"article","og_title":"Logistique Fret Routier : Expert Team International","og_description":"Team International optimise vos flux de fret routier. Transport s\u00e9curis\u00e9, douane et suivi proactif pour vos exp\u00e9ditions urgentes.","og_url":"https:\/\/teamcdg.com\/en\/fret-routier\/","og_site_name":"Team International CDG","article_modified_time":"2026-07-02T07:30:15+00:00","og_image":[{"width":793,"height":288,"url":"https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/logo-team-2-1.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/teamcdg.com\/en\/fret-routier\/","url":"https:\/\/teamcdg.com\/en\/fret-routier\/","name":"Logistique Fret Routier : Expert Team International","isPartOf":{"@id":"https:\/\/teamcdg.com\/en\/#website"},"datePublished":"2026-07-02T07:30:11+00:00","dateModified":"2026-07-02T07:30:15+00:00","description":"Team International optimise vos flux de fret routier. Transport s\u00e9curis\u00e9, douane et suivi proactif pour vos exp\u00e9ditions urgentes.","breadcrumb":{"@id":"https:\/\/teamcdg.com\/en\/fret-routier\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/teamcdg.com\/en\/fret-routier\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/teamcdg.com\/en\/fret-routier\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/teamcdg.com\/en\/"},{"@type":"ListItem","position":2,"name":"Fret Routier"}]},{"@type":"WebSite","@id":"https:\/\/teamcdg.com\/en\/#website","url":"https:\/\/teamcdg.com\/en\/","name":"Team International","description":"Team CDG","publisher":{"@id":"https:\/\/teamcdg.com\/en\/#organization"},"alternateName":"Team CDG","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/teamcdg.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/teamcdg.com\/en\/#organization","name":"Team International","alternateName":"Team CDG","url":"https:\/\/teamcdg.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/teamcdg.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/logo-team-2-1.png","contentUrl":"https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/logo-team-2-1.png","width":793,"height":288,"caption":"Team International"},"image":{"@id":"https:\/\/teamcdg.com\/en\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987617809","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/comments?post=987617809"}],"version-history":[{"count":9,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987617809\/revisions"}],"predecessor-version":[{"id":987617850,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987617809\/revisions\/987617850"}],"wp:attachment":[{"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/media?parent=987617809"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}