<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>sstpro-v2</title>
	<atom:link href="https://www.sstpro.fr/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.sstpro.fr/</link>
	<description>Formation SST dans votre entreprise</description>
	<lastBuildDate>Tue, 10 Mar 2026 17:20:49 +0000</lastBuildDate>
	<language>fr-FR</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://www.sstpro.fr/wp-content/uploads/2023/04/cropped-Logo-SSTPRO-niv2-32x32.png</url>
	<title>sstpro-v2</title>
	<link>https://www.sstpro.fr/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">71399557</site>	<item>
		<title>leçon 1 article</title>
		<link>https://www.sstpro.fr/1632-2/</link>
		
		<dc:creator><![CDATA[julien]]></dc:creator>
		<pubDate>Tue, 10 Mar 2026 17:19:42 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://www.sstpro.fr/?p=1632</guid>

					<description><![CDATA[<p>L’article <a href="https://www.sstpro.fr/1632-2/">leçon 1 article</a> est apparu en premier sur <a href="https://www.sstpro.fr">sstpro-v2</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="et_pb_section et_pb_section_0 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_0">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_code et_pb_code_0">
				
				
				
				
				<div class="et_pb_code_inner"><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SST Prévention – Bienvenue</title>
<link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;900&#038;family=Barlow:wght@400;500;600&#038;display=swap" rel="stylesheet">
<style>
  :root {
    --red: #D0021B;
    --red-dark: #A50015;
    --black: #111111;
    --white: #FFFFFF;
    --gray-light: #F4F4F4;
    --gray-mid: #8C8C8C;
    --gray-dark: #333333;
  }

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

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* Background */
  .bg-layer {
    position: fixed; inset: 0; z-index: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
  }
  .bg-grid {
    position: fixed; inset: 0; z-index: 1;
    background-image:
      linear-gradient(rgba(208,2,27,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(208,2,27,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .bg-accent {
    position: fixed; top: -200px; right: -200px; z-index: 1;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(208,2,27,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100% { transform: scale(1); opacity:1; } 50% { transform: scale(1.1); opacity:0.7; } }

  /* Header bar */
  .topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 40px;
    background: rgba(10,10,10,0.9);
    border-bottom: 1px solid rgba(208,2,27,0.3);
    backdrop-filter: blur(10px);
  }
  .logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 22px;
    letter-spacing: 2px;
    color: var(--white);
  }
  .logo span { color: var(--red); }
  .topbar-module {
    font-size: 13px; color: var(--gray-mid);
    letter-spacing: 1px; text-transform: uppercase;
  }

  /* Main content */
  .main {
    position: relative; z-index: 10;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 100px 40px 60px;
  }

  .content-wrapper {
    max-width: 900px; width: 100%;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    gap: 0;
  }

  /* Badge */
  .badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(208,2,27,0.15);
    border: 1px solid rgba(208,2,27,0.4);
    border-radius: 4px;
    padding: 6px 16px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--red);
    margin-bottom: 32px;
    opacity: 0; animation: fadeUp 0.6s ease 0.2s forwards;
  }
  .badge::before {
    content: ''; width: 8px; height: 8px;
    background: var(--red); border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
  }
  @keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

  /* Title */
  .title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 8vw, 88px);
    line-height: 0.95;
    letter-spacing: -1px;
    margin-bottom: 24px;
    opacity: 0; animation: fadeUp 0.7s ease 0.4s forwards;
  }
  .title-line1 { display: block; color: var(--white); }
  .title-line2 { display: block; color: var(--red); }
  .title-line3 { display: block; color: var(--white); font-size: 0.6em; font-weight: 700; letter-spacing: 4px; margin-top: 8px; }

  /* Subtitle row */
  .subtitle-row {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 48px;
    opacity: 0; animation: fadeUp 0.7s ease 0.6s forwards;
  }
  .subtitle-dash { width: 40px; height: 2px; background: var(--red); }
  .subtitle {
    font-size: 18px; color: var(--gray-mid);
    font-weight: 500; letter-spacing: 6px;
    text-transform: uppercase;
  }

  /* Picto row */
  .pictos {
    display: flex; align-items: center; gap: 0;
    margin-bottom: 52px;
    opacity: 0; animation: fadeUp 0.7s ease 0.8s forwards;
  }
  .picto-item {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 20px 28px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    transition: all 0.3s ease;
    cursor: default;
  }
  .picto-item:first-child { border-radius: 8px 0 0 8px; }
  .picto-item:last-child { border-radius: 0 8px 8px 0; }
  .picto-item:not(:last-child) { border-right: none; }
  .picto-item:hover {
    background: rgba(208,2,27,0.1);
    border-color: rgba(208,2,27,0.3);
  }
  .picto-icon { font-size: 28px; }
  .picto-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gray-mid);
  }

  /* Description text */
  .desc {
    max-width: 620px;
    font-size: 16px; line-height: 1.75;
    color: rgba(255,255,255,0.65);
    margin-bottom: 52px;
    opacity: 0; animation: fadeUp 0.7s ease 1s forwards;
  }
  .desc strong { color: var(--white); font-weight: 600; }

  /* CTA Button */
  .btn-cta {
    display: inline-flex; align-items: center; gap: 14px;
    background: var(--red);
    color: var(--white);
    border: none; cursor: pointer;
    padding: 18px 44px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 18px;
    letter-spacing: 2px; text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0; animation: fadeUp 0.7s ease 1.2s forwards;
    box-shadow: 0 0 30px rgba(208,2,27,0.3);
  }
  .btn-cta:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(208,2,27,0.5);
  }
  .btn-arrow {
    width: 24px; height: 24px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: border-color 0.3s;
  }
  .btn-cta:hover .btn-arrow { border-color: var(--white); }

  /* Durée badge */
  .duree {
    margin-top: 24px;
    font-size: 13px; color: var(--gray-mid);
    letter-spacing: 1px;
    opacity: 0; animation: fadeUp 0.7s ease 1.4s forwards;
  }
  .duree span { color: var(--white); font-weight: 600; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Progress bar bottom */
  .progress-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
    height: 4px; background: rgba(255,255,255,0.05);
  }
  .progress-fill {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--red-dark), var(--red));
    transition: width 0.5s ease;
  }

  /* Module nav bottom */
  .bottom-nav {
    position: fixed; bottom: 4px; left: 0; right: 0; z-index: 99;
    display: flex; align-items: center; justify-content: center;
    padding: 12px 40px;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(8px);
  }
  .module-dots { display: flex; gap: 8px; align-items: center; }
  .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: all 0.3s;
  }
  .dot.active { background: var(--red); width: 24px; border-radius: 4px; }
  .nav-label {
    font-size: 12px; color: var(--gray-mid);
    letter-spacing: 1px; margin: 0 20px;
  }
</style>
</head>
<body>

<div class="bg-layer"></div>
<div class="bg-grid"></div>
<div class="bg-accent"></div>

<!-- Top bar -->
<header class="topbar">
  <div class="logo">SST<span>PRO</span></div>
  <div class="topbar-module">Module 0 — Accueil & Positionnement</div>
  <div style="font-size:13px;color:var(--gray-mid);">Écran 1 / 5</div>
</header>

<!-- Main -->
<main class="main">
  <div class="content-wrapper">

    <div class="badge">Formation e-learning · Module 0</div>

    <h1 class="title">
      <span class="title-line1">Bienvenue dans</span>
      <span class="title-line2">votre formation</span>
      <span class="title-line3">SST &mdash; Prévention</span>
    </h1>

    <div class="subtitle-row">
      <div class="subtitle-dash"></div>
      <div class="subtitle">Comprendre · Repérer · Agir · Informer</div>
      <div class="subtitle-dash"></div>
    </div>

    <div class="pictos">
      <div class="picto-item">
        <div class="picto-icon">⚖️</div>
        <div class="picto-label">Comprendre</div>
      </div>
      <div class="picto-item">
        <div class="picto-icon">🔍</div>
        <div class="picto-label">Repérer</div>
      </div>
      <div class="picto-item">
        <div class="picto-icon">🦺</div>
        <div class="picto-label">Agir</div>
      </div>
      <div class="picto-item">
        <div class="picto-icon">📢</div>
        <div class="picto-label">Informer</div>
      </div>
    </div>

    <p class="desc">
      En <strong>3 heures</strong>, vous allez découvrir comment le SST contribue à la prévention des risques professionnels dans l'entreprise.<br />
      Cette formation vous aidera à mieux comprendre votre rôle, à <strong>repérer les situations dangereuses</strong> et à transmettre une information utile pour éviter qu'un accident ne se produise.
    </p> 

    <a href="ecran2-pourquoi.html" class="btn-cta">
      Commencer la formation
      <span class="btn-arrow">›</span>
    </a>

    <div class="duree">Durée estimée : <span>10 minutes</span> · 5 séquences</div>

  </div>
</main>

<!-- Bottom -->
<div class="progress-bar"><div class="progress-fill" id="pf"></div></div>
<div class="bottom-nav">
  <span class="nav-label">Module 0</span>
  <div class="module-dots">
    <div class="dot active"></div>
    <div class="dot"></div>
    <div class="dot"></div>
    <div class="dot"></div>
    <div class="dot"></div>
  </div>
  <span class="nav-label">Écran 1 / 5</span>
</div>

<script>
  // Animate progress bar on load
  setTimeout(() => {
    document.getElementById('pf').style.width = '20%';
  }, 500);
</script>
</body>
</html></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
<p>L’article <a href="https://www.sstpro.fr/1632-2/">leçon 1 article</a> est apparu en premier sur <a href="https://www.sstpro.fr">sstpro-v2</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1632</post-id>	</item>
	</channel>
</rss>
