/* ========================================
   HERO CONVERSION - STYLES PERSONNALISÉS
   ======================================== */

/* Section hero de base */
.hero-conversion {
    padding: 200px 0 80px;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-conversion.hero-home {
    padding: 200px 0 100px;
}

/* Hero content */
.hero-conversion .hero-content {
    position: relative;
    z-index: 2;
}

/* Badges */
.hero-conversion .badge {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

/* Titres */
.hero-conversion h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.hero-conversion .lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

/* Benefits list */
.hero-conversion .key-benefits {
    margin-bottom: 1.5rem;
}

.hero-conversion .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.hero-conversion .benefit-item i {
    color: #fbbf24;
    font-size: 24px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.hero-conversion .benefit-item div {
    color: #ffffff;
}

/* Boutons CTA */
.hero-conversion .cta-buttons {
    margin-top: 30px;
}

.hero-conversion .btn-primary-hero {
    background: #ffffff !important;
    color: #1a1a2e !important;
    border: none !important;
    padding: 15px 35px !important;
    font-size: 18px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.hero-conversion .btn-primary-hero:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2) !important;
    color: #1a1a2e !important;
    background: #ffffff !important;
}

.hero-conversion .btn-secondary-hero {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 2px solid white !important;
    padding: 15px 35px !important;
    font-size: 18px !important;
    border-radius: 8px !important;
    backdrop-filter: blur(10px) !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.hero-conversion .btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px) !important;
    color: white !important;
    border-color: white !important;
}

/* Hero visual (carte photo) */
.hero-conversion .hero-visual {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.hero-conversion .hero-visual img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    object-position: center top;
}

.hero-conversion .hero-visual h2 {
    color: #ffffff;
    letter-spacing: 1.5px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.hero-conversion .hero-visual p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

/* Mini testimonial */
.hero-conversion .mini-testimonial {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    border-left: 4px solid #fbbf24;
    backdrop-filter: blur(10px);
    margin-top: 1.5rem;
}

.hero-conversion .mini-testimonial p:first-child {
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.hero-conversion .mini-testimonial p:last-child {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* ========================================
   VARIABLES — Palette de marque juaikidev
   ======================================== */

:root {
    --color-dojo:      #0d0d0d;
    --color-or:        #c9a96e;
    --color-washi:     #f0ece3;
    --color-nuit:      #1a1a2e;
    --color-terminal:  #4eca7f;
    --color-sang:      #8b0000;
    --color-charbon:   #2a2a2a;
    --color-parchemin: #e8e0d0;
    --color-acier:     #00b4d8;
}

/* ========================================
   TYPOGRAPHIE — Polices de marque
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: "Zen Kaku Gothic New", "Syne", sans-serif;
}

body {
    font-family: "Plus Jakarta Sans", "Circular Std", sans-serif;
}

code, pre, kbd, samp {
    font-family: "JetBrains Mono", "Courier New", monospace;
}

/* ========================================
   HERO — boutons spécifiques page accueil
   ======================================== */

.hero-btn-or {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c9a96e, #a07840);
    color: #0d0d0d !important;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(201, 169, 110, .4);
    transition: transform .25s, box-shadow .25s;
}
.hero-btn-or:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(201, 169, 110, .55);
    color: #0d0d0d !important;
    text-decoration: none;
}

.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #f0ece3 !important;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(201, 169, 110, .5);
    transition: border-color .25s, background .25s;
}
.hero-btn-ghost:hover {
    border-color: #c9a96e;
    background: rgba(201, 169, 110, .1);
    transform: translateY(-3px);
    color: #f0ece3 !important;
    text-decoration: none;
}

/* ========================================
   CTA BANNER — layout & boutons animés
   ======================================== */

.footer-cta {
    background: linear-gradient(135deg, #49025f 0%, #2f0238 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.footer-cta-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.footer-cta-deco-1 {
    top: -100px; right: -80px;
    width: 360px; height: 360px;
    background: rgba(201, 169, 110, .08);
}
.footer-cta-deco-2 {
    bottom: -80px; left: -60px;
    width: 240px; height: 240px;
    background: rgba(201, 169, 110, .05);
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
}

.footer-cta-label {
    color: rgba(201, 169, 110, .85);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 14px;
    font-weight: 600;
}

.footer-cta-title {
    color: #f0ece3;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.footer-cta-title .highlight {
    color: #c9a96e;
    white-space: nowrap;
}

.cta-btn-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    color: #1a1a2e;
    padding: 18px 28px;
    border-radius: 14px;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
    margin-bottom: 14px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.cta-btn-phone:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .45);
    color: #1a1a2e;
    text-decoration: none;
}
.cta-btn-phone .cta-phone-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, #c9a96e, #a07840);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 18px; flex-shrink: 0;
    transition: transform .3s ease;
}
.cta-btn-phone:hover .cta-phone-icon {
    transform: rotate(-15deg) scale(1.15);
}

.cta-btn-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(201, 169, 110, .1);
    color: #f0ece3;
    border: 1px solid rgba(201, 169, 110, .3);
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background .25s, border-color .25s, transform .25s;
}
.cta-btn-msg:hover {
    background: rgba(201, 169, 110, .2);
    border-color: rgba(201, 169, 110, .6);
    transform: translateY(-2px);
    color: #f0ece3;
    text-decoration: none;
}
.cta-btn-msg .fa-arrow-right {
    transition: transform .25s ease;
}
.cta-btn-msg:hover .fa-arrow-right {
    transform: translateX(5px);
}

/* ========================================
   FOOTER — layout
   ======================================== */

.site-footer {
    background: #0d0d0d !important;
}

.site-footer-divider {
    height: 3px;
    background: linear-gradient(90deg, #c9a96e, #4eca7f, #00b4d8);
}

.site-footer-top {
    padding: 70px 0 50px;
}

.footer-brand-logo {
    max-width: 180px;
    height: auto;
    /*filter: brightness(0) invert(1);
    opacity: .9;*/
}

.footer-brand-desc {
    color: rgba(240, 236, 227, .5);
    font-size: 15px;
    line-height: 1.75;
    margin: 22px 0 28px;
}

.footer-col-title {
    color: #f0ece3 !important;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(240, 236, 227, .1);
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.footer-contact-icon {
    width: 34px; height: 34px;
    background: rgba(201, 169, 110, .12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #c9a96e;
    font-size: 14px; flex-shrink: 0;
}
.footer-contact-text {
    color: rgba(240, 236, 227, .55);
    font-size: 14px;
}
.footer-contact-text a {
    color: rgba(240, 236, 227, .55);
    text-decoration: none;
    transition: color .25s;
}
.footer-contact-text a:hover {
    color: #c9a96e;
}

.footer-bar {
    border-top: 1px solid rgba(240, 236, 227, .07);
    padding: 20px 0;
}
.footer-bar-text {
    color: rgba(240, 236, 227, .3);
    font-size: 13px;
    margin: 0;
}
.footer-bar-link {
    color: rgba(240, 236, 227, .3);
    font-size: 13px;
    text-decoration: none;
    transition: color .25s;
}
.footer-bar-link:hover {
    color: #c9a96e;
    text-decoration: none;
}

/* ========================================
   FOOTER — boutons & liens animés
   ======================================== */

.footer-social-btn {
    width: 40px; height: 40px;
    background: rgba(240, 236, 227, .06);
    border: 1px solid rgba(240, 236, 227, .1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(240, 236, 227, .55);
    font-size: 16px;
    text-decoration: none;
    transition: background .25s, color .25s, transform .25s, border-color .25s, box-shadow .25s;
}
.footer-social-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
}
.footer-social-btn.s-linkedin:hover  { background: #0077b5; border-color: #0077b5; box-shadow: 0 6px 18px rgba(0,119,181,.4); }
.footer-social-btn.s-instagram:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; box-shadow: 0 6px 18px rgba(220,39,67,.35); }
.footer-social-btn.s-youtube:hover   { background: #ff0000; border-color: #ff0000; box-shadow: 0 6px 18px rgba(255,0,0,.35); }

.footer-nav-link {
    color: rgba(240, 236, 227, .5);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
}
.footer-nav-link:hover { color: #f0ece3; text-decoration: none; }

.footer-nav-chevron {
    color: #c9a96e;
    font-size: 11px;
    flex-shrink: 0;
    transition: transform .2s ease;
}
.footer-nav-link:hover .footer-nav-chevron { transform: translateX(4px); }

.footer-cta-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #c9a96e, #a07840);
    color: #0d0d0d;
    padding: 15px 24px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(201, 169, 110, .3);
    transition: transform .25s, box-shadow .25s;
}
.footer-cta-tel:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(201, 169, 110, .5);
    color: #0d0d0d;
    text-decoration: none;
}

/* ========================================
   CARTES SERVICES V2 (home.php)
   ======================================== */

.service-card-v2:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
}

/* ========================================
   HEADER — palette juaikidev
   ======================================== */

/* Barre supérieure — Charbon sobre */
header.header-2 .top-header {
    background: #2a2a2a !important;
    border-bottom: 1px solid rgba(201, 169, 110, .15);
}

/* Supprime le clip-path bleu d'origine */
header.header-2 .top-header::before {
    display: none !important;
}

/* Liens email/tel top bar */
header.header-2 .top-header .header-cta ul li a {
    color: rgba(240, 236, 227, .85) !important;
    font-size: 14px;
    transition: color .2s;
}
header.header-2 .top-header .header-cta ul li a:hover {
    color: #c9a96e !important;
}
header.header-2 .top-header .header-cta ul li a i {
    color: #c9a96e !important;
}

/* Séparateur entre items top bar */
header.header-2 .top-header .header-cta ul li::before {
    background: rgba(201, 169, 110, .2) !important;
}

/* Réseaux sociaux top bar */
header.header-2 .top-header .header-right-cta .social-profile a {
   color: #c9a96e !important;
    font-size: 15px;
    transition: color .2s, transform .2s;
    display: inline-block;
}
header.header-2 .top-header .header-right-cta .social-profile a:hover {
     color: rgba(240, 236, 227, .75) !important;
    transform: translateY(-2px);
}

/* Navigation principale — Washi (crème) */
header.header-2 .main-header-wraper {
    background:#fff!important;
    border-bottom: 1px solid rgba(201, 169, 110, .3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

/* État sticky — reste Washi */
header.header-2.sticky {
    background: #f0ece3 !important;
}

/* Logo — couleurs naturelles conservées */
header.header-2 .header-logo .logo img {
    filter: none !important;
}

/* Liens nav desktop — Nuit Code sur fond clair */
header.header-2 .main-menu ul > li > a {
    color: #1a1a2e !important;
    font-size: 15px;
    font-weight: 600;
    transition: color .25s;
}
header.header-2 .main-menu ul > li:hover > a {
    color: #c9a96e !important;
}

/* Sous-menu desktop */
header.header-2 .main-menu ul > li > ul {
    background-color: #f0ece3 !important;
    border-top: 2px solid #c9a96e !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12) !important;
}
header.header-2 .main-menu ul > li > ul li a {
    color: #1a1a2e !important;
    transition: color .25s, padding-left .2s;
}
header.header-2 .main-menu ul > li > ul li a:hover {
    color: #c9a96e !important;
    padding-left: 30px !important;
}

/* Bouton CTA desktop — Or Tatami */
header.header-2 .theme-btn {
    background: linear-gradient(135deg, #c9a96e, #a07840) !important;
    color: #0d0d0d !important;
    border: none !important;
    font-weight: 700 !important;
    transition: transform .25s, box-shadow .25s !important;
}
header.header-2 .theme-btn:hover {
    background: linear-gradient(135deg, #d4b87d, #c9a96e) !important;
    box-shadow: 0 6px 20px rgba(201, 169, 110, .4) !important;
    transform: translateY(-2px);
    color: #0d0d0d !important;
}

/* Hamburger mobile */
header.header-2 #hamburger i {
    color: #1a1a2e !important;
}

/* Menu mobile — fond Washi */
header.header-2 .mobile-nav {
    background: #f0ece3 !important;
}
header.header-2 .mobile-nav .close-nav i {
    color: #1a1a2e !important;
}
header.header-2 .mobile-nav .sidebar-nav .metismenu li a {
    color: #1a1a2e !important;
    border-bottom: 1px solid rgba(26, 26, 46, .08) !important;
}
header.header-2 .mobile-nav .sidebar-nav .metismenu li a:hover {
    color: #c9a96e !important;
}
header.header-2 .mobile-nav .action-bar {
    background: #e8e0d0 !important;
    border-top: 2px solid rgba(201, 169, 110, .25) !important;
}
header.header-2 .mobile-nav .action-bar a {
    color: #1a1a2e !important;
    border-bottom: 1px solid rgba(26, 26, 46, .08) !important;
}
header.header-2 .mobile-nav .action-bar a:hover {
    color: #c9a96e !important;
}
header.header-2 .mobile-nav .action-bar .theme-btn {
    color: #0d0d0d !important;
}

/* ========================================
   SECTION BADGE LABEL (remplace h6 pour heading-order)
   ======================================== */

.section-title.section__title_3 p.section-badge-label {
    font-family: "Circular Std", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title.section__title_3 p.section-badge-label img {
    margin-right: 15px;
}

/* ========================================
   CARTES DE CONTACT
   ======================================== */

.single-contact-card {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.single-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.single-contact-card .top-part {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.single-contact-card .top-part .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.single-contact-card.card1 .top-part .icon {
    background: linear-gradient(135deg, #c9a96e, #a07840);
    color: white;
}

.single-contact-card.card2 .top-part .icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.single-contact-card.card3 .top-part .icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.single-contact-card .top-part .title h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a2e;
}

.single-contact-card .top-part .title span {
    font-size: 14px;
    color: #6c757d;
}

.single-contact-card .bottom-part {
    padding: 0 30px 30px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.single-contact-card .bottom-part .info {
    flex: 1;
}

.single-contact-card .bottom-part .info p {
    margin-bottom: 5px;
    font-size: 16px;
}

.single-contact-card .bottom-part .info p a {
    font-size: 20px;
    font-weight: 600;
}

.single-contact-card .bottom-part .info a {
    color: #1a1a2e;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-contact-card.card1 .bottom-part .info a:hover {
    color: #c9a96e;
}

.single-contact-card.card2 .bottom-part .info a:hover {
    color: #fbbf24;
}

.single-contact-card.card3 .bottom-part .info a:hover {
    color: #10b981;
}

.single-contact-card .bottom-part .info small {
    font-size: 12px;
}

.single-contact-card .bottom-part .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.single-contact-card.card1 .bottom-part .icon {
    background: rgba(201, 169, 110, 0.1);
    color: #c9a96e;
}

.single-contact-card.card2 .bottom-part .icon {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.single-contact-card.card3 .bottom-part .icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.single-contact-card:hover .bottom-part .icon {
    transform: translateX(5px);
}

.single-contact-card .bottom-part .icon a {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   VARIANTES DE COULEURS HERO
   ======================================== */

/* Backend - Bleu foncé */
.hero-conversion.hero-backend {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.88) 0%, rgba(29, 78, 216, 0.90) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-backend .btn-primary-hero {
    color: #1e40af !important;
}

.hero-conversion.hero-backend .btn-primary-hero:hover {
    color: #1e40af !important;
}

/* Frontend - Vert */
.hero-conversion.hero-frontend {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.85) 0%, rgba(5, 150, 105, 0.88) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-frontend .btn-primary-hero {
    color: #10b981 !important;
}

.hero-conversion.hero-frontend .btn-primary-hero:hover {
    color: #10b981 !important;
}

/* WordPress - Bleu WP */
.hero-conversion.hero-wordpress {
    background: linear-gradient(135deg, rgba(0, 115, 170, 0.88) 0%, rgba(0, 93, 138, 0.90) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-wordpress .btn-primary-hero {
    color: #0073aa !important;
}

.hero-conversion.hero-wordpress .btn-primary-hero:hover {
    color: #0073aa !important;
}

/* App - Acier (cyan/teal) */
.hero-conversion.hero-app {
    background: linear-gradient(135deg, rgba(0, 90, 120, 0.9) 0%, rgba(0, 180, 216, 0.82) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-app .btn-primary-hero {
    color: #00b4d8 !important;
}

.hero-conversion.hero-app .btn-primary-hero:hover {
    color: #00b4d8 !important;
}

/* SysAdmin - Orange */
.hero-conversion.hero-sysadmin {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.85) 0%, rgba(217, 119, 6, 0.88) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-sysadmin .btn-primary-hero {
    color: #f59e0b !important;
}

.hero-conversion.hero-sysadmin .btn-primary-hero:hover {
    color: #f59e0b !important;
}

/* Info - Cyan */
.hero-conversion.hero-info {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.85) 0%, rgba(2, 132, 199, 0.88) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-info .btn-primary-hero {
    color: #0ea5e9 !important;
}

.hero-conversion.hero-info .btn-primary-hero:hover {
    color: #0ea5e9 !important;
}

/* Aikido - Rouge */
.hero-conversion.hero-aikido {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.85) 0%, rgba(192, 57, 43, 0.88) 100%), url('/assets_perso/img/aikido/bandeau_aikido.jpg') center/cover;
}

.hero-conversion.hero-aikido .btn-primary-hero {
    color: #e74c3c !important;
}

.hero-conversion.hero-aikido .btn-primary-hero:hover {
    color: #e74c3c !important;
}

/* Blog - Or Tatami (doré) */
.hero-conversion.hero-blog {
    background: linear-gradient(135deg, rgba(80, 50, 10, 0.92) 0%, rgba(201, 169, 110, 0.82) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-blog .btn-primary-hero {
    color: #a07840 !important;
}

.hero-conversion.hero-blog .btn-primary-hero:hover {
    color: #a07840 !important;
}

/* Home — Dojo Noir + Charbon + reflet Acier */
.hero-conversion.hero-home {
    background: linear-gradient(150deg, rgba(13, 13, 13, .96) 0%, rgba(42, 42, 42, .88) 55%, rgba(0, 100, 130, .75) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

/* Contact — Dojo Noir + Nuit Code */
.hero-conversion.hero-contact {
    background: linear-gradient(150deg, rgba(13, 13, 13, .93) 0%, rgba(26, 26, 46, .9) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-home .btn-primary-hero,
.hero-conversion.hero-contact .btn-primary-hero {
    color: #1a1a2e !important;
}

.hero-conversion.hero-home .btn-primary-hero:hover,
.hero-conversion.hero-contact .btn-primary-hero:hover {
    color: #1a1a2e !important;
}

/* Portfolio - Teal/Turquoise */
.hero-conversion.hero-portfolio {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.85) 0%, rgba(13, 148, 136, 0.88) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-portfolio .btn-primary-hero {
    color: #14b8a6 !important;
}

.hero-conversion.hero-portfolio .btn-primary-hero:hover {
    color: #14b8a6 !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-conversion {
        padding: 210px 0 80px;
    }

    .hero-conversion.hero-home {
        padding: 210px 0 100px;
    }
}

@media (max-width: 991px) {
    .hero-conversion {
        padding: 165px 0 60px;
    }

    .hero-conversion.hero-home {
        padding: 165px 0 80px;
    }
    
    .hero-conversion h1 {
        font-size: 32px;
    }
    
    .hero-conversion .lead {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .hero-conversion {
        padding: 120px 0 50px;
    }

    .hero-conversion h1 {
        font-size: 28px;
    }

    .hero-conversion .btn-primary-hero,
    .hero-conversion .btn-secondary-hero {
        padding: 12px 25px;
        font-size: 16px;
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .single-contact-card .top-part,
    .single-contact-card .bottom-part {
        padding: 20px;
    }
}

/* ========================================
   HOME PAGE — sections & composants
   ======================================== */

/* Icône check hero */
.hero-check-icon { color: #c9a96e; }

/* Note 24h sous les boutons */
.hero-note {
    font-size: 13px;
    color: rgba(255,255,255,.7);
}
.hero-note .hero-check-icon { color: #c9a96e; }

/* Mini testimonial */
.mini-testimonial {
    background: rgba(255,255,255,.2);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #c9a96e;
    backdrop-filter: blur(10px);
}
.mini-testimonial-author {
    color: #c9a96e;
    font-weight: 600;
}

/* Gap boutons CTA hero */
.cta-buttons { gap: 14px; }

/* ---- Section réassurance (quick-trust) ---- */
.section-trust {
    background: #f8f9fa;
    border-bottom: 1px solid #c9a96e;
}

.stat-or    { color: #c9a96e !important; font-weight: 800; }
.stat-terminal { color: #4eca7f !important; font-weight: 800; }
.stat-acier { color: #00b4d8 !important; font-weight: 800; }
.stat-sang  { color: #8b0000 !important; font-weight: 800; }

/* ---- Section services compacts ---- */
.section-services { background: #ffffff; }

/* Badge labels colorés */
.badge-label-or { color: #c9a96e !important; }

/* Carte service de base */
.service-card-v2 {
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
    display: block;
}
.service-card-v2:hover { transform: translateY(-4px); }

/* Icône dans la carte */
.sc-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 12px;
}

/* Titre carte */
.sc-title { color: #1a1a2e !important; }

/* Description carte */
.sc-desc { font-size: 15px; line-height: 1.6; }

/* Lien "En savoir plus" */
.sc-link { font-size: 14px; font-weight: 600; }

/* Variantes Or Tatami */
.sc-or { border-top: 4px solid #c9a96e; box-shadow: 0 4px 24px rgba(201,169,110,.1); }
.sc-icon-or { background: rgba(201,169,110,.1); color: #c9a96e; }
.sc-link-or { color: #c9a96e !important; }

/* Variantes Terminal Vert */
.sc-terminal { border-top: 4px solid #4eca7f; box-shadow: 0 4px 24px rgba(78,202,127,.08); }
.sc-icon-terminal { background: rgba(78,202,127,.1); color: #4eca7f; }
.sc-link-terminal { color: #4eca7f !important; }

/* Variantes Acier */
.sc-acier { border-top: 4px solid #00b4d8; box-shadow: 0 4px 24px rgba(0,180,216,.08); }
.sc-icon-acier { background: rgba(0,180,216,.1); color: #00b4d8; }
.sc-link-acier { color: #00b4d8 !important; }

/* Variantes Sang Dojo */
.sc-sang { border-top: 4px solid #8b0000; box-shadow: 0 4px 24px rgba(139,0,0,.08); }
.sc-icon-sang { background: rgba(139,0,0,.1); color: #8b0000; }
.sc-link-sang { color: #8b0000 !important; }

/* Variantes Amber */
.sc-amber { border-top: 4px solid #f59e0b; box-shadow: 0 4px 24px rgba(245,158,11,.08); }
.sc-icon-amber { background: rgba(245,158,11,.1); color: #f59e0b; }
.sc-link-amber { color: #f59e0b !important; }

/* Variantes Charbon */
.sc-charbon { border-top: 4px solid #2a2a2a; box-shadow: 0 4px 24px rgba(42,42,42,.08); }
.sc-icon-charbon { background: rgba(42,42,42,.08); color: #2a2a2a; }
.sc-link-charbon { color: #2a2a2a !important; }

/* ---- Section À propos ---- */
.section-about { background: #f8f9fa; }

.about-body-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}
.about-link {
    color: #c9a96e;
    text-decoration: none;
    font-weight: 600;
}

/* Cartes stat gradient */
.stat-card {
    border-radius: 16px;
    color: #fff;
    padding: 1.5rem;
    text-align: center;
}
.stat-card-or      { background: linear-gradient(135deg, #c9a96e, #a07840); }
.stat-card-terminal { background: linear-gradient(135deg, #4eca7f, #2ea85a); }
.stat-card-acier   { background: linear-gradient(135deg, #00b4d8, #0090b5); }
.stat-card-sang    { background: linear-gradient(135deg, #8b0000, #6b0000); }

.stat-card-number { font-size: 2rem; font-weight: 800; margin-bottom: .25rem; }
.stat-card-label  { font-size: 14px; opacity: .9; }

/* Blocs domaine (left-border) */
.domain-block {
    padding: 1.5rem;
    height: 100%;
    background: #fff;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.domain-block-icon { font-size: 28px; margin-bottom: 12px; }
.domain-block-title { font-size: 17px; color: #1a1a2e; display: block; margin-bottom: 8px; }
.domain-block-desc  { font-size: 14px; }

.domain-or      { border-left: 4px solid #c9a96e; }
.domain-or .domain-block-icon { color: #c9a96e; }

.domain-terminal { border-left: 4px solid #4eca7f; }
.domain-terminal .domain-block-icon { color: #4eca7f; }

.domain-acier   { border-left: 4px solid #00b4d8; }
.domain-acier .domain-block-icon { color: #00b4d8; }

.domain-sang    { border-left: 4px solid #8b0000; }
.domain-sang .domain-block-icon { color: #8b0000; }

/* ---- Section "Pourquoi me choisir" ---- */
.section-why {
    background: #1a1a2e;
    padding: 80px 0;
}
.section-why h2 { color: #f0ece3; }

.why-card {
    background: rgba(240,236,227,.05);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
}
.why-card-title { color: #f0ece3; font-size: 16px; display: block; margin-bottom: 8px; }
.why-card-text  { color: rgba(240,236,227,.6); font-size: 14px; line-height: 1.7; margin: 0; }

.why-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    color: #fff;
    font-size: 20px;
}

.why-card--or      { border: 1px solid rgba(201,169,110,.2); }
.why-card--or .why-card-icon { background: linear-gradient(135deg, #c9a96e, #a07840); }

.why-card--terminal { border: 1px solid rgba(78,202,127,.2); }
.why-card--terminal .why-card-icon { background: linear-gradient(135deg, #4eca7f, #2ea85a); }

.why-card--acier   { border: 1px solid rgba(0,180,216,.2); }
.why-card--acier .why-card-icon { background: linear-gradient(135deg, #00b4d8, #0090b5); }

.why-card--sang    { border: 1px solid rgba(139,0,0,.3); }
.why-card--sang .why-card-icon { background: linear-gradient(135deg, #8b0000, #6b0000); }

.why-card--amber   { border: 1px solid rgba(245,158,11,.2); }
.why-card--amber .why-card-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }

.why-cta-note { color: rgba(240,236,227,.5); font-size: 13px; margin-top: 12px; }

/* ---- Section bandeau freelance ---- */
.section-bandeau {
     background: linear-gradient(135deg,#00b4d8, #0090b5);
    padding: 70px 0;
    border-top: 3px solid  rgba(240,236,227,.5);
}
.bandeau-label {
    /*color: #c9a96e; */
    color:  #1a1a2e;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 14px;
}
.bandeau-title {
    color: #f0ece3;
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
}
.bandeau-text {
    /*color: rgba(240,236,227,.65); */
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    max-width: 640px;
    margin: 0;
}
.bandeau-text strong { color: #f0ece3; }

/* ---- Section FAQ ---- */
.section-faq { background: #f8f9fa; }
