@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #24252A;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

/* Liens, boutons */
li, a, button {
    font-weight: 500;
    font-size: 16px;
    color: white;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
}

.logo {
    cursor: pointer;
    width: 15%;
    display: block;
}

.nav_links {
    list-style: none;
}

.nav_links li {
    display: inline-block;
    padding: 0px 20px;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover {
    color: #3a7afe;
}

button {
    padding: 9px 25px;
    background-color: #3a7afe;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    color: white;
    font-weight: 500;
}

button:hover {
    background-color: #2660d7;
}

/* Titres et paragraphes */
h1, h2, h3, h4, h5, h6, p {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
    line-height: 1.2;
    color: #3a7afe;
}

h2, h3 {
    color: #3a7afe;
    margin-bottom: 12px;
}

p {
    color: white;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
}

p.muted, .small {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: left;
}

/* Container central */
.about-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Critères et listes */
.criteria {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.criteria .check::before {
    content: "✓ ";
    color: white;
}

/* Tableaux pour facturation et positionnement */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

table th, table td {
    border: 1px solid #3a3a3a;
    padding: 10px;
    text-align: left;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    color: white;
}

.badge.blue { background: #3b82f6; }
.badge.green { background: #34d399; }
.badge.orange { background: #fb923c; }

/* Section tarifs - cartes */
.pricing {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-bottom: 40px;
}

.card {
    position: relative;
    background: transparent;
    border: 2px solid #3a7afe;
    border-radius: 8px;
    padding: 25px;
    width: 280px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card h3 {
    margin: 0 0 10px 0;
}

.card ul li::before {
    content: "✓ ";
    color: white;
}

.subtitle {
    color: #cbd5e1;
    font-size: 14px;
    margin: 5px 0 15px 0;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.card ul li {
    margin: 8px 0;
    color: white;
}

/* Ribbon gratuit */
.card .ribbon {
    width:170px;
    height:38px;
    background:#3a7afe;
    color:white;
    font-weight:bold;
    text-align:center;
    line-height:38px;
    position:absolute;
    top:5px;
    left:-60px;
    transform:rotate(-45deg);
    box-shadow:0 2px 6px rgba(0,0,0,0.3);
}

/* Boutons uniforme */
.btn, button {
    display: inline-block;
    padding: 10px 25px;
    background-color: #3a7afe;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover, button:hover {
    background-color: #2660d7;
}

/* Section contact */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 20px auto 60px auto;
}

.contact-form label {
    color: white;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #3a3a3a;
    background: #1e1f23;
    color: white;
    font-size: 16px;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #cbd5e1;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3a7afe;
}

/* Slider avis horizontal */
.testimonial-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
}

.testimonial-card {
    min-width: 220px;
    border: 1px solid #3a3a3a;
    padding: 15px;
    border-radius: 8px;
    flex: 0 0 auto;
    background: #1e1f23;
}

.testimonial-card span {
    display: inline-block;
    padding: 2px 6px;
    margin-top: 5px;
    border-radius: 12px;
    font-size: 12px;
    color: white;
    background: #34d399; /* badge vert */
}

/* Responsive */
@media (max-width: 880px) {
    .pricing {
        flex-direction: column;
        align-items: center;
    }
    .criteria {
        grid-template-columns: 1fr;
    }
    .testimonial-slider {
        flex-direction: column;
        gap: 15px;
    }
    .card {
        width: 90%;
    }
    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }
}
