

/* ============================================================
   Contact Form 7 — Style Cycloove
   ============================================================ */

.wpcf7 {
    font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 25px;
    color: #626262;
}

/* Texte d'intro (les <strong> au-dessus du formulaire) */
.wpcf7 > form > p:first-child,
.wpcf7 > form > p:first-child + p {
    font-size: 13px;
    color: #a8a8a8;
    margin-bottom: 20px;
}

/* Suppression des <br> générés par CF7 */
.wpcf7 br {
    display: none;
}

/* Espacement entre champs */
.wpcf7 .wpcf7-form p {
    margin-bottom: 14px;
}

/* ---- Labels ---- */
.wpcf7 label,
.wpcf7 .wpcf7-form > p > label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #444444;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---- Inputs texte / email / tel ---- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"] {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    color: #626262;
    font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="number"]:focus {
    border-color: #96C11E;
    box-shadow: 0 0 0 3px rgba(150, 193, 30, 0.15);
}

/* ---- Select ---- */
.wpcf7 select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='none' stroke='%2396C11E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    color: #626262;
    font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7 select:focus {
    border-color: #96C11E;
    box-shadow: 0 0 0 3px rgba(150, 193, 30, 0.15);
}

/* ---- Textarea ---- */
.wpcf7 textarea {
    width: 100%;
    min-height: 110px;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    color: #626262;
    font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    box-sizing: border-box;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.wpcf7 textarea:focus {
    border-color: #96C11E;
    box-shadow: 0 0 0 3px rgba(150, 193, 30, 0.15);
}

/* ---- Placeholders ---- */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #a8a8a8;
    font-style: italic;
}

/* ---- Civilité : checkboxes en pills ---- */
.wpcf7 .wpcf7-checkbox {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
    margin: 0;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border: 1.5px solid #e0e0e0;
    border-radius: 24px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #626262;
    font-family: "Sora", sans-serif;
    transition: all 0.2s ease;
    margin: 0;
    user-select: none;
    background-color: #ffffff;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item label:hover {
    border-color: #96C11E;
    color: #96C11E;
}

.wpcf7 .wpcf7-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin: 0;
    padding: 0;
    border: 1.5px solid #cccccc;
    border-radius: 4px;
    accent-color: #96C11E;
    cursor: pointer;
    -webkit-appearance: auto;
    appearance: auto;
}

/* Pill active quand cochée */
.wpcf7 .wpcf7-checkbox input[type="checkbox"]:checked + span {
    color: #96C11E;
}

/* ---- Upload de fichier ---- */
.wpcf7 .wpcf7-file,
.wpcf7 input[type="file"] {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    background-color: #f7f7f7;
    color: #626262;
    font-family: "Sora", sans-serif;
    font-size: 13px;
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7 .wpcf7-file:hover,
.wpcf7 input[type="file"]:hover {
    border-color: #96C11E;
}

/* Drag-n-drop plugin (CF7 Drag & Drop) */
.wpcf7 .wpcf7-drag-n-drop-file {
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 20px 16px;
    text-align: center;
    background-color: #f7f7f7;
    font-family: "Sora", sans-serif;
    font-size: 13px;
    color: #a8a8a8;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.wpcf7 .wpcf7-drag-n-drop-file:hover,
.wpcf7 .wpcf7-drag-n-drop-file.dragging {
    border-color: #96C11E;
    background-color: rgba(150, 193, 30, 0.05);
}

/* Note sur les fichiers acceptés */
.wpcf7 .wpcf7-form p:has(> .wpcf7-drag-n-drop-file),
.wpcf7 .wpcf7-form p:has(> .wpcf7-file) {
    font-size: 12px;
    color: #a8a8a8;
}

/* ---- Bouton Envoyer ---- */
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
    display: inline-block;
    padding: 15px 40px;
    background-color: #96C11E;
    color: #ffffff;
    font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
    width: auto;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
    background-color: #85b018;
    box-shadow: 0 4px 14px rgba(150, 193, 30, 0.35);
}

.wpcf7 input[type="submit"]:active,
.wpcf7 .wpcf7-submit:active {
    transform: translateY(1px);
}

/* ---- Messages de validation ---- */
.wpcf7 .wpcf7-not-valid-tip {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #e74c3c;
    font-family: "Sora", sans-serif;
}

.wpcf7 input.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid,
.wpcf7 select.wpcf7-not-valid {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12) !important;
}

/* ---- Réponse globale (bas de formulaire) ---- */
.wpcf7 .wpcf7-response-output {
    padding: 12px 18px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 13px;
    font-family: "Sora", sans-serif;
    border-width: 1.5px;
    border-style: solid;
}

.wpcf7 .wpcf7-mail-sent-ok {
    background-color: rgba(150, 193, 30, 0.08);
    border-color: #96C11E;
    color: #5a7a01;
}

.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-aborted {
    background-color: rgba(231, 76, 60, 0.08);
    border-color: #e74c3c;
    color: #c0392b;
}

.wpcf7 .wpcf7-spam-blocked {
    background-color: rgba(230, 126, 34, 0.08);
    border-color: #e67e22;
    color: #d35400;
}

.wpcf7 .wpcf7-validation-errors {
    background-color: rgba(230, 126, 34, 0.08);
    border-color: #e67e22;
    color: #d35400;
}

/* ---- Spinner de chargement ---- */
.wpcf7 .ajax-loader {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    opacity: 0.7;
}

/* ============================================================
   Timeline verticale zigzag — Cycloove
   ============================================================ */

.cyc-timeline {
    position: relative;
    padding: 0 0 16px;
    max-width: 780px;
    margin: 0 auto;
}

/* Ligne verticale centrale */
.cyc-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 12px;
    bottom: 12px;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
        to bottom,
        rgba(150, 193, 30, 0) 0%,
        rgba(150, 193, 30, 0.35) 6%,
        rgba(150, 193, 30, 0.35) 94%,
        rgba(150, 193, 30, 0) 100%
    );
    z-index: 0;
}

/* Chaque étape */
.cyc-tl-item {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

.cyc-tl-item:last-child {
    margin-bottom: 0;
}

/* Badge centré */
.cyc-tl-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cyc-tl-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #96C11E;
    border: 2px solid #f9f9f9;
    box-shadow: 0 0 0 2px rgba(150, 193, 30, 0.25), 0 2px 10px rgba(150, 193, 30, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.cyc-tl-badge:hover {
    transform: scale(1.08);
    box-shadow: 0 0 0 3px rgba(150, 193, 30, 0.45), 0 6px 24px rgba(150, 193, 30, 0.3);
}

.cyc-tl-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: -0.5px;
    color: #ffffff;
    line-height: 1;
}

/* ---- Card ---- */
.cyc-tl-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-top-color 0.25s ease;
}

.cyc-tl-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(150, 193, 30, 0.12);
    border-top-color: #96C11E;
}

/* Grand chiffre décoratif en fond de card */
.cyc-tl-card::after {
    content: attr(data-num);
    position: absolute;
    bottom: -8px;
    right: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 46px;
    color: #96C11E;
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.25s ease;
}

.cyc-tl-card:hover::after {
    opacity: 0.09;
}

/* Card à DROITE (étapes impaires) */
.cyc-tl-card--right {
    margin-left: 12px;
}

.cyc-tl-card--right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-right-color: #ffffff;
    border-left-width: 0;
    filter: drop-shadow(-2px 0 2px rgba(0,0,0,0.04));
}

/* Card à GAUCHE (étapes paires) */
.cyc-tl-card--left {
    margin-right: 12px;
    text-align: right;
}

.cyc-tl-card--left::after {
    right: auto;
    left: 12px;
}

.cyc-tl-card--left::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-left-color: #ffffff;
    border-right-width: 0;
    filter: drop-shadow(2px 0 2px rgba(0,0,0,0.04));
}

/* ---- Icône ---- */
.cyc-tl-icon {
    width: 28px;
    height: 28px;
    background: rgba(150, 193, 30, 0.1);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    flex-shrink: 0;
    transition: background-color 0.25s ease;
}

.cyc-tl-card:hover .cyc-tl-icon {
    background: rgba(150, 193, 30, 0.18);
}

.cyc-tl-card--left .cyc-tl-icon {
    margin-left: auto;
}

.cyc-tl-icon svg {
    width: 14px;
    height: 14px;
    stroke: #96C11E;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---- Textes ---- */
.cyc-tl-step-label {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #96C11E;
    margin-bottom: 4px;
}

.cyc-tl-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #333333;
    margin: 0 0 5px;
    line-height: 1.3;
}

.cyc-tl-desc {
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    color: #a0a0a0;
    line-height: 1.55;
    margin: 0;
}

/* Colonne vide (spacer) */
.cyc-tl-spacer {
    display: block;
}

/* ---- Responsive ---- */
@media only screen and (max-width: 767px) {
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"],
    .wpcf7 select,
    .wpcf7 textarea {
        font-size: 13px;
        padding: 10px 14px;
    }

    .wpcf7 .wpcf7-checkbox {
        flex-direction: column;
        gap: 8px;
    }

    .wpcf7 input[type="submit"] {
        width: 100%;
        text-align: center;
    }

    /* Timeline verticale — mobile */
    .cyc-timeline::before {
        left: 23px;
        transform: none;
    }

    .cyc-tl-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 16px;
    }

    .cyc-tl-spacer {
        display: none;
    }

    .cyc-tl-center {
        order: 1;
        flex-shrink: 0;
    }

    .cyc-tl-card--right,
    .cyc-tl-card--left {
        order: 2;
        flex: 1;
        margin-left: 16px;
        margin-right: 0;
        text-align: left;
    }

    .cyc-tl-card--left .cyc-tl-icon {
        margin-left: 0;
    }

    .cyc-tl-card--left::before,
    .cyc-tl-card--right::before {
        display: none;
    }
}

/* ============================================================
   Page 404 — Cycloove
   ============================================================ */

.cyc-404 {
    padding: 80px 0 100px;
    text-align: center;
}

.cyc-404-eyebrow {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #96C11E;
    margin: 0 0 10px;
}

.cyc-404-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #222222;
    margin: 0 0 16px;
}

.cyc-404-text {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #777777;
    max-width: 520px;
    margin: 0 auto 28px;
}

.cyc-404-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cyc-404-btn {
    padding: 10px 26px;
}

.cyc-404-link {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    color: #96C11E;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cyc-404-link:hover {
    color: #7da017;
}

@media only screen and (max-width: 767px) {
    .cyc-404 {
        padding: 60px 0 80px;
    }

    .cyc-404-title {
        font-size: 24px;
    }

    .cyc-404-text {
        font-size: 14px;
        margin-bottom: 22px;
    }
}

/* ============================================================
   Carrousel logos clients — Cycloove
   ============================================================ */

.cyc-logos-wrap {
    overflow: hidden;
    padding: 16px 0;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* La piste contient 2× les logos pour le loop sans couture */
.cyc-logos-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: cyc-logos-scroll 44s linear infinite;
}

/* Pause au survol */
.cyc-logos-wrap:hover .cyc-logos-track {
    animation-play-state: paused;
}

/* Chaque logo */
.cyc-logo-item {
    flex-shrink: 0;
    width: 130px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyc-logo-item img {
    max-width: 130px;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.45);
    transition: filter 0.35s ease, transform 0.3s ease;
    display: block;
}

.cyc-logo-item img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

@keyframes cyc-logos-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   Section CTA Contact — Globale (toutes les pages)
   ============================================================ */

.cyc-cta-section {
    background-color: #96C11E;
    padding: 80px 40px;
}

.cyc-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* ---- Colonne gauche ---- */
.cyc-cta-left {
    color: #ffffff;
}

.cyc-cta-eyebrow {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
}

.cyc-cta-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 36px;
}

/* Bloc coordonnées — téléphone + email alignés */
.cyc-cta-coords {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 28px;
}

/* Téléphone et email au même gabarit */
.cyc-cta-phone,
.cyc-cta-email {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 20px;
}

.cyc-cta-phone:hover,
.cyc-cta-email:hover {
    opacity: 0.88;
    background: rgba(255, 255, 255, 0.22);
}

.cyc-cta-phone {
    font-size: 28px;
    letter-spacing: -0.5px;
}

.cyc-cta-email {
    font-size: 16px;
    letter-spacing: 0;
}

.cyc-cta-phone svg,
.cyc-cta-email svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    opacity: 0.85;
}

/* Infos locales */
.cyc-cta-location {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
}

.cyc-cta-location svg {
    width: 15px;
    height: 15px;
    stroke: rgba(255, 255, 255, 0.8);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---- Colonne droite — formulaire ---- */
.cyc-cta-right .wpcf7 {
    background: #ffffff;
    border: none;
    border-radius: 70px 70px;
    padding: 48px 44px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* ---- Responsive ---- */
@media only screen and (max-width: 960px) {
    .cyc-cta-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cyc-cta-section {
        padding: 64px 24px;
    }

    .cyc-cta-phone {
        font-size: 36px;
    }

    .cyc-cta-right .wpcf7 {
        border-radius: 40px 20px;
        padding: 36px 28px;
    }
}

@media only screen and (max-width: 767px) {
    .cyc-cta-title {
        font-size: 26px;
    }

    .cyc-cta-phone {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .cyc-cta-right .wpcf7 {
        border-radius: 28px 14px;
        padding: 28px 20px;
    }
}

/* ============================================================
   Bandeau 1 — Avantages
   ============================================================ */

.cyc-avantages {
    display: flex;
    align-items: stretch;
    background-color: #96C11E;
    padding: 0 40px;
}

.cyc-avantage {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 24px;
    text-decoration: none !important;
}

.cyc-avantage + .cyc-avantage {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.cyc-avantage__img-wrap {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyc-avantage__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    display: block;
}

.cyc-avantage__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cyc-avantage__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.cyc-avantage__desc {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

/* ============================================================
   Bandeau 2 — Labels & Certifications
   ============================================================ */

.cyc-labels {
    display: flex;
    align-items: stretch;
    background-color: #f5f7f2;
    padding: 0 40px;
}

.cyc-label {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 24px;
    text-decoration: none !important;
    transition: background-color 0.2s ease;
}

.cyc-label:hover {
    background-color: rgba(150, 193, 30, 0.06);
}

.cyc-label + .cyc-label {
    border-left: 1px solid #e4e9da;
}

.cyc-label__logo-wrap {
    width: 90px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyc-label__logo {
    max-width: 90px;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(100%) opacity(0.55);
    transition: filter 0.25s ease;
}

.cyc-label:hover .cyc-label__logo {
    filter: grayscale(0%) opacity(1);
}

.cyc-label__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cyc-label__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #333333;
    line-height: 1.3;
}

.cyc-label__desc {
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    color: #888888;
    line-height: 1.5;
}

.cyc-label__link {
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #96C11E;
    margin-top: 2px;
}

/* ---- Responsive ---- */
@media only screen and (max-width: 767px) {
    .cyc-avantages,
    .cyc-labels {
        flex-direction: column;
        padding: 0 20px;
    }

    .cyc-avantage + .cyc-avantage,
    .cyc-label + .cyc-label {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cyc-label + .cyc-label {
        border-top-color: #e4e9da;
    }

    .cyc-avantage,
    .cyc-label {
        padding: 20px 12px;
    }
}

/* ============================================================
   Page Conseil & Accompagnement — Cycloove (v2)
   ============================================================ */

.cyc-conseil-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* ---- Séparateur avec losange central ---- */
.cyc-conseil-sep {
    border: none;
    position: relative;
    height: 1px;
    background: linear-gradient(to right, transparent, #b0d94a 25%, #b0d94a 75%, transparent);
    margin: 64px 0;
}

.cyc-conseil-sep::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #96C11E;
    border-radius: 2px;
    box-shadow: 0 0 0 5px #ffffff, 0 0 0 7px rgba(150, 193, 30, 0.3);
}

/* ---- Tag / eyebrow thématique ---- */
.cyc-conseil-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(150, 193, 30, 0.1);
    color: #4d6b00;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 7px 16px 7px 12px;
    border-radius: 30px;
    margin-bottom: 16px;
    border: 1px solid rgba(150, 193, 30, 0.3);
    line-height: 1;
}

.cyc-conseil-tag .fa {
    color: #96C11E;
    font-size: 13px;
}

/* ---- Bloc texte + image ---- */
.cyc-conseil-block {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 68px;
    align-items: center;
    padding: 44px 0;
}

.cyc-conseil-block--img-left {
    grid-template-columns: 380px 1fr;
}

.cyc-conseil-block--img-left .cyc-conseil-block__img {
    order: -1;
}

/* ---- H2 avec soulignement vert ---- */
.cyc-conseil-h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 25px;
    color: #1a1a1a;
    line-height: 1.32;
    margin: 0 0 10px;
    position: relative;
    padding-bottom: 20px;
}

.cyc-conseil-h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #96C11E, #b0d94a);
    border-radius: 3px;
}

.cyc-conseil-block__text > p {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    line-height: 1.82;
    color: #5a5a5a;
    margin: 22px 0 18px;
}

/* ---- Liste vélo (flex + ::before FA) ---- */
.cyc-conseil-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cyc-conseil-list > li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #444444;
}

.cyc-conseil-list > li::before {
    font-family: 'FontAwesome';
    content: '\f206';
    font-size: 13px;
    color: #96C11E;
    flex-shrink: 0;
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

/* Sous-liste flèche */
.cyc-conseil-list ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cyc-conseil-list ul li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

.cyc-conseil-list ul li::before {
    content: '→';
    color: #96C11E;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 4px;
}

.cyc-conseil-list a {
    color: #4d6b00;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.cyc-conseil-list a:hover {
    color: #96C11E;
}

/* ---- Image avec ombre décalée verte ---- */
.cyc-conseil-block__img img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow:
        16px 16px 0 rgba(150, 193, 30, 0.18),
        0 18px 52px rgba(0, 0, 0, 0.13);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cyc-conseil-block--img-left .cyc-conseil-block__img img {
    box-shadow:
        -16px 16px 0 rgba(150, 193, 30, 0.18),
        0 18px 52px rgba(0, 0, 0, 0.13);
}

.cyc-conseil-block__img:hover img {
    transform: translateY(-6px);
    box-shadow:
        16px 20px 0 rgba(150, 193, 30, 0.22),
        0 28px 66px rgba(0, 0, 0, 0.16);
}

.cyc-conseil-block--img-left .cyc-conseil-block__img:hover img {
    box-shadow:
        -16px 20px 0 rgba(150, 193, 30, 0.22),
        0 28px 66px rgba(0, 0, 0, 0.16);
}

/* ---- Section médias (vidéos + galerie) ---- */
.cyc-conseil-media {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 52px;
    align-items: start;
    padding: 44px 0 0;
}

/* Titre centré avec barre verte */
.cyc-conseil-media-col-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
    margin: 0 0 6px;
    position: relative;
    padding-bottom: 18px;
}

.cyc-conseil-media-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 3px;
    background: #96C11E;
    border-radius: 3px;
}

.cyc-conseil-media-col-sub {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    color: #a0a0a0;
    text-align: center;
    margin: 16px 0 28px;
}

/* ---- Video cards avec vignette YouTube ---- */
.cyc-conseil-videos-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 26px;
}

.cyc-vid-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #111;
    cursor: pointer;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
    transition: box-shadow 0.3s ease;
}

.cyc-vid-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.32);
}

.cyc-vid-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease, filter 0.45s ease;
    filter: brightness(0.78);
}

.cyc-vid-card:hover > img {
    transform: scale(1.06);
    filter: brightness(0.6);
}

/* Bouton play */
.cyc-vid-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.cyc-vid-play svg {
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.55));
    transition: transform 0.28s ease;
}

.cyc-vid-card:hover .cyc-vid-play svg {
    transform: scale(1.18);
}

/* Iframe injectée au clic */
.cyc-vid-card--playing > img,
.cyc-vid-card--playing .cyc-vid-play {
    display: none;
}

.cyc-vid-card--playing iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---- Galerie masonry photos ---- */
.cyc-conseil-gallery-grid {
    columns: 3;
    column-gap: 10px;
}

.cyc-conseil-gallery-item {
    break-inside: avoid;
    display: block;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}

.cyc-conseil-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.38s ease, filter 0.38s ease;
}

.cyc-conseil-gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.78);
}

/* Overlay loupe au hover */
.cyc-gallery-zoom-icon {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.cyc-conseil-gallery-item:hover .cyc-gallery-zoom-icon {
    opacity: 1;
}

.cyc-gallery-zoom-icon svg {
    width: 30px;
    height: 30px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55));
}

/* ---- Responsive tablette ---- */
@media only screen and (max-width: 960px) {
    .cyc-conseil-block,
    .cyc-conseil-block--img-left {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 0;
    }

    .cyc-conseil-block--img-left .cyc-conseil-block__img {
        order: 0;
    }

    .cyc-conseil-block--img-left .cyc-conseil-block__img img {
        box-shadow:
            16px 16px 0 rgba(150, 193, 30, 0.18),
            0 18px 52px rgba(0, 0, 0, 0.13);
    }

    .cyc-conseil-media {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cyc-conseil-gallery-grid {
        columns: 3;
    }

    .cyc-conseil-h2 { font-size: 22px; }
    .cyc-conseil-sep { margin: 48px 0; }
}

/* ---- Responsive mobile ---- */
@media only screen and (max-width: 600px) {
    .cyc-conseil-page { padding: 0 16px 40px; }
    .cyc-conseil-h2 { font-size: 20px; }
    .cyc-conseil-gallery-grid { columns: 2; }
    .cyc-conseil-sep { margin: 36px 0; }
    .cyc-conseil-block { padding: 28px 0; }
    .cyc-conseil-block__text > p,
    .cyc-conseil-list > li { font-size: 14px; }
    .cyc-conseil-media-col-title { font-size: 18px; }
    .cyc-vid-play svg { width: 44px; height: 44px; }
}

/* ============================================================
   #Subheader — style Cycloove (inspiré scooterrental)
   ============================================================ */

#Subheader {
    background-color: #111a0a !important;
    background-image: none !important;
    padding: 90px 0 70px !important;
    text-align: center;
}

.subheader-both-center #Subheader .title {
    font-family: 'Poppins', sans-serif;
    font-size: 55px;
    line-height: 65px;
    font-weight: 600;
    letter-spacing: -1px;
    font-style: normal;
}

/* Colonne unique recentrée comme un two-third */
#Subheader .container {
    text-align: center;
}

#Subheader .column.one {
    width: 66.666% !important;
    margin: 0 auto !important;
    float: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Breadcrumbs → label vert au-dessus du H1 */
#Subheader ul.breadcrumbs {
    order: -1;
    display: inline-flex !important;
    flex-wrap: nowrap;
    align-items: center;
    float: none !important;
    width: auto !important;
    text-align: center;
    margin: 0 0 20px !important;
    font-size: .85em;
    white-space: nowrap;
}

#Subheader ul.breadcrumbs::before {
    content: '●';
    color: #96C11E;
    font-size: 18px;
    margin-right: 10px;
    line-height: 1;
    flex-shrink: 0;
}

#Subheader ul.breadcrumbs li,
#Subheader ul.breadcrumbs li a {
    color: rgba(255, 255, 255, .65) !important;
}

#Subheader ul.breadcrumbs li a {
    color: #96C11E !important;
    font-weight: 600;
}

#Subheader ul.breadcrumbs .mfn-breadcrumbs-separator i {
    color: rgba(255, 255, 255, .3) !important;
}

/* H1 — grand titre blanc centré */
#Subheader h1.title {
    color: #fff !important;
    text-align: center;
    width: 100% !important;
    float: none !important;
    font-size: 38px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

/* Ligne de séparation décorative verte en bas */
#Subheader::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #96C11E 30%, #96C11E 70%, transparent);
}

/* ---- Responsive ---- */
@media only screen and (max-width: 767px) {
    #Subheader {
        padding: 60px 0 50px !important;
    }

    #Subheader .column.one {
        width: 90% !important;
    }

    #Subheader h1.title {
        font-size: 26px !important;
    }
}

/* ============================================================
   #Large Gamme — Cards produits
   ============================================================ */

.large_gamme .icon_box {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.large_gamme .icon_box:hover {
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.16);
    transform: translateY(-5px);
}

/* Ratio fixe 4/3 pour uniformiser toutes les images */
.large_gamme .image_wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background-color: #f4f6f8;
}

.large_gamme img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

.large_gamme .icon_box:hover img {
    transform: scale(1.06);
}

/* Titre sous l'image */
.large_gamme .desc_wrapper {
    padding: 16px 18px 20px;
    border-top: 3px solid #96C11E;
}

.large_gamme .desc_wrapper .title {
    font-size: 14.5px !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
    color: #1a2332 !important;
    margin: 0 !important;
    text-align: center;
}

.large_gamme .desc_wrapper .title:before {
    background-color: #fff!important;
}

/* ---- Responsive ---- */
@media only screen and (max-width: 767px) {
    .large_gamme .icon_box {
        border-radius: 12px;
    }

    .large_gamme .image_wrapper {
        border-radius: 12px 12px 0 0;
    }

    .large_gamme .desc_wrapper {
        padding: 12px 14px 16px;
    }

    .large_gamme .desc_wrapper .title {
        font-size: 13.5px !important;
    }
}


/* ============================================================
   Footer custom Cycloove — #cycloove-footer
   ============================================================ */

#cycloove-footer {
    background-color: #1a2332;
    color: rgba(255, 255, 255, 0.75);
    font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    padding: 60px 0 40px;
    border-top: 3px solid #96C11E;
}

.cf-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.4fr 1.6fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ---- Titres de colonnes ---- */
.cf-col-title {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #96C11E;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---- Colonne 1 : Brand ---- */
.cf-col--brand .cf-logo-link {
    display: inline-block;
    margin-bottom: 18px;
}

.cf-col--brand .cf-logo-link img {
    display: block;
    max-width: 160px;
    height: auto;
    filter: brightness(1) drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}

.cf-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 22px;
    line-height: 1.65;
}

.cf-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cf-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.cf-social-link:hover {
    background-color: #96C11E;
    color: #1a2332;
    transform: translateY(-2px);
}

/* ---- Colonne 2 : Contact ---- */
.cf-contact-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cf-contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.cf-icon {
    flex-shrink: 0;
    color: #96C11E;
    margin-top: 3px;
    display: flex;
}

.cf-contact-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cf-contact-list a:hover {
    color: #96C11E;
}

.cf-address {
    align-items: flex-start;
}

.cf-address span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.7;
}

.cf-address strong {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(150, 193, 30, 0.9);
    font-weight: 600;
}

.cf-france-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    margin-top: 4px;
}

.cf-france-badge img {
    flex-shrink: 0;
    border-radius: 6px;
}

.cf-france-badge span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* ---- Colonne 3 : Partenaires ---- */
.cf-partners-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.cf-logo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    padding: 8px 14px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.cf-logo-chip:hover {
    background-color: #ffffff;
    transform: translateY(-1px);
}

.cf-logo-chip img {
    max-height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
}

/* ---- Colonne 4 : Certifications ---- */
.cf-certifs-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.cf-certifs-list .cf-logo-chip img {
    max-height: 52px;
    max-width: 140px;
}

.cf-cta {
    margin-top: 4px;
}

.cf-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
    font-family: "Poppins", sans-serif;
}

.cf-cta-btn:hover {
    border-color: #96C11E;
    color: #96C11E;
    background-color: rgba(150, 193, 30, 0.07);
}

/* ---- Barre de copyright ---- */
.cf-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 20px 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
}

.cf-copyright {
    font-family: "Sora", sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
}

.cf-copyright a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cf-copyright a:hover {
    color: #96C11E;
}

@media only screen and (max-width: 640px) {
    .cf-bottom {
        padding: 20px 20px 0;
    }
}

/* ---- Responsive tablette (≤ 1024px) ---- */
@media only screen and (max-width: 1024px) {
    .cf-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* ---- Responsive mobile (≤ 640px) ---- */
@media only screen and (max-width: 640px) {
    #cycloove-footer {
        padding: 40px 0 30px;
    }

    .cf-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }

    .cf-col--brand .cf-logo-link img {
        max-width: 140px;
    }

    .cf-col-title {
        font-size: 11px;
    }

    .cf-partners-grid img,
    .cf-certifs-list img {
        max-width: 120px;
    }
}


/* ============================================================
   Page À Propos — cyc-about-*
   ============================================================ */

/* ---- Titre de section centré ---- */
.cyc-about-section {
    padding: 52px 0 40px;
    text-align: center;
}

.cyc-about-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #1a1a1a;
    margin: 0 0 14px;
    display: inline-block;
    position: relative;
    padding-bottom: 20px;
}

.cyc-about-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #96C11E, #b0d94a);
    border-radius: 3px;
}

/* ---- Valeurs ---- */
.cyc-about-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    text-align: left;
}

.cyc-about-val {
    flex: 0 0 calc(33.333% - 11px);
    max-width: calc(33.333% - 11px);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px 20px;
    background: #f7f8f5;
    border-radius: 14px;
    border-left: 3px solid #96C11E;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
}

.cyc-about-val:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(150, 193, 30, 0.13);
}

.cyc-about-val__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #96C11E;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.cyc-about-val h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 0 6px !important;
    line-height: 1.3 !important;
}

.cyc-about-val p {
    font-family: 'Sora', sans-serif;
    font-size: 13px !important;
    color: #666 !important;
    margin: 0 !important;
    line-height: 1.65 !important;
}

/* ---- Chiffres clés (carte sombre) ---- */
.cyc-about-stats {
    background: #1a2332;
    border-radius: 20px;
    padding: 56px 48px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin: 8px 0 52px;
    box-shadow: 0 20px 60px rgba(26, 35, 50, 0.22);
}

.cyc-about-stat {
    flex: 1;
    text-align: center;
    padding: 0 36px;
}

.cyc-about-stat + .cyc-about-stat {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.cyc-about-stat__number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 62px;
    font-weight: 800;
    color: #96C11E;
    line-height: 1;
    margin-bottom: 14px;
}

.cyc-about-stat__label {
    font-family: 'Sora', sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
}

.cyc-about-stat__label strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

/* Image sous le bloc stats — même largeur que le bloc */
.cyc-about-stats-img {
    width: 100%;
    max-width: 100%;
    margin: 24px 0 52px;
}

.cyc-about-stats-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

/* ============================================================
   WPBakery vc_basic_grid — CSS injecté via wp_footer(9999)
   dans functions.php pour garantir la priorité absolue.
   ============================================================ */

/* ---- Certifications ---- */
.cyc-about-certifs {
    text-align: left;
    margin-top: 40px;
}

.cyc-about-certif {
    display: flex;
    gap: 36px;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid #ebebeb;
}

.cyc-about-certif:last-child {
    border-bottom: none;
}

.cyc-about-certif__logo {
    flex-shrink: 0;
    width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyc-about-certif__logo img {
    max-width: 170px;
    max-height: 78px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.cyc-about-certif__text {
    font-family: 'Sora', sans-serif;
    font-size: 14.5px;
    color: #555;
    line-height: 1.78;
}

.cyc-about-certif__text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.cyc-about-certif__text a {
    color: #4d6b00;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.cyc-about-certif__text a:hover {
    color: #96C11E;
}

/* ---- Ils nous font confiance ---- */
.cyc-about-clients {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 40px;
}

.cyc-about-client {
    aspect-ratio: 3 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f8f5;
    border-radius: 12px;
    padding: 14px;
    transition: background-color 0.25s ease;
}

.cyc-about-client:hover {
    background: #eef5d6;
}

.cyc-about-client img {
    max-width: 100%;
    max-height: 54px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.3s ease;
}

.cyc-about-client:hover img {
    filter: grayscale(0%) opacity(1);
}

/* ---- Responsive tablette ---- */
@media only screen and (max-width: 960px) {
    .cyc-about-val {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .cyc-about-stats {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding: 44px 28px;
    }

    .cyc-about-stat + .cyc-about-stat {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 32px;
        width: 100%;
        max-width: 360px;
    }

    .cyc-about-clients {
        grid-template-columns: repeat(4, 1fr);
    }

    .cyc-about-certif {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

/* ---- Responsive mobile ---- */
@media only screen and (max-width: 540px) {
    .cyc-about-val {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .cyc-about-stat__number {
        font-size: 46px;
    }

    .cyc-about-clients {
        grid-template-columns: repeat(3, 1fr);
    }

    .cyc-about-section-title {
        font-size: 22px;
    }
}

/* ══════════════════════════════════════════════════════
   Page Solutions — grille filtrée [cyc_solutions]
   Même langage visuel que .cyc-conseil-block
   ══════════════════════════════════════════════════════ */

/* ── Barre de filtre ── */
.cyc-sol-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0 0 32px;
    margin: 0;
}
.cyc-sol-filter li {
    margin: 0;
    padding: 0;
    list-style: none !important;
}
.cyc-sol-filter-btn {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 30px;
    color: #555;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
    padding: 9px 20px;
    text-transform: uppercase;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.cyc-sol-filter-btn.active,
.cyc-sol-filter-btn:hover {
    background: #96C11E;
    border-color: #96C11E;
    color: #fff;
}

/* ── Grille de cards ── */
.cyc-sol-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ── Card ── */
.cyc-sol-card {
    display: flex;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8edd6;
    box-shadow: 0 4px 28px rgba(0, 0, 0, .08);
    text-decoration: none;
    color: inherit;
    transition: box-shadow .35s ease, transform .35s ease;
}
.cyc-sol-card:hover {
    box-shadow: 0 14px 46px rgba(0, 0, 0, .14);
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}
.cyc-sol-card.cyc-hidden {
    display: none;
}

/* ── Image ── */
.cyc-sol-card__img {
    flex: 0 0 36%;
    overflow: hidden;
}
.cyc-sol-card__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}
.cyc-sol-card:hover .cyc-sol-card__img img {
    transform: scale(1.06);
}

/* ── Contenu ── */
.cyc-sol-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 28px;
    border-left: 3px solid #96C11E;
    overflow: hidden;
    box-sizing: border-box;
}
.cyc-sol-card__body--full {
    border-left: none;
}
.cyc-sol-card__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.35;
    color: #1a2332;
    margin: 0 0 10px;
}
.cyc-sol-card:hover .cyc-sol-card__title {
    color: #96C11E;
}
.cyc-sol-card__excerpt {
    font-family: 'Sora', sans-serif;
    font-size: 13.5px;
    color: #5a5a5a;
    line-height: 1.72;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cyc-sol-card__btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: 1.5px solid #96C11E;
    border-radius: 30px;
    color: #4d6b00;
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    padding: 9px 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .22s ease, color .22s ease;
}
.cyc-sol-card:hover .cyc-sol-card__btn {
    background: #96C11E;
    color: #fff;
}

/* ── Responsive mobile ── */
@media (max-width: 640px) {
    .cyc-sol-card {
        flex-direction: column;
        height: auto;
        border-radius: 14px;
    }
    .cyc-sol-card__img {
        flex: 0 0 200px;
        width: 100%;
    }
    .cyc-sol-card__body {
        border-left: none;
        border-top: 3px solid #96C11E;
        padding: 20px;
    }
}

/* ══════════════════════════════════════════════════════
   Page Réalisations — grille 3 colonnes [cyc_realisations]
   Même langage visuel, layout vertical (image en haut)
   ══════════════════════════════════════════════════════ */

/* Filtre : barre de boutons (.cyc-sol-filter) partagée avec [cyc_solutions] */

/* ── Grille 3 colonnes ── */
.cyc-real-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ── Card ── */
.cyc-real-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8edd6;
    box-shadow: 0 4px 28px rgba(0, 0, 0, .08);
    text-decoration: none;
    color: inherit;
    transition: box-shadow .35s ease, transform .35s ease;
}
.cyc-real-card:hover {
    box-shadow: 0 14px 46px rgba(0, 0, 0, .14);
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}
.cyc-real-card.cyc-hidden {
    display: none;
}

/* ── Image ── */
.cyc-real-card__img {
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}
.cyc-real-card__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}
.cyc-real-card:hover .cyc-real-card__img img {
    transform: scale(1.06);
}

/* ── Contenu ── */
.cyc-real-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 20px 20px;
    border-top: 3px solid #96C11E;
    box-sizing: border-box;
}
.cyc-real-card__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.45;
    color: #1a2332;
    margin: 0 0 14px;
    flex: 1;
}
.cyc-real-card:hover .cyc-real-card__title {
    color: #96C11E;
}
.cyc-real-card__btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: 1.5px solid #96C11E;
    border-radius: 30px;
    color: #4d6b00;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    padding: 8px 18px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .22s ease, color .22s ease;
}
.cyc-real-card:hover .cyc-real-card__btn {
    background: #96C11E;
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .cyc-real-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 580px) {
    .cyc-real-grid {
        grid-template-columns: 1fr;
    }
    .cyc-real-card {
        border-radius: 14px;
    }
}

/* ══════════════════════════════════════════════════════
   Pages Archives (Catégories & Tags) — header + layout
   ══════════════════════════════════════════════════════ */

/* ── En-tête de catégorie / tag ── */
.cyc-archive-header .section_wrapper {
    padding-bottom: 0 !important;
}
.cyc-archive-title-wrap {
    text-align: center;
    padding: 12px 0 28px;
    border-bottom: 2px solid #e8edd6;
    margin-bottom: 36px;
}
.cyc-archive-title {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: clamp(22px, 3vw, 36px) !important;
    color: #1a2332 !important;
    margin: 0 0 8px !important;
    line-height: 1.2 !important;
}
.cyc-archive-desc {
    font-family: 'Sora', sans-serif !important;
    font-size: 15px !important;
    color: #666 !important;
    margin: 0 !important;
    line-height: 1.65 !important;
}

/* ── Pagination ── */
.cyc-archive-pagination {
    margin-top: 40px;
    text-align: center;
}
.cyc-archive-pagination .mfn-pagination,
.cyc-archive-pagination .pagination {
    justify-content: center;
}

/* ══════════════════════════════════════════════════════
   Single Post Réalisation / Solution — Portfolio style
   ══════════════════════════════════════════════════════ */

/* ── Masquage des éléments inutiles ── */
article.type-post .post-nav.minimal,
article.type-post .post-meta.clearfix,
article.type-post .column.one.single-photo-wrapper.image,
.section-post-intro-share,
.section-post-about,
.section-post-comments {
    display: none !important;
}

/* ── H3 dans le contenu post ── */
article.type-post .the_content_wrapper h3,
article.type-post .wpb_wrapper h3 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a2332 !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
}

/* ── Image WPBakery dans le contenu ── */
article.type-post .wpb_single_image .vc_figure,
article.type-post .wpb_single_image figure {
    border-radius: 16px !important;
    overflow: hidden !important;
    display: block !important;
}
article.type-post .wpb_single_image img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

/* ── Bloc info (Lieu / Période / Description) — fond vert clair ── */
article.type-post .vc_col-has-fill > .vc_column-inner {
    border-radius: 16px !important;
    overflow: hidden !important;
    padding: 24px 28px !important;
    background-color: #f7fae8 !important;
    border-left: 4px solid #96C11E !important;
    box-shadow: none !important;
}
/* Labels (Lieu :, Période :, Description :) */
article.type-post .vc_col-has-fill .vc_col-sm-3 .wpb_wrapper p {
    font-family: 'Poppins', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #96C11E !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    margin: 0 0 4px !important;
}
/* Valeurs (Tours (37), Eté 2025, …) */
article.type-post .vc_col-has-fill .vc_col-sm-9 .wpb_wrapper p {
    font-family: 'Sora', sans-serif !important;
    font-size: 14px !important;
    color: #1a2332 !important;
    margin: 0 0 14px !important;
    line-height: 1.65 !important;
}

/* ── Galerie masonry / media grid — coins arrondis ── */
article.type-post .vc_masonry_media_grid .vc_grid-item-mini,
article.type-post .vc_masonry_media_grid .vc_gitem-zone-a,
.vc_masonry_media_grid .vc_grid-item-mini,
.vc_masonry_media_grid .vc_gitem-zone-a,
.vc_media_grid .vc_grid-item-mini,
.vc_media_grid .vc_gitem-zone-a,
.vc_grid-item .vc_gitem-zone-a,
.vc_grid-item-mini .vc_gitem-zone-a {
    border-radius: 12px !important;
    overflow: hidden !important;
}

/* ══════════════════════════════════════════════════════
   Related posts — cards cohérentes
   ══════════════════════════════════════════════════════ */
.section-post-related h4 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    color: #1a2332 !important;
    margin-bottom: 24px !important;
    text-align: center !important;
    letter-spacing: 0 !important;
}
.section-post-related .section-related-ul.col-3 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
}
.section-post-related .post-related {
    width: auto !important;
    float: none !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}
.section-post-related .post-related .mcb-column-inner {
    border-radius: 16px !important;
    overflow: hidden !important;
    border: 1px solid #e8edd6 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07) !important;
    background: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    transition: box-shadow .3s ease, transform .3s ease !important;
}
.section-post-related .post-related .mcb-column-inner:hover {
    box-shadow: 0 10px 36px rgba(0, 0, 0, .13) !important;
    transform: translateY(-4px) !important;
}
/* Image */
.section-post-related .post-related .single-photo-wrapper .image_frame {
    border-radius: 0 !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}
.section-post-related .post-related .single-photo-wrapper .image_wrapper {
    overflow: hidden !important;
    border-radius: 0 !important;
}
.section-post-related .post-related .single-photo-wrapper img {
    display: block !important;
    width: 100% !important;
    transition: transform .4s ease !important;
}
.section-post-related .post-related .mcb-column-inner:hover .single-photo-wrapper img {
    transform: scale(1.05) !important;
}
.section-post-related .post-related .single-photo-wrapper .image_links {
    display: none !important;
}
.section-post-related .post-related .wp-caption-text {
    display: none !important;
}
.section-post-related .post-related .date_label {
    display: none !important;
}
/* Corps texte */
.section-post-related .post-related .desc {
    padding: 14px 16px 18px !important;
    border-top: 3px solid #96C11E !important;
    background: #fff !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}
.section-post-related .post-related .desc h4 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    color: #1a2332 !important;
    margin: 0 0 12px !important;
    line-height: 1.45 !important;
    flex: 1 !important;
}
.section-post-related .post-related .desc h4 a {
    color: inherit !important;
    text-decoration: none !important;
}
.section-post-related .post-related .desc h4 a:hover {
    color: #96C11E !important;
}
.section-post-related .post-related .desc hr.hr_color {
    display: none !important;
}
/* Bouton "En voir davantage" → vert plein */
.section-post-related .post-related .desc a.button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: #96C11E !important;
    background-image: none !important;
    border: none !important;
    border-radius: 30px !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 9px 18px !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: background .22s ease, opacity .22s ease !important;
    align-self: flex-start !important;
    margin: 0 !important;
}
.section-post-related .post-related .desc a.button:hover {
    background: #7aa016 !important;
    color: #fff !important;
    opacity: 1 !important;
}
.section-post-related .post-related .desc .button_icon {
    display: none !important;
}

/* ══════════════════════════════════════════════════════
   su-button (Shortcodes Ultimate) — harmonisé avec le thème
   ══════════════════════════════════════════════════════ */
a.su-button {
    background-color: #96C11E !important;
    border-color: #7aa016 !important;
    border-radius: 30px !important;
    color: #fff !important;
    text-decoration: none !important;
    transition: background .22s ease !important;
}
a.su-button:hover {
    background-color: #7aa016 !important;
    color: #fff !important;
}
a.su-button > span {
    background: transparent !important;
    color: #fff !important;
    border-color: transparent !important;
    border-radius: 30px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    padding: 9px 22px !important;
    text-shadow: none !important;
}

/* ── Responsive related posts ── */
@media (max-width: 900px) {
    .section-post-related .section-related-ul.col-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 580px) {
    .section-post-related .section-related-ul.col-3 {
        grid-template-columns: 1fr !important;
    }
}

/* ══════════════════════════════════════════════════════
   Navigation fixe prev / next (single post)
   On ne touche PAS aux opacity/visibility/transform de
   BeTheme — on stylise uniquement les couleurs et typo.
   ══════════════════════════════════════════════════════ */

.fixed-nav {
    border-radius: 14px !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .12) !important;
    overflow: hidden !important;
    border: 1px solid #e8edd6 !important;
}

/* Flèche → fond vert */
.fixed-nav .arrow {
    background: #96C11E !important;
}
.fixed-nav .arrow i {
    color: #fff !important;
    font-size: 16px !important;
}

/* Photo */
.fixed-nav .photo img {
    object-fit: cover !important;
}

/* Description */
.fixed-nav .desc {
    border-top: 3px solid #96C11E !important;
    background: #fff !important;
}
.fixed-nav .desc h6 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 11.5px !important;
    line-height: 1.45 !important;
    color: #1a2332 !important;
    margin: 0 0 5px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
}
.fixed-nav:hover .desc h6 {
    color: #96C11E !important;
}
.fixed-nav .desc .date {
    font-family: 'Sora', sans-serif !important;
    font-size: 10px !important;
    color: #aaa !important;
}
.fixed-nav .desc .date i {
    color: #96C11E !important;
    font-size: 10px !important;
}

iframe {
    border-radius: 30px;
}

.attachment-full {
    border-radius: 30px;
}

.vc_single_image-img {
    border-radius: 30px;
} 
.attachment-full {
    border-radius: 30px;
}

#Subheader ul.breadcrumbs li {
    width: auto;
    flex-shrink: 0;
}