/* ================================================================
   /cloud — Surcouche au CSS global du site dimprotech.be
   Ce fichier COMPLÈTE assets/css/style.css sans le modifier.
   ================================================================ */

/* ----- 0. Variables locales /cloud ----- */
:root {
    --statusbar-h: 36px;
    --cloud-success: #22C55E;
    --cloud-success-soft: rgba(34, 197, 94, 0.18);
    --cloud-stripe: #635BFF;
}

/* ----- 1. Status bar (au-dessus du header fixe) ----- */
.status-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 110;
    height: var(--statusbar-h);
    background: linear-gradient(90deg, #064E3B 0%, #065F46 50%, #047857 100%);
    color: #ECFDF5;
    font-size: 0.85rem;
    text-align: center;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 1.3;
}

.status-bar__inner {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    justify-content: center;
}

.status-bar strong {
    color: #fff;
    font-weight: 600;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #34D399;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
    animation: cloud-status-pulse 1.8s ease-in-out infinite;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes cloud-status-pulse {
    0%   { transform: scale(1);    opacity: 1;   box-shadow: 0 0 0 0    rgba(52,211,153,0.7); }
    70%  { transform: scale(1.15); opacity: 0.7; box-shadow: 0 0 0 8px  rgba(52,211,153,0);   }
    100% { transform: scale(1);    opacity: 1;   box-shadow: 0 0 0 0    rgba(52,211,153,0);   }
}

@media (max-width: 640px) {
    .status-bar { font-size: 0.78rem; }
}

/* ----- 2. Décalage du header & ancres pour laisser la place au status bar ----- */
.header { top: var(--statusbar-h); }

html { scroll-padding-top: calc(var(--header-h) + var(--statusbar-h)); }

/* ----- 3. Lien de navigation actif (page courante /cloud) ----- */
.nav__link.is-active {
    color: var(--accent);
    background: var(--accent-glow);
}

/* ----- 3bis. Thème clair pour les pages de contenu /cloud ----- */
/* Les variables sont surchargées uniquement sur <main> et <footer> :
   le header (frère, hors scope) hérite du :root global et reste sombre.
   La status-bar (couleurs littérales) reste verte. */
body.theme-light {
    background: #FFFFFF;
    color: #0F172A;
}
body.theme-light > main,
body.theme-light > .footer {
    --bg:            #FFFFFF;
    --bg-card:       #F8FAFC;
    --bg-elevated:   #F1F5F9;
    --bg-overlay:    rgba(248, 250, 252, 0.92);
    --border:        #E2E8F0;
    --border-strong: #CBD5E1;
    --text:          #0F172A;
    --text-muted:    #475569;
    --text-dim:      #64748B;
    --accent-glow:   rgba(59, 130, 246, 0.10);
    --shadow-sm:     0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow:        0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg:     0 20px 40px rgba(15, 23, 42, 0.12);
    --shadow-accent: 0 8px 24px rgba(59, 130, 246, 0.20);
}
body.theme-light > main { background: #FFFFFF; }
body.theme-light > .footer {
    background: #F8FAFC;
    border-top: 1px solid var(--border);
}

/* Petits ajustements pour les éléments à fond sombre/clair contrasté */
body.theme-light .page-hero::before {
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(59, 130, 246, 0.10), transparent 60%),
        radial-gradient(ellipse 40% 30% at 80% 30%, rgba(96, 165, 250, 0.06), transparent 60%);
}
body.theme-light .hero__bg {
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(59, 130, 246, 0.12), transparent 60%),
        radial-gradient(ellipse 40% 30% at 80% 30%, rgba(96, 165, 250, 0.08), transparent 60%);
}
body.theme-light .pricing-card--featured {
    background: linear-gradient(180deg, #F1F5F9 0%, #FFFFFF 100%);
    border-color: var(--accent);
}
body.theme-light .compare-table th { background: #F1F5F9; }
body.theme-light .compare-table .featured-col { background: rgba(59, 130, 246, 0.04); }
body.theme-light .cta-banner h2,
body.theme-light .cta-banner p { color: #fff; }  /* le CTA banner garde son fond accent */
body.theme-light .payment-info__logos {
    background: #fff;
    border-color: var(--border-strong);
}
body.theme-light .faq-item summary { color: var(--text); }

/* ----- 4. Hero secondaire (pages internes /cloud) ----- */
.page-hero {
    position: relative;
    padding: calc(var(--header-h) + var(--statusbar-h) + 3rem) 0 3rem;
    overflow: hidden;
    text-align: center;
    border-top: none;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, var(--accent-glow), transparent 60%),
        radial-gradient(ellipse 40% 30% at 80% 30%, rgba(96, 165, 250, 0.08), transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .section-lead { max-width: 680px; margin: 0 auto; }

@media (min-width: 768px) {
    .page-hero { padding: calc(var(--header-h) + var(--statusbar-h) + 4rem) 0 4rem; }
}

/* ----- 5. Hero principal /cloud (override padding pour status bar) ----- */
.hero { padding-top: calc(var(--header-h) + var(--statusbar-h) + 2.5rem); }
@media (min-width: 768px) {
    .hero { padding-top: calc(var(--header-h) + var(--statusbar-h) + 4rem); }
}

/* ----- 6. Hero — grille à deux colonnes pour /cloud ----- */
.cloud-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 980px) {
    .cloud-hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
}

.cloud-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cloud-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--text-muted);
}
.cloud-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

/* ----- 7. Carte surveillance temps réel ----- */
.surveillance-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.surveillance-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--accent-muted), transparent 60%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.surveillance-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
}
.surveillance-card ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.surveillance-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}
.surveillance-card li:last-child { border-bottom: none; }

.live-dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    background: #34D399;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
    animation: cloud-live-pulse 1.6s ease-in-out infinite;
    display: inline-block;
}

@keyframes cloud-live-pulse {
    0%, 100% { opacity: 1;    transform: scale(1);    box-shadow: 0 0 0 0   rgba(52,211,153,0.7); }
    50%      { opacity: 0.55; transform: scale(1.18); box-shadow: 0 0 0 6px rgba(52,211,153,0);   }
}

@media (prefers-reduced-motion: reduce) {
    .status-dot, .live-dot { animation: none; }
}

/* ----- 8. Section "Problème / Solution" ----- */
.split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .split-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.split-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: border-color var(--transition), transform var(--transition);
}
.split-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.split-card.problem { border-top: 3px solid var(--danger); }
.split-card.solution { border-top: 3px solid var(--success); }
.split-card h3 { margin-bottom: 1rem; }
.split-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.split-card li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}
.split-card.problem li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 700;
}
.split-card.solution li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* ----- 9. Tarifs : grille 3 cartes ----- */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
}
@media (min-width: 820px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: transform var(--transition), border-color var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }

.pricing-card--featured {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border-color: var(--accent-muted);
    box-shadow: 0 0 0 1px var(--accent-muted), var(--shadow-lg);
}
@media (min-width: 820px) {
    .pricing-card--featured { transform: scale(1.035); z-index: 2; }
    .pricing-card--featured:hover { transform: scale(1.035) translateY(-4px); }
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 0.3rem 0.95rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--shadow-accent);
    white-space: nowrap;
}

.pricing-card__name {
    color: var(--accent);
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.pricing-card__objective {
    font-size: 0.9rem;
    color: var(--text-dim);
    min-height: 2.6em;
    margin-bottom: 0.5rem;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin: 0.4rem 0 0;
}
.pricing-card__amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.02em;
}
.pricing-card__period { color: var(--text-muted); font-size: 0.95rem; }

.pricing-card__tva {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin: 0;
    letter-spacing: 0.02em;
}

.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: 1rem 0;
    flex-grow: 1;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.pricing-card__features li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.pricing-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.pricing-card .btn { width: 100%; }

.pricing-card__reassurance {
    margin-top: 0.7rem;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.pricing-card__reassurance::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
}

.pricing-card__benefits {
    margin-top: 0.4rem;
    padding-top: 0.85rem;
    border-top: 1px dashed var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.pricing-card__benefits li {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.pricing-card__benefits li::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
}

.pricing-foot {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-top: 2.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- 10. Bandeau paiement sécurisé Stripe ----- */
.payment-info {
    max-width: 720px;
    margin: 3rem auto 0;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.8rem;
}
.payment-info__title {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.payment-info__title .lock { color: var(--success); }
.payment-info__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.9rem;
}
.pay-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    padding: 4px 9px;
    height: 30px;
}
.payment-info__note {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin: 0;
    line-height: 1.55;
}

/* ----- 11. Engagements (réutilise la grille de valeurs racine) ----- */
.engagements__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 640px) {
    .engagements__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .engagements__grid { grid-template-columns: repeat(4, 1fr); }
}
.engagement {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: border-color var(--transition), transform var(--transition);
}
.engagement:hover { border-color: var(--accent-muted); transform: translateY(-3px); }
.engagement__badge {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-muted));
    color: #fff;
    font-size: 1.5rem;
}
.engagement h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.engagement p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; }

/* ----- 12. CTA banner (fond accent) ----- */
.cta-banner {
    background: linear-gradient(135deg, var(--accent-muted) 0%, var(--accent) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-accent);
}
.cta-banner h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(255, 255, 255, 0.92); max-width: 580px; margin: 0 auto 1.5rem; }
.cta-banner .btn {
    background: #fff;
    color: var(--accent);
    border-color: #fff;
    box-shadow: none;
}
.cta-banner .btn:hover {
    background: var(--bg);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

/* ----- 13. Tableau comparatif ----- */
.compare-wrap {
    overflow-x: auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}
.compare-table th,
.compare-table td {
    padding: 0.95rem 1.2rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-muted);
}
.compare-table th { background: var(--bg-elevated); color: var(--text); font-weight: 700; }
.compare-table th.featured-col {
    background: linear-gradient(180deg, var(--accent), var(--accent-muted));
    color: #fff;
}
.compare-table th small { display: block; opacity: 0.85; font-weight: 500; font-size: 0.78rem; margin-top: 0.2rem; }
.compare-table td:first-child,
.compare-table th:first-child { text-align: left; color: var(--text); font-weight: 500; }
.compare-table tbody tr:hover { background: var(--bg-elevated); }
.compare-table .yes { color: var(--success); font-weight: 700; }
.compare-table .no  { color: var(--text-dim); }
.compare-table .featured-col { background: rgba(59, 130, 246, 0.06); }

/* ----- 14. Service blocks (page services) ----- */
.service-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    transition: border-color var(--transition);
}
.service-block:hover { border-color: var(--border-strong); }
@media (min-width: 768px) {
    .service-block { grid-template-columns: 0.4fr 0.6fr; gap: 2rem; padding: 2rem; }
    .service-block:nth-child(even) { grid-template-columns: 0.6fr 0.4fr; }
    .service-block:nth-child(even) .service-block__visual { order: 2; }
}
.service-block__visual {
    background: linear-gradient(135deg, var(--accent), var(--accent-muted));
    border-radius: var(--radius);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3.5rem;
    box-shadow: var(--shadow);
}
.service-block h3 { color: var(--accent); margin-bottom: 0.6rem; }
.service-block ul {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.5rem;
}
.service-block ul li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--text-muted);
    font-size: 0.93rem;
}
.service-block ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* ----- 15. FAQ (accordéon <details>) ----- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--accent-muted); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.05rem 1.4rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 400;
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__answer {
    padding: 0 1.4rem 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}
.faq-item__answer p { margin: 0 0 0.5rem; color: var(--text-muted); }
.faq-item__answer p:last-child { margin-bottom: 0; }
.faq-item__answer ul { padding-left: 1.25rem; margin: 0.4rem 0; list-style: disc; }
.faq-item__answer ul li { color: var(--text-muted); }
.faq-item__answer a { color: var(--accent); text-decoration: underline; }

/* ----- 16. Contact page : layout + carte info ----- */
.contact-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 900px) {
    .contact-page__grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
}
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.4rem 1.5rem;
}
.info-card h3 { color: var(--accent); font-size: 1rem; margin-bottom: 0.6rem; }
.info-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.info-card a { color: var(--text); }
.info-card a:hover { color: var(--accent); }

.cities-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.cities-chips span {
    background: var(--bg-elevated);
    padding: 0.3rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-info-stack .footer-engagements {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-status {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
    color: var(--text-muted);
}
.form-status.is-success { color: var(--success); }

select.form-control,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color var(--transition), background var(--transition);
}
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-elevated);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ----- 17. Page mentions légales ----- */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
@media (min-width: 768px) {
    .legal-content { padding: 2.5rem; }
}
.legal-content h2 {
    color: var(--accent);
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p,
.legal-content li {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}
.legal-content ul { padding-left: 1.25rem; margin: 0.5rem 0 0.75rem; list-style: disc; }
.legal-content a { color: var(--accent); text-decoration: underline; }
.legal-content strong { color: var(--text); }
.legal-content em { color: var(--text-dim); }

/* ----- 18. Footer : version /cloud (utilise classes racine, ajustements mineurs) ----- */
.footer-engagements {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.footer-engagements span {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-cities {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* ----- 19. Reveal animation (existe déjà racine en .reveal.is-visible) ----- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ----- 20. Petits utilitaires ----- */
.text-success { color: var(--success); }
.text-muted   { color: var(--text-muted); }
.mt-2 { margin-top: 0.5rem; }
