:root {
  --primary: #5a6650;
  --primary-dark: #3d4636;
  --primary-light: #7a8870;
  --orange: #e07520;
  --orange-dark: #c4611a;
  --accent: #0088cc;
  --text: #0a0e08;
  --text-muted: #4a5248;
  --bg: #f7f8f5;
  --bg-card: #ffffff;
  --border: #dde3d8;
  --font: 'Sora', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.65; font-size: clamp(1rem, 1.1vw, 1.0625rem); }

nav {
  background: var(--primary-dark);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-text { color: #fff; font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em; }
.nav-logo-text span { color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dark); }
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger svg { width: 26px; height: 26px; fill: #fff; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-mobile { display: none; flex-direction: column; gap: 0.75rem; background: var(--primary-dark); padding: 1rem 2rem 1.5rem; }
.nav-mobile a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.95rem; padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav-mobile.open { display: flex; }

.hero {
  background: linear-gradient(135deg, #1c2418 0%, #2e3a28 40%, #3d4e35 70%, #1c2418 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem 4.5rem;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(224,117,32,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 80% 100%, rgba(90,102,80,0.25) 0%, transparent 70%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(224,117,32,0.15);
  border: 1px solid rgba(224,117,32,0.4);
  color: #f0a050;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: #f0a050;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--orange);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 4px 20px rgba(224,117,32,0.4);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,117,32,0.5); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  backdrop-filter: blur(6px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); }
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
}
.stars { color: #f0a050; letter-spacing: 0.05em; }
.hero-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.25); }

.manifesto {
  background: var(--primary);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.manifesto::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(224,117,32,0.08);
}
.container { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.manifesto .section-label { color: #f0a050; }
.manifesto h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 680px;
  margin-bottom: 2rem;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  align-items: center;
}
.manifesto-text p {
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}
.manifesto-text p:last-child { margin-bottom: 0; }
.manifesto-text strong { color: #fff; font-weight: 600; }
.manifesto-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.manifesto-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.manifesto-stat-icon {
  width: 44px; height: 44px;
  background: rgba(224,117,32,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.manifesto-stat-icon svg { width: 22px; height: 22px; }
.manifesto-stat-text { color: rgba(255,255,255,0.9); font-size: 0.92rem; line-height: 1.4; }
.manifesto-stat-text strong { display: block; font-size: 1.1rem; color: #fff; font-weight: 700; }


.pillars .container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.pillars {
  background: var(--bg);
  padding: 5.5rem 1.5rem;
}
.pillars h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.pillars-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 3.5rem;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, var(--primary));
  border-radius: 16px 16px 0 0;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.pillar-card:nth-child(1) { --card-accent: #e07520; }
.pillar-card:nth-child(2) { --card-accent: #5a6650; }
.pillar-card:nth-child(3) { --card-accent: #0088cc; }
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.pillar-card:nth-child(1) .pillar-icon { background: rgba(224,117,32,0.12); }
.pillar-card:nth-child(2) .pillar-icon { background: rgba(90,102,80,0.12); }
.pillar-card:nth-child(3) .pillar-icon { background: rgba(0,136,204,0.12); }
.pillar-icon svg { width: 26px; height: 26px; }
.pillar-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.pillar-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}
.pillar-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pillar-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}
.pillar-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--card-accent, var(--primary));
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.security {
  background: linear-gradient(135deg, #f0f4ed 0%, #e8f0e2 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 1.5rem;
}
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.security h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.security-lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.security-reasons {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.security-reason {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.security-reason-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.security-reason-icon svg { width: 18px; height: 18px; }
.security-reason-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; }
.security-reason-text strong { color: var(--text); font-weight: 600; }
.security-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.security-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.security-steps {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.security-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-num {
  width: 32px; height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
.step-body strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 0.2rem; }
.security-cta {
  display: block;
  text-align: center;
  background: var(--orange);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(224,117,32,0.35);
}
.security-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.security-note {
  text-align: center;
  font-size: 0.78rem;
  color: #999;
  margin-top: 0.85rem;
}
.badge-free {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(90,102,80,0.1);
  border: 1px solid rgba(90,102,80,0.25);
  color: var(--primary);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.final-cta {
  background: linear-gradient(135deg, #1c2418 0%, #2e3a28 50%, #1c2418 100%);
  padding: 5.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(224,117,32,0.15) 0%, transparent 70%);
}
.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.final-cta h2 em { font-style: normal; color: var(--orange); }
.final-cta p {
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}
.final-cta .hero-ctas { margin-bottom: 1.5rem; }
.final-cta-note {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
}
.final-cta-note a { color: rgba(255,255,255,0.55); }

footer {
  background: #0a0e08;
  color: rgba(255,255,255,0.45);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.8;
}
footer a { color: rgba(255,255,255,0.55); text-decoration: underline; }
footer strong { color: rgba(255,255,255,0.7); font-weight: 600; }

@media (max-width: 900px) {
  .manifesto-grid, .security-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillars-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
@media (max-width: 767px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .manifesto, .pillars, .security, .final-cta { padding: 3.5rem 1.25rem; }
  .security-box { padding: 1.75rem 1.25rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 340px; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.fade-in.visible { opacity: 1; transform: none; }
</style>
<style id="htmlpub-breakpoint-visibility">@media (max-width: 767px) { .hp-hide-mobile { display: none !important; } }
@media (min-width: 768px) and (max-width: 1199px) { .hp-hide-tablet { display: none !important; } }
@media (min-width: 1200px) { .hp-hide-desktop { display: none !important; } }

/* OVERLAY */
.popup-jsa {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* ouverte */
.popup-jsa.open {
  display: flex;
}

/* BOÎTE POPUP */
.popup-content {
  background: #fcf9f9;
  width: 92%;
  max-width: 520px;

  /* clé UX mobile */
  max-height: 85vh;
  overflow-y: auto;

  border-radius: 12px;
  padding: 1.5rem;

  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* BOUTON FERMER FIXE (toujours visible) */
.popup-close {
  position: sticky;
  top: 0;
  float: right;

  font-size: 28px;
  cursor: pointer;
  z-index: 10;

  background: #fcf9f9;
  padding: 5px 10px;
  border-radius: 6px;
}

/* TEXTE */
.popup-text {
  text-align: center;
  margin-bottom: 1.2rem;
}

.popup-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.popup-text p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}

/* MOBILE OPTIMISÉ */
@media (max-width: 600px) {
  .popup-content {
    max-height: 90vh;
    padding: 1.2rem;
  }

  .popup-text h3 {
    font-size: 1.05rem;
  }
}