/* Palette
   Bleu nuit: #1A2A40
   Or doux: #D4A857
   Turquoise: #3EC5D3
   Fond: #F7F5F0
   Texte: #2E2E2E
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,main {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #F7F5F0;
  color: #2E2E2E;
  line-height: 1.6;
  
  display: flex; flex-direction: column; min-height: 100vh;
}

main { flex: 1; }

img {
  max-width: 100%;
  height: auto;
}

 a.logo { color: #FFF;}
  a.logo:hover { color: #D4A857; }
  
  
  .logo img { width: 44px; border:0px; display: inline-block; }
  
  .logo span {      display: inline-block;
    vertical-align: top;
    margin-top: 8px;
    padding-left: 7px; }
  
  .main-nav a { display: inline-block; padding: 5px; }
  .main-nav a:hover {  background-color: #D4A857;  color: #444; }
  
 .TOUTBLANC { background: #FFF;  }
 .TOUTBLANC:hover {  background-color: #F0ECE2; }

 .TOUTVERT { background: #A6E8A1;  }
 .TOUTVERT:hover { background: #82DE7A; }

.TOUTROUGE { background: #F9B;  }
 .TOUTROUGE:hover { background: #F68; }
 

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  background-color: #1A2A40;
  color: #F7F5F0;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo {
  font-weight: 700;
  letter-spacing: 0.06em;
}




.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.main-nav a {
  color: #F7F5F0;
  text-decoration: none;
}




.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #D4A857;
}

/* Hero */

.hero {
  padding: 3.5rem 0 3rem;
  background: radial-gradient(circle at top left, #3EC5D3 0, #1A2A40 45%, #1A2A40 100%);
  color: #F7F5F0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

	   .ss-stats {
  background: #111827;          /* fond foncé, légèrement bleuté */
  color: #e5e7eb;               /* gris très clair */
  padding: 24px 16px;
  margin: 24px 0;
}

.ss-stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.ss-stat-item {
  flex: 1 1 150px;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ss-stat-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.ss-stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;               /* gris moyen */
  margin-bottom: 4px;
}

.ss-stat-value {
  font-size: 22px;
  font-weight: 600;
  color: #f9fafb;               /* presque blanc */
}

      .pricing {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
			color: #2E2E2E;
        }

        .price-card {
            position: relative;
            border-radius: 5px;
            padding: 20px 18px 22px;
            background: #fff;
            box-shadow: var(--shadow-soft);
            border: 5px solid #777;
        }

    .price-card-nobox {
            position: relative;
            border-radius: 5px;
            padding: 0px 18px 0px;
			color: #FFF;
        }
		
	.price-card-nobox  h3 {	color: #D4A857; font-size:20px; }


        .price-card.featured {
            border: 5px solid #D4A857;
        }

        .price-badge {
            position: absolute;
            top: 12px;
            right: 14px;
            background: #D4A857;
            color: #fff;
            font-size: 0.75rem;
            padding: 4px 9px;
            border-radius: 999px;
            font-weight: 600;
        }

        .price-amount {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--dark);
        }

        .price-amount span {
            font-size: 0.9rem;
            font-weight: 400;
            color: #666;
        }

        .price-list {
            list-style: none;
            padding-left: 0;
            margin: 10px 0 14px;
            font-size: 0.92rem;
        }

        .price-list li {
            margin-bottom: 6px;
        }

        .price-list li::before {
            content: "• ";
            color: var(--primary);
        }


.signup-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.signup-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.signup-row input[type="email"] {
  flex: 1 1 180px;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: #D4A857;
  color: #1A2A40;
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: #e2b96b;
}

.micro-copy {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

.hero-card {
  background-color: rgba(247, 245, 240, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(212, 168, 87, 0.4);
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.hero-card ul {
  padding-left: 1.1rem;
  margin: 0.75rem 0 0;
}

/* Sections génériques */

.section {
  padding: 1rem 0;
}

.alt-bg {
  background-color: #F0ECE2;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.section-highlight {
  margin-top: 1.5rem;
  font-weight: 500;
  border-left: 4px solid #D4A857;
  padding-left: 0.75rem;
}

/* Listes, colonnes, cartes */

.list-bullets {
  list-style: none;
  padding-left: 0;
}

.list-bullets li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.4rem;
}

.list-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3EC5D3;
}

.columns-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.columns-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.testimonial {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 1.25rem;
  border-left: 4px solid #3EC5D3;
  font-size: 0.95rem;
}

.author {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #555;
}

/* Étapes */

.steps {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

.steps li {
  counter-increment: step;
  margin-bottom: 0.6rem;
  padding-left: 2rem;
  position: relative;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background-color: #3EC5D3;
  color: #1A2A40;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Sécurité */

.security-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 1.25rem;
  border: 1px solid rgba(26, 42, 64, 0.1);
}

/* Premium */

.premium {
  background-color: #1A2A40;
  color: #F7F5F0;
}

.premium-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: center;
}

.offer-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #D4A857;
  margin-top: 0;
  margin-bottom: 1rem;
}

.btn-secondary {
  background-color: #D4A857;
  color: #1A2A40;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
text-decoration: none;
}

.btn-secondary:hover {
  background-color: #e2b96b;
}

/* FAQ */

.faq details {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.6rem;
  border: 1px solid rgba(26, 42, 64, 0.08);
}

.faq summary {
  cursor: pointer;
  font-weight: 500;
}

/* Footer */




 .anchor-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.5rem;
      font-size: 0.9rem;
      margin-top: 1.5rem;
    }

    .anchor-nav a {
      color: #F7F5F0;
      text-decoration: none;
      opacity: 0.9;
    }

    .anchor-nav a:hover {
      color: #3EC5D3;
      opacity: 1;
    }

.site-footer {
  background-color: #111827;
  color: #F7F5F0;
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: #F7F5F0;
  text-decoration: none;
}

.footer-links a:hover {
  color: #3EC5D3;
}

.error-message {
  background-color: #FDECEC;
  border-left: 4px solid #D9534F;
  color: #A94442;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}


.ok-message {
  background-color: #ECECFD;
  border-left: 4px solid #4F53D9;
  color: #4442A9;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}


/* Bloc question – doux, rassurant */
.faq-cta-box {
  background-color: #CBD3DF; /* Doux, neutre */
  color: #1A2A40;
  
  border-radius: 14px;
/*  margin-top: 3rem;  padding: 2.5rem; */
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.faq-cta-box h3 {
  margin-top: 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.faq-cta-box p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.faq-question-input {
  width: 100%;
  max-width: 500px;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #CCC;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.btn-send-question {
  background-color: #FFFFFF;
  color: #1A2A40;
  border: 2px solid #1A2A40;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-send-question:hover {
  background-color: #1A2A40;
  color: #FFFFFF;
}


.btn-cancel {
    background: #ccc;
    border: none;
    padding: 10px 15px;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
	text-decoration: none;
	color:#777;
}

.btn-cancel:hover {
    background: #999;
 	color:#FFF;
}



.intro-box {
    background: #F7F5F0;
    border-left: 4px solid #D4A857;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 6px;
    color: #2E2E2E;
}
.intro-box h2 {
    margin-top: 0;
    color: #1A2A40;
}

.steps-box-SBS {
    display: flex;
    align-items: flex-start;
    gap: 18px;
 background: #EDDBB8;
 border: 2px solid #D4A857; /* Or doux */

 padding: 22px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.steps-icon-SBS {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #D4A857; /* couleur forte */
 
	color: #1A2A40;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}



.steps-guide-SBS {
    flex: 1;
}

.steps-guide-SBS h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;


}

.steps-guide-SBS h4 { color #DDD; } 


.steps-guide-SBS p {
    margin-top: 8px;
    font-size: 1rem;
    line-height: 1.5;
    color: #000;
}


.avatarCharset {
    width: 50px;
    height: 50px;

    background-size: auto;       /* pas de redimensionnement */
	
	
    border-radius: 50%;          /* rend le conteneur rond */
    overflow: hidden;            /* masque le reste du sprite */
	border: 1px solid #777;
	display: inline-block;
    background-repeat: no-repeat;
    image-rendering: pixelated;  /* évite la compression */
    
    /* Position du sprite à ajuster */
   
}

/* Bouton désactivé (gris) */
.btn-secondary.disabled , .btn-send-question.disabled {
    background-color: #d3d3d3;
    color: #777;
    cursor: not-allowed;
}

.charset_F_T3 { background-image: url("img/charset_F_T3.png?2"); }
.charset_G_1 { background-image: url("img/charset_G_1.png?2"); }
.charset_G_2 { background-image: url("img/charset_G_2.png?2"); }
.charset_G_3 { background-image: url("img/charset_G_3.png?2"); }
.charset_H_3 { background-image: url("img/charset_H_3.png?2"); }
.charset_H_2 { background-image: url("img/charset_H_2.png?2"); }
.charset_H_1 { background-image: url("img/charset_H_1.png?2"); }
.charset_H_32 { background-image: url("img/charset_H_32.png?2"); }
.charset_M_1 { background-image: url("img/charset_M_1.png?2"); }
.charset_M_2 { background-image: url("img/charset_M_2.png?2"); }
.charset_M_3 { background-image: url("img/charset_M_3.png?2"); }
.charset_MT_31 { background-image: url("img/charset_MT_31.png?2"); }


/* Responsive tablette & PC */

@media (max-width: 900px) {
  .hero-grid,
  .premium-inner,
  .columns-3,
  .columns-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .main-nav {
    gap: 0.75rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .signup-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}




@media (max-width: 700px) {
  .signup-row input[type="email"] {
    padding: 0.4rem 0.6rem; /* Hauteur réduite */
    font-size: 0.9rem;      /* Optionnel : texte légèrement plus compact */
	flex: 1 1 20px;
  }
}
