/* ============================================================
   MANAGEBAND — Landing Page — style.css
   Charte graphique : Dark Navy + Cyan électrique + Rose/Magenta
   Compatible Bootstrap 4 / PHP 7.4
   ============================================================ */

/* ---- Variables ---- */
:root {
    /* Palette principale issue de la charte graphique */
    --dark:         #06082a;       /* Fond principal très sombre */
    --dark-2:       #0c1040;       /* Fond alterné (sections paires) */
    --dark-3:       #111855;       /* Cartes, éléments en relief */
    --dark-card:    rgba(255,255,255,0.05);  /* Fond des cartes */

    --cyan:         #00c8f0;       /* Bleu électrique — couleur primaire */
    --cyan-dark:    #009fc4;
    --cyan-glow:    rgba(0,200,240,0.22);

    --pink:         #e91e8c;       /* Rose/Magenta — accent fort */
    --pink-dark:    #c0166e;
    --pink-glow:    rgba(233,30,140,0.2);

    --purple:       #7b3fe4;       /* Violet intermédiaire */

    --white:        #ffffff;
    --light-text:   rgba(255,255,255,0.85);
    --muted:        rgba(255,255,255,0.55);
    --border:       rgba(255,255,255,0.1);
    --border-cyan:  rgba(0,200,240,0.3);

    --shadow-sm:    0 2px 16px rgba(0,0,0,0.3);
    --shadow-md:    0 6px 30px rgba(0,0,0,0.4), 0 0 0 1px var(--border);
    --shadow-glow:  0 0 24px var(--cyan-glow);
    --shadow-pink:  0 0 24px var(--pink-glow);

    --radius:       14px;
    --radius-sm:    9px;
    --ease:         0.25s ease;
}

/* ============================================================
   BASE
   ============================================================ */
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--light-text);
    background: var(--dark);
    line-height: 1.7;
    font-size: 16px;
}

/* Tous les titres en blanc sur fond sombre */
h1, h2, h3, h4 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    color: var(--white);
}

a { color: var(--cyan); transition: color var(--ease); }
a:hover { color: var(--cyan-dark); text-decoration: none; }
img { max-width: 100%; }

/* Override Bootstrap card couleur par défaut */
.card { background-color: transparent; border-color: var(--border); }
.card-header { background-color: transparent; border-color: var(--border); }

/* ============================================================
   BACKGROUNDS DES SECTIONS
   ============================================================ */
/* Spécificité renforcée (0-1-2) pour l'emporter sur Bootstrap (0-1-0) */
html body .bg-light-custom { background-color: var(--dark-2) !important; }
html body .bg-white        { background-color: var(--dark)   !important; }
html body .bg-navy         { background-color: var(--dark)   !important; }

/* Override wave SVG fill → couleur de la section suivante (dark-2) */
.hero-wave svg path { fill: #f5f8fc !important; }

/* ============================================================
   UTILITAIRES
   ============================================================ */
.text-gold     { color: var(--pink) !important; }
.text-electric { color: var(--cyan) !important; }
.text-white-soft { color: var(--muted); }

/* ============================================================
   SECTIONS — COMMUN
   ============================================================ */
section { padding: 88px 0; }

.section-label {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(0,200,240,0.12);
    border: 1px solid rgba(0,200,240,0.2);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 12px;
}

.section-label-light {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--pink);
    background: rgba(233,30,140,0.12);
    border: 1px solid rgba(233,30,140,0.25);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-title-left {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-intro {
    font-size: 1.03rem;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.section-text {
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.7;
}

.tva-mention {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    font-style: italic;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 0.65rem 1.5rem;
    transition: all var(--ease);
    letter-spacing: 0.01em;
}

/* Bouton primaire = Cyan */
.btn-gold {
    background-color: var(--cyan);
    border-color: var(--cyan);
    color: var(--dark);
    font-weight: 700;
}
.btn-gold:hover, .btn-gold:focus {
    background-color: var(--cyan-dark);
    border-color: var(--cyan-dark);
    color: var(--dark);
    box-shadow: 0 6px 24px var(--cyan-glow);
    transform: translateY(-2px);
}

/* Bouton secondaire contour = Cyan outline */
.btn-outline-electric {
    border: 2px solid var(--cyan);
    color: var(--cyan);
    background: transparent;
}
.btn-outline-electric:hover, .btn-outline-electric:focus {
    background-color: var(--cyan);
    color: var(--dark);
    box-shadow: 0 4px 18px var(--cyan-glow);
    transform: translateY(-2px);
}

/* Bouton blanc (sections colorées) */
.btn-white {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--dark);
    font-weight: 700;
}
.btn-white:hover, .btn-white:focus {
    background-color: var(--cyan);
    border-color: var(--cyan);
    color: var(--dark);
    box-shadow: 0 4px 18px var(--cyan-glow);
}

/* Bouton hero outline (sur hero sombre) */
.btn-hero-outline {
    padding: 0.8rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    background: rgba(255,255,255,0.07);
    transition: all var(--ease);
    letter-spacing: 0.01em;
    backdrop-filter: blur(4px);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.14);
    border-color: var(--cyan);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-hero { padding: 0.8rem 2rem; font-size: 1.05rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background-color: rgba(6,8,42,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,200,240,0.12);
    transition: background-color var(--ease);
}

.site-header.scrolled {
    background-color: rgba(6,8,42,0.99);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.site-header .navbar { padding: 0.4rem 0; }

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-decoration: none;
}

/* ---- Logo image ---- */
.navbar-logo-img {
    height: 45px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0,200,240,0.3));
    transition: filter var(--ease);
}
.navbar-brand:hover .navbar-logo-img {
    filter: drop-shadow(0 0 16px rgba(0,200,240,0.55));
}

.footer-logo-img {
    height: 64px;
    width: auto;
    display: block;
    margin-bottom: 0.6rem;
    opacity: 0.9;
    filter: drop-shadow(0 0 8px rgba(0,200,240,0.2));
}

/* ---- Logo texte (fallback si fichier absent) ---- */
.logo-wordmark {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.03em;
}
.logo-wordmark--sm { font-size: 1.1rem; }

.logo-manage { color: var(--cyan); text-shadow: 0 0 14px rgba(0,200,240,0.4); }
.logo-band   { color: var(--pink); text-shadow: 0 0 14px rgba(233,30,140,0.4); }

.logo-tagline {
    display: block;
    font-size: 0.6rem;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2px;
}

.navbar .nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    padding: 0.45rem 0.95rem !important;
    transition: color var(--ease);
}
.navbar .nav-link:hover { color: var(--cyan) !important; }

.nav-cta { padding: 0.45rem 1.1rem !important; font-size: 0.88rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
    position: relative;
    background: linear-gradient(145deg, #030622 0%, #06082a 40%, #0b0e3a 70%, #0d1245 100%);
    padding: 110px 0 0;
    overflow: hidden;
}

/* Halos de lumière façon scène */
.hero-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(0,200,240,0.14) 0%, transparent 68%);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: -80px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(233,30,140,0.1) 0%, transparent 65%);
    pointer-events: none;
}

/* Icônes déco flottantes */
.hero-decoration { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.deco-note {
    position: absolute;
    animation: floatDeco 9s ease-in-out infinite;
}
.deco-1 { font-size: 3.5rem; top: 14%; left: 5%;  animation-delay: 0s;   color: rgba(0,200,240,0.55)  !important; }
.deco-2 { font-size: 5.5rem; top: 60%; left: 2%;  animation-delay: 2.5s; color: rgba(233,30,140,0.50) !important; }
.deco-3 { font-size: 4rem;   top: 20%; right: 6%; animation-delay: 1.5s; color: rgba(0,200,240,0.45)  !important; }
.deco-4 { font-size: 3rem;   top: 70%; right: 4%; animation-delay: 3.5s; color: rgba(233,30,140,0.55) !important; }

.deco-1 i, .deco-1 svg { color: rgba(0,200,240,0.55)  !important; fill: rgba(0,200,240,0.55)  !important; text-shadow: 0 0 28px rgba(0,200,240,0.6); }
.deco-2 i, .deco-2 svg { color: rgba(233,30,140,0.50) !important; fill: rgba(233,30,140,0.50) !important; text-shadow: 0 0 28px rgba(233,30,140,0.55); }
.deco-3 i, .deco-3 svg { color: rgba(0,200,240,0.45)  !important; fill: rgba(0,200,240,0.45)  !important; text-shadow: 0 0 28px rgba(0,200,240,0.55); }
.deco-4 i, .deco-4 svg { color: rgba(233,30,140,0.55) !important; fill: rgba(233,30,140,0.55) !important; text-shadow: 0 0 28px rgba(233,30,140,0.6); }

@keyframes floatDeco {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50%       { transform: translateY(-22px) rotate(5deg); }
}

/* Égaliseur décoratif (barres façon visualiseur) */
.hero-equalizer {
    position: absolute;
    right: 5%;
    bottom: 80px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 100px;
    opacity: 0.6;
    pointer-events: none;
}
.eq-bar {
    width: 5px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, #009fc4, #00c8f0);
    box-shadow: 0 0 6px rgba(0,200,240,0.8), 0 0 14px rgba(0,200,240,0.4);
    animation: eqBounce 1.4s ease-in-out infinite alternate;
}
.eq-bar:nth-child(1)  { height: 30%;  animation-delay: 0s;    }
.eq-bar:nth-child(2)  { height: 70%;  animation-delay: 0.15s; }
.eq-bar:nth-child(3)  { height: 50%;  animation-delay: 0.3s;  }
.eq-bar:nth-child(4)  { height: 90%;  animation-delay: 0.1s;  }
.eq-bar:nth-child(5)  { height: 40%;  animation-delay: 0.45s; }
.eq-bar:nth-child(6)  { height: 100%; animation-delay: 0.2s;  }
.eq-bar:nth-child(7)  { height: 60%;  animation-delay: 0.35s; }
.eq-bar:nth-child(8)  { height: 80%;  animation-delay: 0.05s; }
.eq-bar:nth-child(9)  { height: 35%;  animation-delay: 0.5s;  }
.eq-bar:nth-child(10) { height: 65%;  animation-delay: 0.25s; }

@keyframes eqBounce {
    0%   { transform: scaleY(0.25); }
    100% { transform: scaleY(1); }
}

/* Hero textes */
.hero-eyebrow {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.hero-title {
    font-size: clamp(2rem, 5.5vw, 3.3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.13;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

/* Gradient sur le nom du service dans le H1 */
.hero-title strong, .hero-title .highlight {
    background: linear-gradient(90deg, var(--cyan) 0%, #00e8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.12rem);
    color: rgba(255,255,255,0.72);
    max-width: 660px;
    margin: 0 auto 2.75rem;
    line-height: 1.75;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.hero-reassurance {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0;
}

.hero-wave { position: relative; bottom: -2px; line-height: 0; margin-top: 120px; }
.hero-wave svg { display: block; width: 100%; height: 55px; }

/* ============================================================
   SECTION PROBLÈME
   ============================================================ */
.section-problem { padding: 76px 0; }

.problem-icon-wrap {
    font-size: 2.8rem;
    color: var(--pink);
    text-shadow: 0 0 20px var(--pink-glow);
    margin-bottom: 1rem;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.65rem 1rem;
    margin-bottom: 0.5rem;
    background: rgba(233,30,140,0.06);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--pink);
    font-size: 0.93rem;
    color: var(--light-text);
    transition: background var(--ease);
}
.problem-list li:hover { background: rgba(233,30,140,0.1); }
.problem-list li .fas { color: var(--pink); flex-shrink: 0; margin-top: 4px; }

/* ============================================================
   SECTION POURQUOI
   ============================================================ */
.why-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    height: 100%;
    transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.why-card:hover {
    border-color: var(--border-cyan);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.why-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.3rem;
    font-size: 1.5rem;
    color: var(--dark);
}

/* Icônes : alternance cyan / pink */
.icon-electric { background: var(--cyan); box-shadow: 0 4px 20px var(--cyan-glow); }
.icon-gold     { background: var(--pink); box-shadow: 0 4px 20px var(--pink-glow); }

.why-card h3 { font-size: 1.02rem; margin-bottom: 0.6rem; color: var(--white); }
.why-card p  { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ============================================================
   SECTION FONCTIONNALITÉS
   ============================================================ */
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    height: 100%;
    transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.feature-card:hover {
    border-color: var(--border-cyan);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--cyan) 0%, #00e5ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--dark);
    box-shadow: 0 4px 14px var(--cyan-glow);
}

.feature-content h3 { font-size: 0.93rem; margin-bottom: 0.3rem; color: var(--white); }
.feature-content p  { font-size: 0.83rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ============================================================
   SECTION POUR QUI
   ============================================================ */
.target-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 1.6rem 1rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.target-card:hover {
    border-color: var(--border-cyan);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}
.target-card i { font-size: 2rem; color: var(--cyan); margin-bottom: 0.75rem; display: block; text-shadow: 0 0 12px var(--cyan-glow); }
.target-card p { font-size: 0.87rem; font-weight: 600; color: var(--white); margin: 0; }

/* ============================================================
   SECTION ÉTAPES (sur fond dark intermédiaire)
   ============================================================ */
.section-steps { padding: 88px 0; background-color: var(--dark-2); }

.step-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(0,200,240,0.15);
    border-radius: var(--radius);
    padding: 2.25rem 1.5rem 2rem;
    text-align: center;
    position: relative;
    transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.step-card:hover {
    background: rgba(0,200,240,0.06);
    border-color: var(--border-cyan);
    box-shadow: var(--shadow-glow);
}

.step-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan) 0%, #00e5ff 100%);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px var(--cyan-glow);
}

.step-icon { font-size: 2.1rem; color: var(--cyan); margin: 0.75rem 0 1.1rem; text-shadow: 0 0 14px var(--cyan-glow); }
.step-card h3 { font-size: 0.97rem; color: var(--white); margin-bottom: 0.5rem; }
.step-card p  { font-size: 0.86rem; color: var(--muted); margin: 0; }

/* ============================================================
   SECTION OFFRES
   ============================================================ */
.pricing-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 2.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.pricing-card:hover {
    border-color: var(--border-cyan);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.pricing-card--featured {
    border: 2px solid var(--cyan);
    background: rgba(0,200,240,0.07);
    box-shadow: 0 0 30px rgba(0,200,240,0.18);
    transform: translateY(-8px);
}
.pricing-card--featured:hover { transform: translateY(-12px); }

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--pink) 0%, #ff3aaa 100%);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 14px var(--pink-glow);
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.pricing-name { font-size: 1.08rem; margin-bottom: 0.75rem; color: var(--white); }

.price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan-glow);
}
.price-period { font-size: 0.9rem; color: var(--muted); }

.pricing-resume { font-size: 0.86rem; color: var(--muted); margin: 0.75rem 0 0; line-height: 1.55; }

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    flex: 1;
}

.pricing-features li {
    font-size: 0.87rem;
    color: var(--light-text);
    padding: 0.44rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}
.pricing-features li .fa-check { color: var(--cyan); flex-shrink: 0; margin-top: 4px; }

.pricing-foot-note { font-size: 0.87rem; color: var(--muted); }

/* Mention TVA sous les cartes */
.pricing-tva-note {
    font-size: 0.8rem;
    color: var(--muted);
    font-style: italic;
}

/* Bouton Pro — dégradé cyan → rose */
.btn-pro-cta {
    background: linear-gradient(90deg, var(--cyan) 0%, var(--pink) 100%);
    border: none;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.btn-pro-cta:hover,
.btn-pro-cta:focus {
    background: linear-gradient(90deg, var(--cyan-dark) 0%, var(--pink-dark) 100%);
    color: #ffffff;
    box-shadow: 0 6px 28px rgba(0,200,240,0.45);
    transform: translateY(-2px);
}

/* Icône check-circle dans les listes de features */
.pricing-features li .fa-check-circle {
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 0.9rem;
}

/* Étoile dans le badge */
.pricing-badge .fa-star {
    font-size: 0.62rem;
    vertical-align: middle;
    margin-right: 3px;
}

/* Carte Premium — accent violet (dark mode) */
.pricing-card--premium {
    border-color: rgba(123,63,228,0.25);
}
.pricing-card--premium:hover {
    border-color: var(--purple) !important;
    box-shadow: 0 0 28px rgba(123,63,228,0.25) !important;
}

/* ============================================================
   SECTION MISE EN ROUTE
   ============================================================ */
.onboarding-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.onboarding-card:hover {
    border-color: var(--border-cyan);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.onboarding-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan) 0%, #00e5ff 100%);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    box-shadow: 0 4px 14px var(--cyan-glow);
}

.onboarding-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--white); }

.onboarding-price {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--cyan);
    text-shadow: 0 0 16px var(--cyan-glow);
    margin-bottom: 0.75rem;
    line-height: 1;
}
.onboarding-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }

.onboarding-card p { font-size: 0.87rem; color: var(--muted); margin: 0; }

/* ============================================================
   SECTION ARGUMENT COMMERCIAL
   ============================================================ */
.section-argument {
    background: linear-gradient(135deg, #0d2060 0%, #1a0a4e 50%, #06082a 100%);
    border-top: 1px solid rgba(0,200,240,0.15);
    border-bottom: 1px solid rgba(233,30,140,0.15);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.section-argument::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(0,200,240,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.argument-icon {
    font-size: 3rem;
    color: var(--cyan);
    text-shadow: 0 0 24px var(--cyan-glow);
    display: block;
    margin-bottom: 1.25rem;
}

.argument-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.argument-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    max-width: 620px;
    margin: 0 auto 1.5rem;
    line-height: 1.75;
}

/* ============================================================
   SECTION FAQ
   ============================================================ */
.faq-card.card {
    background: var(--dark-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    transition: border-color var(--ease);
}
.faq-card.card:hover { border-color: var(--border-cyan) !important; }

.faq-card .card-header.faq-header {
    background: transparent !important;
    padding: 0;
    border-bottom: none;
}

.faq-btn {
    width: 100%;
    text-align: left;
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.94rem;
    padding: 1.1rem 1.25rem;
    white-space: normal;
    text-decoration: none !important;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}
.faq-btn:hover { color: var(--cyan) !important; }
.faq-btn:focus { box-shadow: none; outline: none; }

.faq-arrow {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--cyan);
    transition: transform 0.2s ease;
}
.faq-btn[aria-expanded="true"] .faq-arrow { transform: rotate(90deg); }

.faq-body { padding: 0.25rem 1.25rem 1.25rem; }
.faq-body p { font-size: 0.9rem; color: var(--muted); margin: 0; line-height: 1.7; }

/* ============================================================
   SECTION CTA FINAL
   ============================================================ */
.section-cta {
    padding: 88px 0;
    background: linear-gradient(180deg, var(--dark) 0%, #050721 100%);
    position: relative;
}
.section-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 500px; height: 250px;
    background: radial-gradient(ellipse, rgba(233,30,140,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-big-icon {
    font-size: 2.8rem;
    color: var(--pink);
    text-shadow: 0 0 20px var(--pink-glow);
    display: block;
    margin-bottom: 1.25rem;
}

/* ============================================================
   FORMULAIRE DE CONTACT (dark)
   ============================================================ */
.section-contact { padding: 88px 0; }

.contact-form .form-control {
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 0 0.95rem;
    font-size: 0.95rem;
    color: var(--white);
    transition: border-color var(--ease), box-shadow var(--ease);
}
.contact-form .form-control:focus {
    background: rgba(255,255,255,0.09);
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0,200,240,0.15);
    outline: none;
    color: var(--white);
}
.contact-form .form-control::placeholder { color: rgba(255,255,255,0.3); }

/* Options de la liste déroulante */
.contact-form select.form-control option {
    background: var(--dark-2);
    color: var(--white);
}

.contact-form label {
    font-weight: 600;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.35rem;
}

.contact-form .form-check-label {
    color: var(--muted);
}

.contact-form .is-invalid {
    border-color: var(--pink) !important;
    box-shadow: 0 0 0 3px var(--pink-glow) !important;
}

/* Alertes adaptées dark */
.alert-success {
    background: rgba(0,200,100,0.12);
    border: 1px solid rgba(0,200,100,0.3);
    color: #7fffb8;
    border-radius: var(--radius-sm);
}
.alert-danger {
    background: rgba(233,30,140,0.1);
    border: 1px solid rgba(233,30,140,0.3);
    color: #ffb3d9;
    border-radius: var(--radius-sm);
}
.alert-danger ul { color: #ffb3d9; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background-color: #030519;
    border-top: 1px solid rgba(0,200,240,0.1);
    color: var(--muted);
    padding: 62px 0 32px;
}

.footer-brand { display: block; margin-bottom: 0.75rem; }

.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.72); margin-bottom: 0.4rem; }
.footer-tva     { font-size: 0.76rem; color: rgba(255,255,255,0.5);  font-style: italic; margin: 0; }

.footer-heading {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--ease);
}
.footer-links a:hover { color: var(--cyan); }

.footer-contact-link a {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    text-decoration: none;
}
.footer-contact-link a:hover { color: var(--cyan); }

.footer-divider { border-color: rgba(255,255,255,0.1); margin: 1.75rem 0 1rem; }
.footer-copy    { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ============================================================
   SECTIONS CLAIRES — Fond blanc / gris clair, texte sombre
   Sections : section-why, section-target, section-onboarding,
              section-contact (bg-white)
              section-problem, section-features, section-pricing,
              section-faq (bg-light-custom)
   ============================================================ */

/* Backgrounds */
html body .bg-white        { background-color: #ffffff !important; }
html body .bg-light-custom { background-color: #f5f8fc !important; }

/* Headings */
.bg-white h2, .bg-white h3, .bg-white h4,
.bg-light-custom h2, .bg-light-custom h3, .bg-light-custom h4 {
    color: #0d1b3e;
}

/* Section titles et intros */
.bg-white .section-title, .bg-white .section-title-left,
.bg-light-custom .section-title, .bg-light-custom .section-title-left {
    color: #0d1b3e;
}
.bg-white .section-intro, .bg-white .section-text,
.bg-light-custom .section-intro, .bg-light-custom .section-text {
    color: #4a5568;
}
.bg-white .tva-mention, .bg-light-custom .tva-mention,
.bg-white .pricing-foot-note, .bg-light-custom .pricing-foot-note {
    color: #8a97ad;
}

/* ---- Cartes sur bg-white ---- */
.bg-white .why-card,
.bg-white .target-card,
.bg-white .onboarding-card {
    background: #f5f8fc;
    border-color: #dde4ed;
    box-shadow: 0 2px 10px rgba(13,27,62,0.06);
}
.bg-white .why-card:hover,
.bg-white .target-card:hover,
.bg-white .onboarding-card:hover {
    background: #edf2fa;
    border-color: var(--cyan-dark);
    box-shadow: 0 6px 24px rgba(13,27,62,0.1);
}

.bg-white .why-card h3,
.bg-white .target-card p,
.bg-white .onboarding-card h3   { color: #0d1b3e; }
.bg-white .why-card p,
.bg-white .onboarding-card p    { color: #5a6782; }

.bg-white .target-card i        { text-shadow: none; }
.bg-white .onboarding-price     { color: var(--cyan-dark); text-shadow: none; }
.bg-white .onboarding-num       { box-shadow: 0 4px 14px rgba(0,149,232,0.22); }

/* ---- Cartes sur bg-light-custom ---- */
.bg-light-custom .feature-card,
.bg-light-custom .pricing-card,
.bg-light-custom .faq-card.card {
    background: #ffffff !important;
    border-color: #dde4ed !important;
    box-shadow: 0 2px 10px rgba(13,27,62,0.06) !important;
}
.bg-light-custom .feature-card:hover,
.bg-light-custom .pricing-card:hover {
    border-color: var(--cyan-dark) !important;
    box-shadow: 0 6px 24px rgba(13,27,62,0.1) !important;
    transform: translateY(-4px);
}

.bg-light-custom .feature-content h3,
.bg-light-custom .pricing-name,
.bg-light-custom .pricing-features li { color: #0d1b3e; }
.bg-light-custom .feature-content p,
.bg-light-custom .pricing-resume,
.bg-light-custom .price-period        { color: #5a6782; }
.bg-light-custom .pricing-features li { border-bottom-color: #eef2f8; }
.bg-light-custom .price-amount        { text-shadow: none; }

/* Offre Pro (featured) sur fond clair */
.bg-light-custom .pricing-card--featured {
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f0ff 100%) !important;
    border: 2px solid var(--cyan-dark) !important;
    box-shadow: 0 8px 32px rgba(0,149,232,0.15) !important;
}

/* ---- Styles par tier sur fond clair ---- */

/* Découverte — aspect sobre, prix légèrement atténué pour suggérer les limites */
.bg-light-custom .pricing-card--decouverte .price-amount {
    color: #3d7fa6;
    text-shadow: none;
}

/* Pro — version renforcée de la carte featured */
.bg-light-custom .pricing-card--pro.pricing-card--featured {
    background: linear-gradient(145deg, #eaf7ff 0%, #f3eeff 100%) !important;
    border: 2px solid var(--cyan-dark) !important;
    box-shadow: 0 12px 40px rgba(0,149,232,0.2) !important;
}

/* Premium — accent violet */
.bg-light-custom .pricing-card--premium {
    border-color: rgba(123,63,228,0.22) !important;
}
.bg-light-custom .pricing-card--premium:hover {
    border-color: var(--purple) !important;
    box-shadow: 0 6px 28px rgba(123,63,228,0.14) !important;
}
.bg-light-custom .pricing-card--premium .price-amount {
    color: var(--purple);
    text-shadow: none;
}

/* Icône check-circle sur fond clair */
.bg-light-custom .pricing-features li .fa-check-circle {
    color: var(--cyan-dark);
}

/* Bouton Pro sur fond clair */
.bg-light-custom .btn-pro-cta,
.bg-light-custom .btn-pro-cta:hover,
.bg-light-custom .btn-pro-cta:focus {
    color: #ffffff;
}

/* TVA note sur fond clair */
.bg-light-custom .pricing-tva-note {
    color: #8a97ad;
}

/* ---- Problème (bg-light-custom) ---- */
.bg-light-custom .problem-list li {
    background: #ffffff;
    color: #0d1b3e;
}
.bg-light-custom .problem-icon-wrap { text-shadow: none; }

/* ---- FAQ (bg-light-custom) ---- */
.bg-light-custom .faq-card.card { box-shadow: 0 2px 8px rgba(13,27,62,0.06) !important; }
.bg-light-custom .faq-btn       { color: #0d1b3e !important; }
.bg-light-custom .faq-btn:hover { color: var(--cyan-dark) !important; }
.bg-light-custom .faq-body p    { color: #5a6782; }
.bg-light-custom .faq-arrow     { color: var(--cyan-dark); }

/* ---- Formulaire de contact (bg-white) ---- */
.bg-white .contact-form .form-control {
    background: #ffffff;
    border-color: #d0d9e8;
    color: #0d1b3e;
}
.bg-white .contact-form .form-control:focus {
    background: #ffffff;
    border-color: var(--cyan-dark);
    box-shadow: 0 0 0 3px rgba(0,159,196,0.14);
    color: #0d1b3e;
}
.bg-white .contact-form .form-control::placeholder { color: #9aa5b4; }
.bg-white .contact-form select.form-control option  { background: #fff; color: #0d1b3e; }
.bg-white .contact-form label           { color: #2d3748; }
.bg-white .contact-form .form-check-label { color: #5a6782; }
.bg-white .contact-form .is-invalid {
    border-color: var(--pink-dark) !important;
    box-shadow: 0 0 0 3px rgba(192,22,110,0.1) !important;
}

/* Alertes sur fond clair */
.bg-white .alert-success {
    background: rgba(0,160,80,0.07);
    border: 1px solid rgba(0,160,80,0.25);
    color: #1a7a4a;
    border-radius: var(--radius-sm);
}
.bg-white .alert-danger {
    background: rgba(200,50,50,0.06);
    border: 1px solid rgba(200,50,50,0.2);
    color: #c0392b;
    border-radius: var(--radius-sm);
}
.bg-white .alert-danger ul { color: #c0392b; }

/* ============================================================
   ANIMATIONS — Intersection Observer
   ============================================================ */
.anim-ready {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.anim-in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    section { padding: 64px 0; }
    .hero-section { padding: 84px 0 46px; }
    .hero-equalizer { display: none; }
    .pricing-card--featured { transform: none; }
    .pricing-card--featured:hover { transform: translateY(-5px); }
}

@media (max-width: 767.98px) {
    section { padding: 52px 0; }
    .hero-section { padding: 72px 0 36px; }
    .hero-title { font-size: 1.85rem; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .btn-hero, .btn-hero-outline { width: 100%; max-width: 320px; }
    .section-title { font-size: 1.5rem; }
    .step-card { margin-bottom: 2.5rem; }
    .section-argument { padding: 60px 0; }
}

@media (max-width: 575.98px) {
    .brand-name { font-size: 1.2rem; }
    .btn-hero, .btn-hero-outline { max-width: 100%; }
    .hero-reassurance { font-size: 0.78rem; }
}
