Portability and Retirement in 2026: How to Protect Your Supplementary Health Insurance?

Partager
@import url(‘https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css’); #mutuelle-compare { max-height: 2000px; overflow: auto; padding: 14px; border: 1px solid #e5e5e5; border-radius: 12px; background: #fff; } #mutuelle-compare h2 { font-size: 1.15rem; font-weight: 600; }

Cost and coverage comparison between Évin law mutual insurance and individual contract for a career transition at the end of employment

Use this calculator to estimate costs over the remaining period until retirement and compare the coverage of both options.


// Cost and coverage calculator for Évin Law mutual insurance vs individual contract // All strings are in French and calculations are based on annual inflation progression. (function() { // Elements const ageActuelEl = document.getElementById(‘ageActuel’); const ageRetraiteEl = document.getElementById(‘ageRetraite’); const primeEvEl = document.getElementById(‘primeEv’); const primeIndEl = document.getElementById(‘primeInd’); const inflationEl = document.getElementById(‘inflation’); const btnCalculer = document.getElementById(‘btnCalculer’); const resultatsDiv = document.getElementById(‘resultats’); const evPrimeCell = document.getElementById(‘evPrimeCell’); const evAnnualCell = document.getElementById(‘evAnnualCell’); const evTotalCell = document.getElementById(‘evTotalCell’); const indPrimeCell = document.getElementById(‘indPrimeCell’); const indAnnualCell = document.getElementById(‘indAnnualCell’); const indTotalCell = document.getElementById(‘indTotalCell’); const diffValue = document.getElementById(‘diffValue’); const diffPanel = document.getElementById(‘diffPanel’); function formatEUR(n) { if (typeof n !== ‘number’ || !isFinite(n)) return ‘-‘; return new Intl.NumberFormat(‘en-US’, { style: ‘currency’, currency: ‘EUR’, maximumFractionDigits: 0 }).format(n); } function compute() { const ageActuel = parseFloat(ageActuelEl.value); const ageRetraite = parseFloat(ageRetraiteEl.value); const primeEv = parseFloat(primeEvEl.value); const primeInd = parseFloat(primeIndEl.value); const infl = parseFloat(inflationEl.value); if (!isFinite(ageActuel) || !isFinite(ageRetraite) || !isFinite(primeEv) || !isFinite(primeInd) || !isFinite(infl)) { alert(‘Please enter valid numeric values.’); return; } const yearsRemaining = Math.max(0, Math.floor(ageRetraite – ageActuel)); // Current annual costs (with applied inflation each year) let evTotal = 0; let indTotal = 0; // Current monthly cost displayed today (without inflation) const evAnnualCurrent = primeEv * 12; const indAnnualCurrent = primeInd * 12; // Calculating costs over remaining years for (let year = 0; year = 0 ? formatEUR(difference) : ‘-‘ + formatEUR(-difference); diffPanel.hidden = false; // Show results resultatsDiv.removeAttribute(‘hidden’); // Focus for accessibility document.getElementById(‘resultats’).focus?.(); } btnCalculer.addEventListener(‘click’, compute); // Optional: run calculation automatically with default values // compute(); })();

Portability and Retirement in 2025: How to Protect Your Mutual Insurance?

Data and key points on portability, maintenance, and mutual comparison

Portability of Your Mutual Insurance
Portability: 0%
0%
0%100%
Note: this percentage illustrates the importance of verifying portability at retirement.
Cost and Options Comparison
PortabilityGuarantee maintenanceMutual comparison

Quick Explanations
  • Portability: possibility to transfer certain coverages after changing employer or retirement.
  • Maintenance: maintaining guarantees after departure, under conditions and with possible costs.
  • Comparison: evaluate costs and guarantees based on your personal situation and age.
Data Update (Free Public API)

Click Refresh to load free public data.

Dummy data for illustration purposes. The used public API is free and does not require a key.
/* API used: https://api.publicapis.org/entries?category=Health Example JSON response (adapted for illustration): { “count”: 2, “entries”: [ { “API”: “ClinicSense”, “Description”: “Clinic management system”, “Auth”: “No”, “HTTPS”: true, “Cors”: “Unknown”, “Link”: “https://example.com”, “Category”: “Health” }, { “API”: “Medisight”, “Description”: “Medical data analysis”, “Auth”: “Public”, “HTTPS”: true, “Cors”: “Unknown”, “Link”: “https://example.org”, “Category”: “Health” } ] } */ (function(){ // Elements const donutPath = document.getElementById(‘portabiliteDonutPath’); const donutText = document.getElementById(‘portabiliteDonutText’); const rangePortabilite = document.getElementById(‘rangePortabilite’); const btnActualiser = document.getElementById(‘btnActualiserDonnees’); const portabiliteLabel = document.getElementById(‘portabiliteLabel’); const barChart = document.getElementById(‘barChart’); const btnClear = document.getElementById(‘btnClear’); const btnFetchApi = document.getElementById(‘btnFetchApi’); const apiResult = document.getElementById(‘apiResult’); const apiExplanation = document.getElementById(‘apiExplanation’); // Donut rendering function setDonut(percent, animate = true) { const r = 15.915; // radius const circ = 2 * Math.PI * r; // circumference const dash = circ * (percent / 100); if (animate) { const current = parseFloat(donutPath.style.strokeDashoffset) || circ; const start = current; const end = circ – dash; const steps = 20; let i = 0; const step = () => { i++; const t = i / steps; const val = start + (end – start) * t; donutPath.style.strokeDashoffset = val; if (i b.value), 100); barData.forEach((b, idx) => { const barContainer = document.createElement(‘div’); barContainer.style.display = ‘flex’; barContainer.style.flexDirection = ‘column’; barContainer.style.alignItems = ‘center’; barContainer.style.flex = ‘0 0 28%’; barContainer.style.background = ‘rgba(0,0,0,0.04)’; barContainer.style.borderRadius = ‘6px’; barContainer.style.padding = ‘6px’; const bar = document.createElement(‘div’); bar.style.width = ‘100%’; bar.style.height = Math.max(10, Math.round((b.value / maxValue) * 180)) + ‘px’; bar.style.background = [‘#0d6efd’, ‘#198754’, ‘#ffc107’][idx % 3]; bar.style.borderRadius = ‘4px’; bar.style.boxShadow = ‘inset 0 0 0 rgba(0,0,0,0)’; bar.setAttribute(‘aria-label’, b.label + ‘ : ‘ + b.value); const label = document.createElement(‘div’); label.style.marginTop = ‘6px’; label.style.fontSize = ‘0.8rem’; label.style.textAlign = ‘center’; label.textContent = b.label; const valueText = document.createElement(‘div’); valueText.style.fontSize = ‘0.75rem’; valueText.style.color = ‘#555’; valueText.style.marginTop = ‘4px’; valueText.textContent = b.value; barContainer.appendChild(bar); barContainer.appendChild(label); barContainer.appendChild(valueText); barChart.appendChild(barContainer); }); } function fetchApiData() { // Public API available: Health category fetch(‘https://api.publicapis.org/entries?category=Health’) .then(res => res.json()) .then(data => { const count = typeof data.count === ‘number’ ? data.count : 0; const newPercent = Math.min(100, Math.max(0, (count % 101))); setDonut(newPercent, true); const entries = Array.isArray(data.entries) ? data.entries : []; const a = Math.min(60, 10 + (entries.length % 60)); const b = Math.min(60, 25 + (entries.length % 40)); const c = Math.min(60, 15 + (entries.length % 50)); barData[0].value = a; barData[1].value = b; barData[2].value = c; renderBars(); apiResult.textContent = ‘Public API data loaded: ‘ + entries.length + ‘ entries (Health).’; apiExplanation.textContent = ‘Example of using a free public API to update the infographic. Data is illustrative based on retrieved entries.’; }) .catch(err => { apiResult.textContent = ‘Failed to load public API data.’; }); } // Initialization setDonut(0, false); renderBars(); // Events rangePortabilite.addEventListener(‘input’, (e) => { const val = parseInt(e.target.value, 10); setDonut(val, true); }); btnActualiser.addEventListener(‘click’, () => { const val = parseInt(rangePortabilite.value, 10) || 0; setDonut(val, true); }); btnFetchApi.addEventListener(‘click’, () => { fetchApiData(); }); btnClear.addEventListener(‘click’, () => { rangePortabilite.value = 0; setDonut(0, true); barData = [ { label: ‘Portability’, value: 40 }, { label: ‘Guarantee maintenance’, value: 30 }, { label: ‘Mutual comparison’, value: 50 } ]; renderBars(); apiResult.textContent = ‘Values reset.’; }); document.addEventListener(‘keydown’, (e) => { if (e.key === ‘Escape’) { document.activeElement.blur(); } }); })();

In 2025, employer mutual insurance remains a key reference for employees nearing the end of their careers. The Évin law was designed to ensure the continuity of guarantees upon departure, whether it involves retirement, dismissal, or disability. This approach aims to prevent coverage gaps and maintain access to healthcare without the need for urgent new subscription. For employers and employees, understanding portability and maintenance mechanisms is crucial to anticipate, calculate costs, and choose the most suitable solution based on life course, health status, and family situation. The clear goal is to facilitate a smooth transition, without coverage interruption, while controlling costs and guarantees to avoid pricing abuses or benefit cuts. In this context, this guide details the framework of the Évin law system, distinguishes portability (ANI) from guarantee maintenance, and offers practical advice to access rights while protecting health and the health of dependents.

Évin Law on Employer Mutual Insurance: Context, Origins, and Objectives

Why does the Évin Law protect employees after job loss?

The Évin law was born out of a concern for social justice: to prevent sudden deterioration of health coverage when employment ends. It provides for the maintenance of guarantees within a collective contract, so that employees retain equivalent protection after departure under regulated conditions. This approach also protects dependents in case of death, by maintaining coverage rights for the families of former employees. The fundamental principle is simple: ensure continuity of care, without sudden expense for retirees or dismissed employees, while imposing rules to prevent abuse and excessive costs for employers. In practice, this means the insurer must accept the request without medical questionnaire and without waiting period, subject to respecting deadlines and providing supporting documents. The challenge for France and sector stakeholders is to preserve access to coordinated health care, even after separation, and to prevent ruptures that could impair the care process. This balance between security and cost is central to the Évin law system and guides employees’ and employers’ choices. 💡

Key Element

Changes with the Évin Law

Concrete Impact

Maintenance

Maintains identical guarantees to the collective contract

Continuous health coverage without the need for new enrollment

Duration

Indefinite duration for certain situations

Ability to retain guarantees after departure until rights are exhausted

Cost

Cost borne by the employee, with regulation

Establishment of a tailored contribution, without permanent free coverage

In this framework, respecting conditions and deadlines is essential. The request period is usually 6 months after departure, and the insurer must accept portability without waiting period or medical questionnaire. The system can also include dependents, especially in case of death, to maintain coverage for the family. The process requires precise documentation and supporting evidence, such as departure proof or employer termination document. The system also protects retirees and unemployed employees, while excluding cases of voluntary resignation without legitimate reason or non-adherence to the collective mutual. Portability is a key element, but it is not automatic: it requires a request and insurer acceptance, and it can be followed by regulated tariff changes. In this logic, guarantees maintained remain static during the relevant period, and tariffs and contributions may evolve, but within caps provided by law and collective agreements. 🧭

Retirement, dismissal, disability: who is affected by the Évin Law?

The Évin Law applies to several situations involving end of contract or career changes. Retirement entitles the right to guarantee maintenance to ensure care continuity during the transition, including dependents according to specified conditions. Dismissal, including cases linked to disability or incapacity, may also grant entitlement to guarantee maintenance if the termination is not due to gross misconduct. In the event of disability, guarantees and benefits remain available according to mutual and collective contract rules, to ensure necessary care and treatments. For former employees out of work, the system can continue under conditions, mainly regarding application and proof of professional activity. The legal framework provides dependents with a tailored coverage system in case of death, ensuring the continuity of benefits for the family. The goal is to offer adapted social protection for trajectories marked by uncertainties. ⚖️

Case

Relevant Guarantees

Main Conditions

Retirement

Mutual insurance, health coverage

Request within deadline, maintain until exhaustion

Dismissal

Collective mutual, supplementary health insurance

No gross misconduct, adherence to system

Disability / incapacity

Insurance benefits, care

Medical evidence and notification

Key differences between employer mutual portability and Évin Law guarantee maintenance

Mutual portability (ANI): operation, duration, and access conditions

Portability, as defined by the National Interprofessional Agreement (ANI), offers limited-time free or low-cost coverage. It applies after employment ends and typically lasts for a specific period, maximum depending on the contract end reason and criteria outlined in the agreement. This option is often free or partially covered but is not unlimited and does not necessarily cover all guarantees of the collective contract. The goal is to avoid coverage gaps during transition, while allowing reassessment of needs and comparison with an individual or senior mutual insurance. The employee’s cost can be low, but increasing premiums and caps within ANI indicate that portability is not a long-term solution. This option is useful to provide time to consider a sustainable solution and organize enrollment procedures for a new mutual insurance. 💼

Feature

ANI Portability

Limitations

Duration

Set by the agreement

Time-limited

Cost

Partial free or low costs

Possible evolutions and caps

Guarantees

Usually the guarantees of the collective contract

Possible exclusions or uncovered benefits

After portability: how does health guarantee maintenance work under Évin Law?

After portability expires, maintenance of guarantees under the Évin Law kicks in, with a different approach: coverage becomes the employee’s responsibility and can last indefinitely, depending on situations and acquired rights. The Évin contract is fixed in its main guarantees and tariff framework to prevent sudden, unforeseen changes. This stability is valuable for employees and dependents seeking to secure their benefits over the years. However, this rigidity can also limit adjustments based on future needs and budget resources. The choice between continuing with the employer mutual under the Évin Law and switching to an individual health supplement then depends on multiple criteria: the scope of guarantees desired, actual costs, and the expected evolution of health needs in the family. In all cases, the insurer’s acceptance must be verified, and supporting documents prepared to prevent delays or refusals. 🧩

Elements of maintenance

Guarantee and Cost

Points to Check

Fixed guarantees

Maintenance identical or nearly identical

No medical selection, but possible limitations

Tariff and contributions

Regulated changes over approximately 3 years

Monitor increases and caps

Dependents

Not automatically covered after departure

Possible addition depending on the contract

Rights, procedures, and access conditions for Évin Law mutual guarantee maintenance

What are the steps and deadlines to benefit from the Évin Law system?

To benefit from Évin Law mutual guarantee maintenance, the employee must act within deadlines and provide the necessary documents. The process involves a written request, usually addressed to the employer or directly to the insurer, with proof of departure and identity of dependents. The average period to submit the request is six months after the employment ends, allowing sufficient time for processing and financial organization. The insurer must accept without medical questionnaire or waiting period, except in special cases provided by the contract. The process may include a quote or contribution calculation reflecting the contractual situation and guarantees selected, with possible retroactive effects under certain conditions. The procedures and timing are critical: delays may result in rights loss. It is also recommended to consult HR or a broker to ensure proper documentation and anticipate tariff changes. 🗂️

Step

Actions

Deadlines/Timetable

Written request

Send to employer or insurer

Within 6 months after departure

Supporting documents

ID, official departure, mutual insurance documents

Immediately after request

Acceptance

Coverage without waiting or questionnaire

According to insurer’s deadlines

Guarantees, tariffs, dependents: how does Évin Law contract work in practice?

The practical operation of the Évin Law contract combines continuity and cost. Guarantees generally remain identical to those of the collective contract, to avoid loss of coverage. The system is designed to prevent coverage deterioration and to offer security beyond departure, especially for dependents. The tariff is regulated: contributions and prices may increase but within caps and a gradual adjustment period, typically three years. This regulation aims to prevent sharp increases while allowing gradual adaptation of costs for the employee and family. In practice, this also means the contract can be frozen regarding guarantees and ceilings for a period, then revised according to predefined rules. For the employee and employer, the key is to assess total costs over time and evaluate whether a personal or senior mutual offers greater flexibility. Comparing services, deductibles, and reimbursements for consultations and medical acts, including specialist care, dental, and optical expenses, is recommended to choose the best option. 🌟

Elements

Practical Example

Advantages/Risks

Coverage

Same as the collective contract

Ensured continuity, no surprises in coverage

Cost

Monthly contribution from employee

Adjustments from six months up to three years

Dependents

Possible addition

Not automatic, verify applicability

Advantages and limitations of employer mutual insurance continuation after departure (Évin Law)

Benefits of Évin Law: care continuity, no medical selection, regulated tariffs

With the Évin Law, employees gain a real safety net: guarantees largely stay identical to those of the collective contract, without waiting periods and without medical exams. This mutual provides continuity of benefits for health acts, consultations, and reimbursement of care. Moreover, the absence of medical selection prevents exclusions related to past health, which is especially useful for those with disabilities or temporary incapacity. The tariff regulation limits increases in contributions to reasonable levels, offering budget stability for families and income. Finally, the system also protects dependents and retirees who cannot immediately access suitable individual mutual insurance. Planning and smart choice between maintenance and individual mutual insurance help optimize this benefit long term. 💡

Advantages

Historical/Context

Concrete Impact

Continuity

Establishes a safety net

No coverage gaps

No selection

Equal access without questionnaire

Protection for disabled individuals

Regulated tariffs

Caps and controlled increases

Budget predictability

Potential drawbacks to anticipate: actual cost, premium evolution, fixed guarantees

The maintenance option can also have limitations. Actual costs may rise despite caps, especially when tariffs increase and guarantees become fixed and less adaptable to new needs. This rigidity can be problematic if personal situations change, with increased health expenses due to aging or inclusion of a new family member. Additionally, the system does not automatically cover dependents in all cases, possibly requiring extension or parallel subscription to an individual or senior mutual. Finally, the lack of flexibility could make opting for an individual health mutual more attractive, as it allows adaptable guarantees based on budget and needs. Our advice: conduct a review of current guarantees and compare with independent offers to estimate costs and benefits over 5 to 10 years. 📊

Limitations

Elements

Consequences

Rising costs

Contributions increases

Budget solution needed

Rigidity

Fixed guarantees

Less flexibility for evolving health needs

Dependents

Not automatic

Needs adjustment for family coverage

Making the right choice between Évin Law mutual and senior individual mutual: practical advice

Évin Law mutual or senior individual contract: how to compare effectively?

Choosing between Évin Law maintenance and an individual contract requires comparing guarantees, costs, and flexibility. The individual contract often offers finer customization: modular options, family coverage, choice of reimbursement levels, and the ability to adjust guarantees as health and finances evolve. Conversely, the Évin Law guarantees continuous coverage identical to the collective, which can be very reassuring for employees and dependents seeking security rather than immediate flexibility. A useful comparison involves examining guarantee tables, verifying exclusions, and evaluating total costs (contributions, benefits, and caps). Also compare specific services for relatives and specialized medical acts, including coverage for consultations, dental, and optical care. The goal is to balance long-term costs and benefits effectively. 💶

Criteria

Évin Law Mutual

Senior Individual Contract

Guarantee consistency

Yes, loyalty to the collective contract

Variable, modifiable

Total cost

Controlled via caps

Increases with age and medical history

Flexibility

Low

High

Our recommendations for anticipating and managing your transition: expert tips and key points

Our approach is practical and action-oriented: first, assess your current and future health needs, then compare with a modifiable senior individual offer. Anticipate costs by estimating contributions and reimbursements, and consider non-financial elements: support, timing, and insurer responsiveness. Request quotes and run simulations for 5 to 10 years, including potential costs for routine consultations, specialist visits, and medical acts. Involve your employer and HR department for coordinated procedures and to verify support options. For uncertainties, consult a social protection advisor or broker to refine your choice. Finally, stay informed about regulatory and collective agreement updates to adjust your strategy according to market conditions and family needs. 🔎

Recommended actions

Expected Impact

Vigilance points

Perform a health assessment

Refine required guarantees

Evaluate future changes

Compare offers

Make an informed choice between maintenance and individual contract

Check deadlines and conditions

HR support

Simplifies procedures and documentation

Be aware of delays

Realities & perspectives around mutual insurance and choices at retirement horizon

In France, social protection evolves rapidly, and employees’ life paths become more complex with age. The Évin Law system remains a key element to prevent coverage interruptions and facilitate a smooth transition toward continued individual coverage or suitable health mutuals for seniors. For many, it’s a choice between security and adaptability, impacting family budgets, coverage guarantees, and expansion options for dependents. The insurer’s role is also crucial: guiding employees throughout the process, providing clear answers, and offering tailored solutions, including for former employees approaching retirement, unemployment, or training schemes via Pôle emploi. The challenge is clear: anticipate, compare, and decide based on reliable information and personalized advice. 🧭

Situation

Recommended Option

Reasons

Approaching retirement

Évin Law maintenance or senior individual mutual

Guarantee stability and controlled costs

Unfair dismissal

Rapid assessment of portability and maintenance options

Prevent gaps, secure care

FAQ

What is portability, and how does it differ from Évin Law maintenance?

Portability (ANI) is a temporary and often free or low-cost coverage solution that ensures continuity of guarantees after contract termination, but only for a limited time and under specific conditions. Évin Law maintenance, on the other hand, is often indefinite and involves the employee’s subscription and contributions, with fixed guarantees for the contract duration. The choice depends on immediate needs and long-term perspectives, particularly regarding costs and coverage for the family. 💡

What rights do dependents have after departure?

After departure, dependents may benefit from continued benefits under conditions set by the contract and Évin Law, especially in cases of death or disability. Coverage can be extended to the family according to the clauses of the collective contract and specific provisions of the mutual insurance. However, the extent and exclusions should be verified, and at times a separate individual mutual may be necessary for relatives based on needs. 🛡️

How to properly prepare your health transition at the end of your career?

Preparation involves a reasonable deadline and attentive advice from professionals. Conduct a diagnosis of your current guarantees, compare options, obtain quotes, and request contribution and reimbursement simulations. Engage your employer and insurer for tailored support and solutions suited to France and your family situation. Finally, verify conditions access and possible exemptions to optimize your choice and ensure reliable health coverage for you and your dependents. 💬

We recommend analyzing details and figures through concrete data and examples. Assess costs over several years and consider options for maintaining coverage or switching to an individual contract, to build a solution that protects health and controls expenses for you and your family. The key is to stay proactive and well-informed, whether you are an employee, former employee, or future retiree.

For deeper insights, consult dedicated resources and request personalized quotes to model your health budget and prepare for retirement without surprises, relying on expert advice and the requirements of the Évin Law and portability.

Photo de Kevin Grillot
Written & verified by

Kevin Grillot

BTS Insurance Graduate Founder aidebtsassurance.com Active since 2019

BTS Insurance graduate, I have been helping students prepare for and pass their exams since 2019. This site brings together all my courses, study guides and tools.

View my full profile
🎁 100% Gratuit

Entraîne-toi avec nos Quiz de révision

Fini les lectures passives. Pour retenir les notions clés du BTS Assurance, teste-toi ! Inscris-toi pour recevoir 1 quiz par jour directement dans ta boîte mail.

Rejoins +10 000 étudiants

Je reçois mes 14 quiz 👇