/* ---------------------------------------------------------
   TIMPO PRO — STYLE CLAIR MODERNE
   --------------------------------------------------------- */

/* Typographie globale */
body {
    font-family: "Inter", system-ui, sans-serif;
    background: #f5f7fa;
    color: #1a1a1a;
    line-height: 1.7;
}

/* Titres */
h1, h2, h3, h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #0d1b2a;
}

/* Sections */
.section {
    padding: 70px 30px;
    max-width: 900px;
    margin: 60px auto;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Paragraphes */
.section p {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: #333;
}

/* Listes */
.section ul {
    padding-left: 20px;
}

.section ul li {
    margin-bottom: 10px;
}

/* Boîtes (features, valeurs, FAQ, RGPD…) */
.feature-box,
.value-box,
.api-box,
.rgpd-box,
.faq-item {
    background: #f1f5fb;
    padding: 22px;
    border-radius: 12px;
    border-left: 5px solid #0078D4;
    margin-bottom: 20px;
    transition: background 0.2s ease;
}

.feature-box:hover,
.value-box:hover,
.api-box:hover,
.rgpd-box:hover,
.faq-item:hover {
    background: #e7f0ff;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #e8f0ff, #f5f9ff);
    padding: 50px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.cta a {
    display: inline-block;
    background: #0078D4;
    color: white !important;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cta a:hover {
    background: #005bb5;
    transform: translateY(-2px);
}

/* Portrait */
.portrait {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px auto;
    display: block;
    border: 5px solid #0078D4;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Highlight */
.highlight {
    background: #eef4ff;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #0078D4;
    margin: 30px 0;
    font-size: 1.1rem;
}

/* Grilles */
.features,
.values,
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.timpo-darkmode-btn {
    background:#0078D4;
    color:white;
    padding:8px 16px;
    border-radius:6px;
    border:none;
    cursor:pointer;
    font-size:1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: background 0.2s ease;
}

.timpo-darkmode-btn:hover {
    background:#005bb5;
}
/* Positionner le bouton dans la barre de menu */
.timpo-darkmode-wrapper {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 999;
}

/* Si tu veux l'intégrer dans la barre de menu */
@media (min-width: 768px) {
    .timpo-darkmode-wrapper {
        position: fixed;
        top: 12px;
        right: 40px;
    }
}
