.elementor-2 .elementor-element.elementor-element-5bc8d6a{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* =========================================
   STYLE "HUPSO-LIKE" - ORGANIC & HUMAN
   ========================================= */

/* 1. TYPOGRAPHIE & COULEURS */
:root {
    --brand-blue: #1e3a8a;       /* Bleu Nuit Hupso (Confiance) */
    --brand-yellow: #fde047;     /* Jaune Solaire (Énergie) */
    --brand-cream: #fffbeb;      /* Fond Crème (Chaleur) */
    --text-dark: #1f2937;        /* Gris très foncé (Lecture) */
    --radius-l: 24px;            /* Gros arrondis */
    --radius-m: 12px;
}

body {
    font-family: 'DM Sans', 'Inter', sans-serif !important; /* Moderne et rond */
    background-color: #FAFAFA; /* Pas blanc pur, un gris très doux */
    color: var(--text-dark);
}

/* Les Titres façon "Journal Sérieux" mais modernes */
h1, h2, h3 {
    font-family: 'Merriweather', 'Playfair Display', serif !important; /* Clé du style Hupso */
    color: var(--brand-blue);
    font-weight: 800 !important;
    letter-spacing: -0.5px;
}

/* Surtitre (Le petit tag au dessus du H1) */
.tag-hupso {
    display: inline-block;
    background-color: var(--brand-yellow);
    color: var(--brand-blue);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* =========================================
   2. LES BOUTONS (Gros, Gras, Rond)
   ========================================= */
.elementor-button {
    background-color: var(--brand-blue) !important;
    color: white !important;
    border-radius: 50px !important; /* Forme Pilule */
    padding: 18px 40px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    border: none !important;
}

.elementor-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
    background-color: #2e54b5 !important; /* Bleu un peu plus clair */
}

/* Bouton Secondaire (Style transparent) */
.btn-secondary .elementor-button {
    background-color: transparent !important;
    color: var(--brand-blue) !important;
    border: 2px solid var(--brand-blue) !important;
}

/* =========================================
   3. LES CARTES (Style "Papier Épais")
   ========================================= */
/* Ajoutez la classe "card-hupso" à vos colonnes */
.card-hupso > .elementor-widget-wrap {
    background-color: white !important;
    border-radius: var(--radius-l);
    padding: 40px !important;
    border: 1px solid #e5e7eb; /* Bordure grise très fine */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card-hupso:hover > .elementor-widget-wrap {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-blue);
}

/* =========================================
   4. ÉLÉMENTS SPÉCIFIQUES
   ========================================= */

/* Images avec coins arrondis organiques */
img {
    border-radius: var(--radius-m);
}

/* La section "Preuve Sociale" (Logos) en niveau de gris */
.logos-partners img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}
.logos-partners img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Listes à puces avec coches vertes/bleues */
.elementor-widget-text-editor ul li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 500;
}

.elementor-widget-text-editor ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-weight: 900;
    font-size: 1.2rem;
    background: var(--brand-yellow); /* Rond jaune derrière la coche */
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}/* End custom CSS */