* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Alice', serif;
    line-height: 1.6;
    color: #333;
}

/* HEADER */
header {
    background-color: #fff4f5;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(171, 75, 87, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 35px;
    height: 35px;
}

.logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: #ab4b57;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn-nav {
    background-color: transparent;
    border: 2px solid #ab4b57;
    color: #ab4b57;
    padding: 8px 20px;
    border-radius: 14px;
    font-family: 'Alice', serif;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-nav:hover {
    background-color: #ab4b57;
    color: white;
}

/* SECTION HERO */
.hero {
    background-color: #fff4f5;
    padding: 60px 20px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 30px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 250px;
}

.hero-cta p {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.btn-hero {
    background-color: #ab4b57;
    color: white;
    border: none;
    border-radius: 14px;
    padding: 15px 30px;
    font-family: 'Alice', serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(171, 75, 87, 0.3);
}

.hero-image {
    flex: 0 0 auto;
}

.phone-mockup {
    width: 280px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(171, 75, 87, 0.15);
}

.phone-mockup2 {
    width: 280px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(171, 75, 87, 0.15);
}
/* SECTION STATISTIQUES */
.stats {
    background-color: #fffcf8;
    padding: 80px 20px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.stat-block {
    text-align: center;
}

.stat-number {
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    color: #000;
    margin-bottom: 20px;
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* SECTION FONCTIONNALITÉS */
.features {
    background-color: #fff4f5;
    padding: 80px 20px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.features-left {
    flex: 1;
}

.features h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 50px;
    text-align: left;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 0;
}

.feature-card {
    display: flex;
    align-items: start;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #e5d3d3;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.8rem;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #000;
    font-weight: 400;
}

.feature-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

.phones-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-shrink: 0;
    position: relative;
    margin-top: 200px;
}

.phones-showcase .phone-mockup {
    width: 200px;
}

.phones-showcase .phone-mockup:first-child {
    z-index: 2;
}

.phones-showcase .phone-mockup:last-child {
    z-index: 1;
    margin-left: -30px;
}

/* SECTION USAGES */
.usage {
    background-color: #fffcf8;
    padding: 80px 20px;
}

.usage-container {
    max-width: 1200px;
    margin: 0 auto;
}

.usage h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}

.usage-cards {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.usage-card {
    background-color: #f8e0df;
    border-radius: 16px;
    padding: 10px 15px;
    text-align: center;
    flex: 0 1 180px;
}

.usage-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto 10px;
}

.usage-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 10px;
    font-weight: 400;
}

.usage-card p {
    font-size: 1rem;
}

/* COMMENT ÇA MARCHE */

.comment-class {
  width: 120%;
  max-width: 700px;   /* augmente ici : 600 → 700 → 800 si besoin */
  height: auto;
  display: block;
  margin: auto;  /* centre l’image */
}

.how-section {
    margin-top: 60px;
}

.how-section h2 {
    text-align: center;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0 60px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 20px;
}

.process-step {
    text-align: center;
    flex-shrink: 0;
}

.process-icon {
    margin-bottom: 20px;
}

.process-text {
    font-family: 'Alice', serif;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #000;
}

.process-arrow {
    display: flex;
    align-items: center;
}

.how-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 450px;
    margin: 0 auto;
}

.how-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.how-icon {
    width: 75px;
    height: 75px;
    background-color: #f8e0df;
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.how-icon svg {
    width: 60px;
    height: 60px;
}

/* SECTION SOLIDARITÉ */
.solidarity {
    background-color: #fff4f5;
    padding: 80px 20px;
}

.solidarity-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.solidarity h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 40px;
}

.solidarity-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
}

.solidarity-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.join-text {
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    margin-top: 30px;
    color: #ab4b57;
}

/* SECTION SOUTIEN */
.support {
    background-color: #fffcf8;
    padding: 80px 20px;
}

.support-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.support h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
}

.support-text {
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f8e0df;
    border-radius: 14px;
    background-color: white;
    font-family: 'Alice', serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #ab4b57;
}

.petition-card {
    background-color: #f8e0df;
    border-radius: 20px;
    padding: 15px 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.petition-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.2;
    font-weight: 400;
}

.signature-counter {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 10px 0;
}

.digit {
    background-color: white;
    width: 32px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: #ab4b57;
    color: white;
    border: none;
    border-radius: 14px;
    padding: 10px 40px;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(171, 75, 87, 0.4);
}

/* FOOTER */
footer {
    background-color: #fff4f5;
    padding: 40px 20px;
    text-align: center;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-cta {
        margin: 0 auto;
    }

    .support-container {
        grid-template-columns: 1fr;
    }

    .phones-showcase {
        flex-wrap: wrap;
        margin-top: 60px;
    }

    .nav-buttons {
        gap: 10px;
    }

    .btn-nav {
        padding: 6px 15px;
        font-size: 0.9rem;
    }

    .features-container {
        flex-direction: column;
        align-items: stretch;
    }

    .features h2 {
        text-align: center;
    }

    .features-grid {
        gap: 25px;
    }
}

/*//////////////*/


/* ==========================
   UX - Toast notification
========================== */
.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  width: min(380px, calc(100vw - 36px));
  background: #ffffff;
  border: 1px solid rgba(171, 75, 87, 0.18);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 14px 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #f8e0df;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.toast-title {
  font-family: "Anton", sans-serif;
  font-size: 1rem;
  margin: 0 0 4px;
  color: #000;
  font-weight: 400;
}

.toast-text {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}

.toast-close {
  margin-left: auto;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: #ab4b57;
  padding: 4px 6px;
  border-radius: 8px;
}

.toast-close:hover {
  background: rgba(171, 75, 87, 0.08);
}

/* ==========================
   UX - Buttons loading state
========================== */
.btn-primary[disabled],
.btn-hero[disabled] {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn-loading {
  position: relative;
}

.btn-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-top-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  display: inline-block;
  margin-left: 10px;
  vertical-align: -3px;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==========================
   UX - Counter pop
========================== */
.signature-counter.pop {
  transform: scale(1.06);
  transition: transform 0.18s ease;
}




/* page priavacy . html */

/* ===== RGPD / LEGAL ===== */
.form-legal{
  margin-top: 12px;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.6;
}

.form-legal a{
  color: #ab4b57;
  font-weight: 700;
  text-decoration: none;
}

.form-legal a:hover{
  text-decoration: underline;
}

.footer-link{
  color: #ab4b57;
  font-weight: 700;
  text-decoration: none;
}

.footer-link:hover{
  text-decoration: underline;
}

/* Page privacy.html */
.legal-header{
  background: #fff4f5;
  border-bottom: 1px solid rgba(171, 75, 87, 0.12);
  padding: 16px 20px;
}

.legal-container{
  max-width: 900px;
  margin: 0 auto;
}

.legal-back{
  display: inline-block;
  color: #ab4b57;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 12px;
}

.legal-brand{
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-logo{
  width: 34px;
  height: 34px;
}

.legal-title{
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  color: #ab4b57;
}

.legal{
  padding: 40px 20px 70px;
  background: #fffcf8;
}

.legal h1{
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 8px;
  color: #000;
}

.legal-muted{
  color: #666;
  margin-bottom: 26px;
}

.legal-card{
  background: #fff;
  border: 1px solid rgba(171, 75, 87, 0.12);
  border-radius: 18px;
  padding: 18px 18px;
  margin-bottom: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.legal-card h2{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #000;
}

.legal-card ul{
  padding-left: 18px;
}

.legal-card li{
  margin: 6px 0;
}

.legal-footer-note{
  margin-top: 18px;
  color: #666;
  font-size: 0.95rem;
}
