    /* ============================================
       STICKY HEADER & SUB-HEADER FIXED
       ============================================ */

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

    body {
      margin: 0;
      padding: 0;
    }

    .top-subheader {
      position: sticky;
      top: 0;
      z-index: 1031;
      background-color: #0a1a3a;
      color: #ffffff;
      padding: 8px 0;
      font-size: 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      width: 100%;
    }

    .top-subheader .btn-portal.carrier {
      background-color: transparent;
      color: #f9f9f9;
      text-decoration: none;
      padding: 6px 15px;
      border-radius: 4px;
      font-weight: 500;
      font-size: 13px;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
    }

    .top-subheader .btn-portal.carrier:hover {
      background-color: #ff5f13;
      color: #ffffff;
    }

    .top-subheader .btn-portal {
      background-color: transparent;
      color: #f9f9f9;
      text-decoration: none;
      padding: 6px 15px;
      border-radius: 4px;
      font-weight: 500;
      font-size: 13px;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
    }

    .top-subheader .btn-portal:hover {
      background-color: #ff5f13;
      color: #ffffff;
    }

    .top-subheader .portal-separator {
      color: rgba(255, 255, 255, 0.2);
      margin: 0 8px;
    }

    .header {
      position: fixed;
      top: 41px;
      left: 0;
      width: 100%;
      z-index: 1030;
      background-color: transparent;
      padding: 20px 0;
      transition: all 0.3s ease-in-out;
    }

    .header.scrolled {
      top: 0;
      background-color: #0a1a3a !important;
      padding: 10px 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .header .logo img {
      max-height: 66px;
      transition: all 0.3s ease;
    }

    .header.scrolled .logo img {
      max-height: 50px;
    }

    .header .navmenu a {
      color: rgba(255, 255, 255, 0.8);
    }

    .header.scrolled .navmenu a {
      color: rgba(255, 255, 255, 0.9);
    }

    .header .navmenu a:hover,
    .header .navmenu .active {
      color: #ff5f13 !important;
    }

    @media (max-width: 768px) {
      .top-subheader { position: sticky; top: 0; }
      .header { top: 80px; padding: 12px 0; }
      .header.scrolled { top: 0; padding: 8px 0; }
    }

    @media (max-width: 480px) {
      .top-subheader { position: sticky; top: 0; }
      .header { top: 105px; }
      .header.scrolled { top: 0; }
    }

    .page-title {
      padding: 180px 0 120px 0 !important;
      min-height: auto !important;
    }

    @media (max-width: 768px) {
      .top-subheader .btn-portal,
      .top-subheader .btn-portal.carrier { padding: 4px 10px; font-size: 11px; }
      .top-subheader .portal-separator { margin: 0 4px; }
    }

    @media (max-width: 576px) {
      .top-subheader .language-portal { gap: 6px; }
      .top-subheader .btn-portal span,
      .top-subheader .btn-portal.carrier span { display: none; }
      .top-subheader .btn-portal i,
      .top-subheader .btn-portal.carrier i { margin-right: 0; font-size: 14px; }
      .top-subheader .btn-portal,
      .top-subheader .btn-portal.carrier { padding: 6px 8px; }
    }

    .header.scrolled .navmenu .dropdown ul {
      background: white !important;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .header.scrolled .navmenu .dropdown ul li a {
      color: #0e1d34 !important;
      background: transparent !important;
    }

    .header.scrolled .navmenu .dropdown ul li a:hover {
      color: #ff5f13 !important;
      background: rgba(255, 95, 19, 0.05) !important;
      padding-left: 20px !important;
    }

    .header.scrolled .navmenu a { color: rgba(255, 255, 255, 0.9); }
    .header.scrolled .navmenu .dropdown > a { color: rgba(255, 255, 255, 0.9); }
    .header.scrolled .navmenu .dropdown .toggle-dropdown { color: rgba(255, 255, 255, 0.7); }

    @media (max-width: 1199px) {
      .header.scrolled .navmenu ul { background: white !important; }
      .header.scrolled .navmenu ul li a { color: #0e1d34 !important; }
      .header.scrolled .navmenu ul li a:hover { color: #ff5f13 !important; }
    }

    /* Custom Careers Page Styles */
    :root {
      --accent-orange: #ff5f13;
      --accent-blue: #0e1d34;
      --heading-color: #0e1d34;
    }
    
    .page-title {
      position: relative;
      overflow: hidden;
      background-image: url('../assets/img/careers-hero-bg.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 60vh;
    }
    
    .page-title::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #0e1d34 0%, #1a2f4e 100%);
      opacity: 0.88;
      z-index: 1;
    }
    
    .page-title::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255,95,19,0.12) 0%, rgba(255,95,19,0) 70%);
      border-radius: 50%;
      z-index: 2;
    }
    
    .page-title .container { position: relative; z-index: 10; }
    
    .floating-icon {
      position: absolute;
      opacity: 0.08;
      pointer-events: none;
      z-index: 3;
      color: #ff5f13;
      filter: drop-shadow(0 0 20px rgba(255, 95, 19, 0.3));
      animation: floatIcon 15s ease-in-out infinite;
    }
    
    .floating-icon i { font-size: 80px; }
    .floating-icon.large i { font-size: 120px; }
    
    .floating-icon-1 { top: 10%; left: 3%; animation: floatIcon 18s ease-in-out infinite; }
    .floating-icon-2 { top: 20%; right: 2%; animation: floatIcon 22s ease-in-out infinite reverse; }
    .floating-icon-3 { bottom: 15%; left: 5%; animation: floatIcon 20s ease-in-out infinite 2s; }
    .floating-icon-4 { bottom: 25%; right: 5%; animation: floatIcon 25s ease-in-out infinite 1s; }
    
    @keyframes floatIcon {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      25% { transform: translate(20px, -15px) rotate(5deg); }
      50% { transform: translate(-15px, -25px) rotate(10deg); }
      75% { transform: translate(-25px, -10px) rotate(5deg); }
    }
    
    .badge-careers {
      background: rgba(255,95,19,0.15);
      color: #fff;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      display: inline-block;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255,95,19,0.3);
      margin-bottom: 20px;
    }
    
    .section-title {
      text-align: center;
      padding: 30px 0;
      margin-bottom: 30px;
      position: relative;
    }
    
    .section-title h2 {
      font-size: 32px;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 20px;
      padding-bottom: 0;
      position: relative;
      z-index: 2;
      color: #0e1d34;
    }
    
    .section-title span {
      position: absolute;
      top: 4px;
      color: color-mix(in srgb, var(--heading-color), transparent 95%);
      left: 0;
      right: 0;
      z-index: 1;
      font-weight: 700;
      font-size: 52px;
      text-transform: uppercase;
      line-height: 1;
    }
    
    .section-title p {
      margin-bottom: 0;
      position: relative;
      z-index: 2;
      color: #6c757d;
    }
    
    /* Stats Section - Team Focused */
    .stats-careers {
      padding: 60px 0;
      background-color: #f8f9fc;
      position: relative;
      overflow: hidden;
    }
    
    .stats-careers .stats-item {
      background: white;
      border-radius: 10px;
      padding: 30px 20px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.03);
      transition: all 0.3s ease;
      border: 1px solid rgba(0,0,0,0.03);
    }
    
    .stats-careers .stats-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(255,95,19,0.1);
      border-color: rgba(255,95,19,0.1);
    }
    
    .stats-careers .stats-number-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2px;
      font-size: 42px;
      font-weight: 700;
      color: #ff5f13;
      margin-bottom: 10px;
      line-height: 1;
    }
    
    .stats-careers .stats-item p {
      font-size: 16px;
      color: #6c757d;
      margin: 0;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    /* Why Choose Section */
    .why-choose-item {
      text-align: center;
      padding: 30px 20px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.03);
      transition: 0.3s;
      height: 100%;
      border: 1px solid rgba(0,0,0,0.03);
    }
    
    .why-choose-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(255,95,19,0.1);
    }
    
    .why-choose-icon {
      width: 70px;
      height: 70px;
      background: rgba(255,95,19,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    
    .why-choose-icon i { font-size: 32px; color: #ff5f13; }
    .why-choose-item h4 { font-size: 20px; font-weight: 700; color: #0e1d34; margin-bottom: 12px; }
    .why-choose-item p { color: #6c757d; margin: 0; font-size: 15px; line-height: 1.6; }
    
    /* Role Chips */
    .role-chips {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin: 30px 0;
    }
    
    .role-chip {
      background: #fff;
      border: 1px solid #e9ecef;
      border-radius: 50px;
      padding: 12px 20px;
      text-align: center;
      font-weight: 600;
      color: #0e1d34;
      transition: 0.2s;
    }
    
    .role-chip:hover {
      border-color: #ff5f13;
      color: #ff5f13;
      background: rgba(255,95,19,0.02);
    }
    
    .team-stats-row {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin: 30px 0 25px;
      flex-wrap: wrap;
    }
    
    .team-stat {
      text-align: center;
    }
    
    .team-stat-number {
      font-size: 32px;
      font-weight: 800;
      color: #ff5f13;
      line-height: 1.2;
    }
    
    .team-stat-label {
      font-size: 12px;
      color: #6c757d;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }
    
    .btn-linkedin {
      display: inline-block;
      width: 100%;
      padding: 14px 20px;
      background: #ff5f13;
      color: #fff;
      text-align: center;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    
    .btn-linkedin:hover {
      background: transparent;
      border-color: #ff5f13;
      color: #ff5f13;
    }
    
    .btn-outline-orange {
      display: inline-block;
      width: 100%;
      padding: 14px 20px;
      background: transparent;
      color: #0e1d34;
      text-align: center;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid #e9ecef;
    }
    
    .btn-outline-orange:hover {
      border-color: #ff5f13;
      color: #ff5f13;
    }
    
    /* Benefits Grid */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }
    
    .benefit-card {
      background: #fff;
      padding: 25px;
      border-radius: 15px;
      border: 1px solid rgba(0,0,0,0.03);
      transition: 0.3s;
    }
    
    .benefit-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255,95,19,0.08);
      border-color: rgba(255,95,19,0.15);
    }
    
    .benefit-icon {
      width: 50px;
      height: 50px;
      background: rgba(255,95,19,0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
    }
    
    .benefit-icon i { font-size: 24px; color: #ff5f13; }
    .benefit-card h4 { font-size: 18px; font-weight: 700; color: #0e1d34; margin-bottom: 10px; }
    .benefit-card p { color: #6c757d; margin: 0; font-size: 14px; line-height: 1.6; }
    
    /* FAQ Section */
    .faq-item {
      background: #fff;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.03);
      margin-bottom: 20px;
      border: 1px solid rgba(0,0,0,0.03);
      transition: 0.3s;
    }
    
    .faq-item:hover { box-shadow: 0 10px 25px rgba(255,95,19,0.08); }
    .faq-item h4 { font-size: 18px; font-weight: 700; color: #0e1d34; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
    .faq-item h4 i { color: #ff5f13; font-size: 20px; }
    .faq-item p { color: #6c757d; margin: 0 0 0 30px; line-height: 1.6; }
    
    /* CTA Section */
    .cta-careers {
      background: linear-gradient(135deg, #0e1d34 0%, #1a2f4e 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    
    .cta-careers::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255,95,19,0.1) 0%, rgba(255,95,19,0) 70%);
      border-radius: 50%;
    }
    
    .cta-content {
      position: relative;
      z-index: 5;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .cta-content h2 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 20px; }
    .cta-content p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 30px; }
    
    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #ff5f13;
      color: #fff;
      padding: 14px 35px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    
    .cta-button:hover {
      background: transparent;
      border-color: #ff5f13;
      color: #fff;
      gap: 18px;
    }
    
    .contact-info-row {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-top: 30px;
      flex-wrap: wrap;
    }
    
    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.8);
    }
    
    .contact-info-item i { font-size: 20px; color: #ff5f13; }
    .contact-info-item a { color: rgba(255,255,255,0.8); text-decoration: none; transition: 0.2s; }
    .contact-info-item a:hover { color: #ff5f13; }
    
    @media (max-width: 992px) {
      .section-title span { font-size: 42px; }
      .benefits-grid { grid-template-columns: 1fr; }
      .role-chips { grid-template-columns: 1fr; }
    }
    
    @media (max-width: 768px) {
      .page-title h1 { font-size: 36px; }
      .section-title span { font-size: 32px; }
      .section-title h2 { font-size: 28px; }
      .floating-icon i { font-size: 50px; }
      .team-stats-row { gap: 20px; }
      .contact-info-row { gap: 20px; flex-direction: column; align-items: center; }
    }

    /* La vie chez Fortus - carrousel photos bureau & équipe */
    .life-gallery .swiper-slide {
      height: auto;
    }
    .life-gallery .gallery-img-wrap {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 15px 35px -10px rgba(14, 29, 52, 0.25);
      aspect-ratio: 4 / 3;
    }
    .life-gallery .gallery-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .life-gallery .swiper-slide:hover .gallery-img-wrap img {
      transform: scale(1.05);
    }
    .life-gallery .swiper-pagination {
      position: relative;
      margin-top: 30px;
    }
    .life-gallery .swiper-pagination .swiper-pagination-bullet-active {
      background: #ff5f13;
    }
    .life-gallery .swiper-button-next,
    .life-gallery .swiper-button-prev {
      color: #ff5f13;
      background: #fff;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      box-shadow: 0 8px 20px -6px rgba(14, 29, 52, 0.3);
    }
    .life-gallery .swiper-button-next::after,
    .life-gallery .swiper-button-prev::after {
      font-size: 16px;
      font-weight: 700;
    }
  
