:root {
    --primary: #27ae60; /* Vert pour la croissance */
    --dark: #2c3e50;    /* Bleu marine pour le sérieux */
    --light: #f4f7f6;   /* Gris clair pour le fond */
    --white: #ffffff;
    --accent: #e67e22; /* Orange pour les mises en avant */
}

/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1510511459019-5da40973d657?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover fixed; /* Image de fond artisan */
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    display: flex; /* Pour centrer le contenu verticalement si besoin */
    align-items: center;
    min-height: 60vh; /* Pour qu'il prenne de la hauteur */
}

nav {
    display: flex;
    justify-content: center; /* Centrer le logo */
    padding-bottom: 30px;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white); /* Couleur du texte du logo */
}

.logo span { color: var(--primary); }

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span { color: var(--primary); }

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Boutons */
.btn-main {
    background: var(--primary);
    color: var(--white);
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.btn-main:hover { background: #219150; transform: translateY(-3px); }

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-secondary:hover { background-color: var(--primary); color: var(--white); transform: translateY(-3px); }

/* Sections générales */
section {
    padding: 80px 0;
}

.problem { background: var(--light); }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.card-info {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 5px solid var(--primary);
    transition: 0.3s ease;
}

.card-info:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.15); }

.card-info h3 { font-size: 2.8rem; color: var(--primary); margin-bottom: 15px; display: flex; align-items: center; justify-content: center; gap: 10px;}
.card-info h3 .fas { font-size: 2.2rem; }

.card-info p { font-size: 1.1rem; color: #555; }

.loss-calculator {
    background-color: #ffe0b2; /* Orange très clair */
    border-left: 5px solid var(--accent);
    padding: 30px;
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.loss-calculator h3 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.loss-calculator p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.loss-calculator strong {
    color: var(--accent);
    font-weight: bold;
}

/* How It Works */
.how-it-works { background: var(--white); }

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    display: flex;
    align-items: flex-start; /* Alignement en haut pour le texte */
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step span {
    background: var(--primary);
    color: var(--white);
    min-width: 40px; /* Taille fixe */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0; /* Empêche le rétrécissement */
}

.step p {
    font-size: 1.1rem;
    color: #333;
}

.step strong { color: var(--primary); }


.sms-example {
    margin-top: 80px;
    text-align: center;
}

.sms-example h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--dark);
}

.sms-bubble {
    background-color: #e0f7fa; /* Couleur de bulle de SMS */
    border-radius: 20px 20px 20px 5px;
    padding: 20px;
    max-width: 450px;
    margin: 0 auto;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
}

.sms-bubble p {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.1rem;
}

.sms-bubble a {
    color: var(--primary);
    text-decoration: underline;
}

.sms-bubble span {
    display: block;
    font-size: 0.8rem;
    color: #777;
    text-align: right;
    margin-top: 10px;
}


/* FAQ */
.faq { background: var(--light); }

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer; /* Indique que c'est cliquable si tu veux faire un accordéon plus tard */
}
.faq-item h3 .fas { color: var(--primary); font-size: 1.5rem;}

.faq-item p {
    font-size: 1rem;
    color: #555;
    padding-left: 30px; /* Pour aligner avec le texte après l'icône */
}


/* Pricing */
.pricing { padding: 80px 0; background: var(--white); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: flex-start;
}

.price-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    flex: 1;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.price-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.15); }

.price-card.featured {
    border: 3px solid var(--primary);
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.3);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.price-card h3 { font-size: 2rem; margin-bottom: 20px; color: var(--dark); }
.price { font-size: 3.5rem; font-weight: bold; margin: 20px 0; color: var(--primary); }
.price span { font-size: 1.2rem; color: #777; font-weight: normal; }

ul { list-style: none; margin-bottom: 30px; text-align: left; }
ul li { margin-bottom: 12px; font-size: 1.05rem; color: #444; display: flex; align-items: center; gap: 10px; }
ul li .fas { color: var(--primary); }

.setup { font-size: 1rem; color: #777; margin-bottom: 30px; }

.option-num {
    text-align: center;
    margin-top: 60px;
    font-size: 1.1rem;
    color: var(--dark);
    background-color: #d4edda; /* Vert très clair */
    border: 1px solid #c3e6cb;
    padding: 20px;
    border-radius: 8px;
}
.option-num strong { color: var(--primary); }

/* Trusted By (Professions) */
.trusted-by { background: var(--light); padding: 60px 0; }
.professions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.professions span {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-weight: bold;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}
.professions span .fas { color: var(--primary); }

/* Footer */
footer {
    text-align: center;
    padding: 50px 0;
    background: var(--dark);
    color: var(--white);
    position: relative;
}

footer p {
    margin-bottom: 15px;
}

.footer-badge {
    background: var(--accent);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    display: inline-flex; /* Pour centrer le badge */
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.footer-badge .fas { font-size: 1.2rem; }


/* Media Queries for Responsiveness */
@media (max-width: 900px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.1rem; }
    h2 { font-size: 2rem; }
    .card-info h3 { font-size: 2.2rem; }
    .price { font-size: 3rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: scale(1); } /* Retirer le scale sur mobile */
}

@media (max-width: 600px) {
    .hero { padding: 80px 0 60px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    h2 { font-size: 1.8rem; }
    .grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .step { flex-direction: column; text-align: center; }
    .step span { margin-bottom: 10px; }
    .sms-bubble { max-width: 90%; }
    .faq-item p { padding-left: 0; }
    .professions span { font-size: 0.9rem; padding: 12px 20px; }
}

.logo {
    display: flex;
    align-items: center; /* Aligne l'image et le texte verticalement */
    gap: 15px; /* Espace entre l'image et le texte */
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
}

.logo img {
    height: 60px; 
    width: auto;
}

.logo span {
    color: var(--primary);
}

nav {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}





