/* ==========================================================================
   DIAG AND YOU — Feuille de style unique
   Parti pris : sobriété. Une seule couleur (navy) et des neutres.
   Aucune couleur décorative : la couleur ne sert qu'à porter du sens.
   Pas de dégradé décoratif, pas d'animation d'appel, angles nets.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Jetons de design
   -------------------------------------------------------------------------- */
:root {
    /* Neutres */
    --c-ink:        #101828;
    --c-body:       #475467;
    --c-muted:      #667085;
    --c-line:       #E4E7EC;
    --c-line-soft:  #F2F4F7;
    --c-surface:    #FFFFFF;
    --c-alt:        #F8F9FB;

    /* Primaire */
    --c-navy:       #182347;
    --c-navy-700:   #101833;
    --c-navy-500:   #2E3C6B;
    --c-navy-50:    #F2F4F9;

    /* Plus d'accent décoratif : les repères visuels s'appuient sur le navy
       et les neutres. Ces variables restent pour la compatibilité. */
    --c-accent:     var(--c-navy);
    --c-accent-700: var(--c-navy-700);
    --c-accent-50:  var(--c-navy-50);

    /* Fonctionnels */
    --c-whatsapp:   #128C7E;
    --c-whatsapp-700:#0C6E63;
    --c-success:    #067647;
    --c-warning:    #B54708;

    /* Rayons */
    --r-sm: 4px;
    --r:    8px;
    --r-lg: 12px;

    /* Ombres — discrètes, jamais colorées */
    --sh-xs: 0 1px 2px rgba(16, 24, 40, .05);
    --sh-sm: 0 1px 3px rgba(16, 24, 40, .08), 0 1px 2px rgba(16, 24, 40, .04);
    --sh:    0 4px 12px rgba(16, 24, 40, .08);
    --sh-lg: 0 12px 32px rgba(16, 24, 40, .10);

    /* Compatibilité avec d'anciennes règles */
    --primary-color: var(--c-navy);
    --accent-color:  var(--c-accent);
    --golden-color:  var(--c-accent);
    --golden-hover:  var(--c-accent-700);
    --text-dark:     var(--c-ink);
    --text-light:    #ffffff;
    --bg-light:      var(--c-alt);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --------------------------------------------------------------------------
   2. Base & typographie
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { overflow-x: hidden; scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    color: var(--c-body);
    background: var(--c-surface);
    line-height: 1.65;
    font-size: 1rem;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: 118px; /* repli : main.js applique la hauteur exacte du header */
}

@media (max-width: 991.98px) {
    body { padding-top: 76px; padding-bottom: 68px; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--c-ink);
    font-weight: 650;
    line-height: 1.22;
    letter-spacing: -0.018em;
    margin-bottom: .75rem;
}

h1, .display-3, .display-4 { font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 2.4vw, 2.05rem); }
h3 { font-size: 1.25rem; }
h4, .h4 { font-size: 1.1rem; }
h5, .h5 { font-size: 1rem; }
h6, .h6 { font-size: .9rem; }

p { color: var(--c-body); margin-bottom: 1rem; }

.lead {
    font-size: 1.09rem;
    line-height: 1.6;
    color: var(--c-body);
    font-weight: 400;
}

a { color: var(--c-navy); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--c-navy-700); }

strong, .fw-semibold, .fw-bold { color: var(--c-ink); }

.text-primary { color: var(--c-navy) !important; }
.text-muted   { color: var(--c-muted) !important; }
.bg-light     { background-color: var(--c-alt) !important; }
.bg-primary   { background-color: var(--c-navy) !important; }
.text-success { color: var(--c-success) !important; }

::selection { background: var(--c-navy); color: #fff; }

:focus-visible {
    outline: 2px solid var(--c-navy);
    outline-offset: 2px;
    border-radius: 2px;
}

/* --------------------------------------------------------------------------
   3. Boutons — sobres, rectangulaires, sans majuscules forcées
   -------------------------------------------------------------------------- */
.btn {
    --bs-btn-focus-box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font-primary);
    font-weight: 550;
    font-size: .95rem;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.4;
    padding: .68rem 1.35rem;
    border-radius: var(--r);
    border: 1px solid transparent;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.btn-lg { padding: .85rem 1.7rem; font-size: 1rem; }
.btn-sm { padding: .48rem 1rem; font-size: .875rem; }

.btn-primary,
.btn.btn-primary {
    background-color: var(--c-navy);
    border-color: var(--c-navy);
    color: #fff !important;
}

.btn-primary:hover,
.btn.btn-primary:hover,
.btn-primary:focus-visible {
    background-color: var(--c-navy-700);
    border-color: var(--c-navy-700);
    color: #fff !important;
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--c-line);
    color: var(--c-ink);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus-visible {
    background: var(--c-navy-50);
    border-color: var(--c-navy);
    color: var(--c-navy);
}

.btn-light {
    background: #fff;
    border-color: #fff;
    color: var(--c-navy) !important;
}

.btn-light:hover { background: var(--c-line-soft); border-color: var(--c-line-soft); color: var(--c-navy-700) !important; }

.btn-outline-light {
    background: transparent;
    border-color: rgba(255,255,255,.45);
    color: #fff !important;
}

.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff !important; }

.btn-whatsapp {
    background-color: var(--c-whatsapp);
    border-color: var(--c-whatsapp);
    color: #fff !important;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
    background-color: var(--c-whatsapp-700);
    border-color: var(--c-whatsapp-700);
    color: #fff !important;
}

.btn-link { color: var(--c-muted); text-decoration: none; font-weight: 500; }
.btn-link:hover { color: var(--c-navy); text-decoration: underline; }

/* --------------------------------------------------------------------------
   4. En-tête & navigation
   -------------------------------------------------------------------------- */
.site-header { background: #fff; }

.header-top-bar {
    background: var(--c-navy);
    color: rgba(255,255,255,.75);
    padding: .5rem 0;
    font-size: .8125rem;
    letter-spacing: .002em;
}

.header-top-bar a { color: rgba(255,255,255,.75); text-decoration: none; }
.header-top-bar a:hover { color: #fff; }
.header-top-bar i { margin-right: .45rem; color: rgba(255,255,255,.45); width: 13px; }

.navbar {
    background: #fff;
    border-bottom: 1px solid var(--c-line);
    padding: .55rem 0;
    transition: padding .2s ease;
}

.navbar.scrolled { padding: .3rem 0; box-shadow: var(--sh-sm); }

.navbar-brand img { height: 52px; width: auto; transition: height .2s ease; }
.navbar.scrolled .navbar-brand img { height: 44px; }

.navbar-nav .nav-link {
    color: var(--c-body) !important;
    font-weight: 500;
    font-size: .935rem;
    padding: .5rem .85rem !important;
    border-radius: var(--r-sm);
    position: relative;
    transition: color .18s ease;
}

.navbar-nav .nav-link:hover { color: var(--c-ink) !important; }

.navbar-nav .nav-link.active {
    color: var(--c-navy) !important;
    font-weight: 600;
}

/* Filet discret sur l'onglet actif */
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: .85rem;
    right: .85rem;
    bottom: -.3rem;
    height: 2px;
    background: var(--c-navy);
    border-radius: 2px;
}

.navbar-toggler { border-color: var(--c-line); padding: .4rem .6rem; }
.navbar-toggler:focus { box-shadow: none; }

.dropdown-menu {
    border: 1px solid var(--c-line);
    border-radius: var(--r);
    box-shadow: var(--sh);
    padding: .4rem;
    min-width: 250px;
    margin-top: .4rem;
}

.dropdown-item {
    padding: .55rem .75rem;
    border-radius: var(--r-sm);
    font-size: .9rem;
    font-weight: 450;
    color: var(--c-body);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--c-navy-50);
    color: var(--c-navy);
}

.dropdown-divider { border-color: var(--c-line); margin: .35rem 0; }

@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu { display: block; }
}

@media (max-width: 991.98px) {
    .navbar-collapse { padding-top: .75rem; }
    .navbar-nav .nav-link.active::after { display: none; }
    .navbar-nav .nav-item .btn { width: 100%; margin: .3rem 0 0; }
}

main { min-height: 60vh; }

/* --------------------------------------------------------------------------
   5. Fil d'Ariane
   -------------------------------------------------------------------------- */
.dy-breadcrumb {
    background: var(--c-alt);
    border-bottom: 1px solid var(--c-line);
    padding: .7rem 0;
    font-size: .82rem;
}

.dy-breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem;
    margin: 0;
    padding: 0;
}

.dy-breadcrumb li + li::before {
    content: '/';
    margin-right: .45rem;
    color: #C4C9D4;
}

.dy-breadcrumb a { color: var(--c-muted); text-decoration: none; }
.dy-breadcrumb a:hover { color: var(--c-ink); }
.dy-breadcrumb [aria-current="page"] { color: var(--c-ink); font-weight: 550; }

/* --------------------------------------------------------------------------
   6. En-têtes de page
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    background: var(--c-navy) url('../images/accueil.webp') center/cover no-repeat;
    min-height: 62vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 5rem 0;
}

.hero .container { position: relative; z-index: 2; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 24, 51, .74);
    z-index: 1;
}

.hero h1 {
    color: #fff;
    max-width: 22ch;
    margin: 0 auto 1.1rem;
    text-shadow: none;
}

.hero p.lead {
    color: rgba(255,255,255,.82);
    max-width: 56ch;
    margin: 0 auto 1.75rem;
    font-size: 1.05rem;
}

.hero .row { min-height: 0 !important; }

/* Repères de confiance du hero */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 1.75rem;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.88);
    font-size: .8rem;
    font-weight: 500;
    padding: .38rem .85rem;
    border-radius: var(--r-sm);
}

.hero-badges i { color: rgba(255,255,255,.5); font-size: .8rem; }

/* En-tête des pages intérieures */
.page-hero {
    background: var(--c-navy) !important;
    padding: 3.75rem 0 !important;
}

.page-hero h1 { color: #fff; margin-bottom: .6rem; }
.page-hero h1::after { display: none; }
.page-hero .lead { color: rgba(255,255,255,.78); margin: 0 auto; max-width: 62ch; }

/* En-tête des pages service */
.service-hero,
body .service-hero {
    background: var(--c-navy) !important;
    padding: 3.5rem 0 !important;
    min-height: 0 !important;
    text-align: center;
    display: block !important;
}

.service-hero::before { display: none; }

.service-hero h1,
body .service-hero .container h1 {
    color: #fff !important;
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    display: block !important;
    font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
    font-weight: 700 !important;
    text-shadow: none;
}

.service-hero p { color: rgba(255,255,255,.78); max-width: 60ch; margin: .85rem auto 1.5rem; }
.service-hero .btn-light { display: inline-flex; }
.service-page { padding-top: 0; }

/* --------------------------------------------------------------------------
   7. En-têtes de section
   -------------------------------------------------------------------------- */
.section-header { margin-bottom: 3rem; }

.subtitle {
    display: inline-block;
    color: var(--c-muted);
    background: none;
    -webkit-text-fill-color: currentColor;
    font-weight: 600;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: .6rem;
}

.section-title {
    font-size: clamp(1.6rem, 2.4vw, 2.05rem);
    font-weight: 680;
    color: var(--c-ink);
    margin-bottom: .75rem;
}

.section-line {
    width: 44px;
    height: 2px;
    background: var(--c-navy);
    margin: 0 auto;
    border-radius: 2px;
}

.section-title.text-start + .section-line,
.text-start .section-line { margin-left: 0; }

/* --------------------------------------------------------------------------
   8. Cartes
   -------------------------------------------------------------------------- */
.card {
    border: 1px solid var(--c-line);
    border-radius: var(--r);
    box-shadow: none;
}

.card-body { padding: 1.5rem; }
.card-title { color: var(--c-ink); font-weight: 600; }
.shadow-sm { box-shadow: var(--sh-xs) !important; }
.shadow-lg { box-shadow: var(--sh) !important; }

/* Carte de service */
.service-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r);
    padding: 1.75rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: none !important;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.service-card::before { display: none !important; }

.service-card:hover {
    border-color: var(--c-navy);
    box-shadow: var(--sh-sm) !important;
    transform: none;
}

.service-card i,
.service-card .service-icon {
    font-size: 1.4rem !important;
    color: var(--c-navy) !important;
    background: var(--c-navy-50);
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r);
    margin-bottom: 1.1rem !important;
    filter: none !important;
    transition: none !important;
}

.service-card:hover i,
.service-card:hover .service-icon { transform: none !important; }

.service-card h3 {
    font-size: 1.06rem;
    font-weight: 620;
    color: var(--c-ink);
    margin-bottom: .5rem;
    padding-bottom: 0;
}

.service-card h3::after { display: none; }

.service-card p {
    color: var(--c-body);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.dy-service-meta {
    display: inline-block;
    font-size: .72rem;
    font-weight: 550;
    color: var(--c-muted);
    background: var(--c-line-soft);
    border-radius: 999px;
    padding: .18rem .6rem;
    margin-bottom: .75rem;
}

.service-card .btn,
.service-card .btn-outline-primary {
    background: transparent;
    border: 1px solid var(--c-line);
    color: var(--c-ink);
    padding: .5rem 1.1rem;
    border-radius: var(--r);
    font-size: .875rem;
    font-weight: 550;
    text-transform: none;
    letter-spacing: 0;
    width: 100%;
}

.service-card .btn:hover {
    background: var(--c-navy-50);
    border-color: var(--c-navy);
    color: var(--c-navy);
    transform: none;
    box-shadow: none;
}

/* Cartes de confiance / valeurs / certifications / atouts */
.trust-badge,
.value-card,
.certification-card,
.feature-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r);
    padding: 1.75rem 1.5rem;
    height: 100%;
    text-align: center;
    box-shadow: none !important;
    transition: border-color .18s ease;
}

.trust-badge:hover,
.value-card:hover,
.certification-card:hover,
.feature-card:hover {
    border-color: var(--c-navy);
    transform: none;
    box-shadow: none !important;
}

.trust-badge i,
.value-card i,
.certification-card i,
.feature-card i,
.feature-icon {
    font-size: 1.35rem !important;
    color: var(--c-navy) !important;
    background: var(--c-navy-50);
    width: 46px;
    height: 46px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: var(--r);
    margin-bottom: 1rem !important;
}

.trust-badge h4,
.value-card h3,
.certification-card h4,
.feature-card h3 {
    font-size: 1rem;
    font-weight: 620;
    color: var(--c-ink);
    margin-bottom: .4rem;
}

.trust-badge p,
.value-card p,
.certification-card p,
.feature-card p {
    color: var(--c-body);
    font-size: .88rem;
    margin: 0;
}

.trust-section {
    background: var(--c-alt);
    border-block: 1px solid var(--c-line);
    padding: 4rem 0;
}

.trust-section::before { display: none; }

.certification-badges { gap: 2rem; }
.certification-badges i { font-size: 1.6rem !important; }

/* Équipe */
.team-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r);
    transition: border-color .18s ease;
}

.team-card:hover { border-color: var(--c-navy); transform: none; box-shadow: none; }

.team-img-wrapper {
    width: 116px;
    height: 116px;
    margin: 0 auto;
    border: 0;
    padding: 0;
    border-radius: 50%;
    overflow: hidden;
    background: var(--c-line-soft);
}

.team-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card:hover .team-img { transform: none; }
.team-social a { color: var(--c-muted) !important; }
.team-social a:hover { color: var(--c-navy) !important; }

/* Témoignages */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r);
    padding: 1.75rem;
    box-shadow: none;
    margin: 0;
    height: 100%;
}

.testimonial-card::before { display: none; }

.testimonial-content {
    font-size: .95rem;
    color: var(--c-body);
    line-height: 1.7;
    font-style: normal;
    margin-bottom: 1.25rem;
}

.testimonial-stars { color: var(--c-navy); font-size: .82rem; margin-bottom: .85rem; letter-spacing: .08em; }

/* Note globale */
.dy-rating {
    display: inline-flex;
    align-items: baseline;
    gap: .6rem;
    font-size: 1.05rem;
    color: var(--c-body);
}

.dy-rating strong { font-size: 1.6rem; font-weight: 680; color: var(--c-ink); }
.dy-rating__stars { color: var(--c-navy); font-size: .95rem; letter-spacing: .1em; }
.dy-rating--lg strong { font-size: 2.6rem; }
.dy-rating--lg .dy-rating__stars { font-size: 1.25rem; }

/* Encart de renvoi vers la fiche Google */
.dy-reviews-invite {
    background: var(--c-alt);
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 2.5rem 2rem;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--c-line); }
.testimonial-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 0; }
.testimonial-author-info h5 { margin: 0; color: var(--c-ink); font-weight: 600; font-size: .92rem; }
.testimonial-author-info span { color: var(--c-muted); font-size: .8rem; }

/* --------------------------------------------------------------------------
   10. Simulateur
   -------------------------------------------------------------------------- */
.dy-simulator {
    background: var(--c-alt);
    border-block: 1px solid var(--c-line);
    padding: 4.5rem 0;
}

.dy-simulator h2,
.dy-simulator .section-title { color: var(--c-ink); }
.dy-simulator p { color: var(--c-body); }

.dy-simulator__card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 2.25rem;
    box-shadow: var(--sh-sm);
}

.dy-sim-step { display: none; }
.dy-sim-step.is-active { display: block; }

.dy-sim-question {
    font-size: 1.12rem;
    font-weight: 620;
    color: var(--c-ink);
    margin-bottom: .35rem;
}

.dy-sim-hint { font-size: .875rem; color: var(--c-muted); margin-bottom: 1.5rem; }

.dy-choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: .75rem;
}

.dy-choice {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1.35rem 1rem;
    text-align: center;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r);
    font-weight: 550;
    font-size: .92rem;
    color: var(--c-ink);
    cursor: pointer;
    transition: border-color .16s ease, background-color .16s ease;
}

.dy-choice i { font-size: 1.15rem; color: var(--c-muted); }
.dy-choice small { font-weight: 400; color: var(--c-muted); font-size: .78rem; }

.dy-choice:hover { border-color: var(--c-navy); background: var(--c-navy-50); }
.dy-choice:hover i { color: var(--c-navy); }

.dy-choice.is-selected {
    border-color: var(--c-navy);
    background: var(--c-navy-50);
    box-shadow: inset 0 0 0 1px var(--c-navy);
}

.dy-choice.is-selected i { color: var(--c-navy); }

.dy-sim-progress { display: flex; align-items: center; gap: .4rem; margin-bottom: 1.75rem; }

.dy-sim-progress span {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: var(--c-line);
    transition: background-color .25s ease;
}

.dy-sim-progress span.is-done { background: var(--c-navy); }

.dy-result-list { list-style: none; padding: 0; margin: 0 0 1.25rem; }

.dy-result-list li {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .95rem 1rem;
    border: 1px solid var(--c-line);
    border-radius: var(--r);
    margin-bottom: .5rem;
    background: #fff;
}

.dy-result-list i { color: var(--c-muted); font-size: .95rem; margin-top: .25rem; }
.dy-result-list strong { color: var(--c-ink); display: block; font-size: .95rem; font-weight: 600; margin-bottom: .15rem; }
.dy-result-list small { color: var(--c-body); font-size: .84rem; display: block; line-height: 1.55; }
.dy-result-list a { font-size: .82rem; font-weight: 550; }

.dy-result-note {
    background: var(--c-alt);
    border: 1px solid var(--c-line);
    border-left: 2px solid var(--c-navy);
    border-radius: var(--r-sm);
    padding: .85rem 1rem;
    font-size: .82rem;
    color: var(--c-muted);
    margin-bottom: 1.5rem;
}

/* Badges du simulateur */
.dy-result-list .badge { font-weight: 550; font-size: .68rem; padding: .25em .6em; border-radius: var(--r-sm); }
.badge.bg-primary { background: var(--c-navy) !important; }
.badge.bg-warning { background: var(--c-line-soft) !important; color: var(--c-body) !important; border: 1px solid var(--c-line); }

/* --------------------------------------------------------------------------
   11. Formulaires & parcours de devis
   -------------------------------------------------------------------------- */
.form-label { font-size: .875rem; font-weight: 550; color: var(--c-ink); margin-bottom: .35rem; }

.form-control,
.form-select {
    border: 1px solid var(--c-line);
    border-radius: var(--r);
    padding: .62rem .8rem;
    font-size: .935rem;
    color: var(--c-ink);
    background-color: #fff;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.form-control::placeholder { color: #9AA2B1; }

.form-control:focus,
.form-select:focus {
    border-color: var(--c-navy);
    box-shadow: 0 0 0 3px rgba(24, 35, 71, .09);
}

.form-control.is-invalid,
.form-select.is-invalid { border-color: #D92D20; box-shadow: none; }

.form-check-input:checked { background-color: var(--c-navy); border-color: var(--c-navy); }
.form-check-input:focus { border-color: var(--c-navy); box-shadow: 0 0 0 3px rgba(24, 35, 71, .09); }
.form-check-label { font-size: .9rem; color: var(--c-body); }

.contact-form,
.devis-form,
.contact-info {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    box-shadow: none !important;
}

.contact-info { background: var(--c-alt) !important; }
.contact-item i { color: var(--c-navy) !important; display: block; margin-bottom: .4rem; }
.contact-item h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--c-muted); font-weight: 600; }
.contact-item p { color: var(--c-ink); font-size: .95rem; }

/* Progression du devis */
.dy-stepper {
    display: flex;
    gap: .5rem;
    margin-bottom: 2.25rem;
    counter-reset: dystep;
    border-bottom: 1px solid var(--c-line);
    padding-bottom: 1.25rem;
}

.dy-stepper__item {
    flex: 1;
    text-align: center;
    position: relative;
    font-size: .8rem;
    font-weight: 550;
    color: var(--c-muted);
}

.dy-stepper__item::before {
    counter-increment: dystep;
    content: counter(dystep);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: 0 auto .5rem;
    border-radius: 50%;
    background: var(--c-line-soft);
    border: 1px solid var(--c-line);
    color: var(--c-muted);
    font-weight: 600;
    font-size: .8rem;
}

.dy-stepper__item::after {
    content: '';
    position: absolute;
    top: 14px;
    left: calc(50% + 20px);
    right: calc(-50% + 20px);
    height: 1px;
    background: var(--c-line);
}

.dy-stepper__item:last-child::after { display: none; }

.dy-stepper__item.is-active { color: var(--c-ink); }
.dy-stepper__item.is-active::before { background: var(--c-navy); border-color: var(--c-navy); color: #fff; }
.dy-stepper__item.is-done { color: var(--c-body); }
.dy-stepper__item.is-done::before {
    background: #fff;
    border-color: var(--c-navy);
    color: var(--c-navy);
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .7rem;
}
.dy-stepper__item.is-done::after { background: var(--c-navy); }

.js-stepper .dy-form-step { display: none; }
.js-stepper .dy-form-step.is-active { display: block; }

/* Sélection des prestations */
.dy-service-check {
    display: block;
    position: relative;
    height: 100%;
    padding: .95rem 1rem .95rem 2.75rem;
    border: 1px solid var(--c-line);
    border-radius: var(--r);
    cursor: pointer;
    transition: border-color .16s ease, background-color .16s ease;
    background: #fff;
}

.dy-service-check:hover { border-color: var(--c-navy); }

.dy-service-check input {
    position: absolute;
    top: 1.05rem;
    left: 1rem;
    width: 1.05rem;
    height: 1.05rem;
    cursor: pointer;
}

.dy-service-check:has(input:checked) { border-color: var(--c-navy); background: var(--c-navy-50); }
.dy-service-check__body strong { display: block; color: var(--c-ink); font-size: .92rem; font-weight: 600; }
.dy-service-check__body small { color: var(--c-muted); font-size: .78rem; }

.dy-recap { background: var(--c-alt); border: 1px solid var(--c-line); border-radius: var(--r); padding: 1.25rem; }
.dy-recap h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--c-muted); }
.dy-recap dt { color: var(--c-muted); font-weight: 450; font-size: .84rem; }
.dy-recap dd { color: var(--c-ink); font-weight: 550; font-size: .9rem; margin-bottom: .5rem; }

/* --------------------------------------------------------------------------
   12. Tarifs
   -------------------------------------------------------------------------- */
.dy-pack {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 1.85rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color .18s ease;
}

.dy-pack:hover { border-color: var(--c-navy); transform: none; box-shadow: none; }

.dy-pack--featured { border-color: var(--c-navy); box-shadow: var(--sh-sm); }

.dy-pack__badge {
    position: absolute;
    top: -.7rem;
    left: 1.85rem;
    transform: none;
    background: var(--c-navy);
    color: #fff;
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: .25rem .7rem;
    border-radius: var(--r-sm);
}

.dy-pack h3 { font-size: 1.12rem; margin-bottom: .25rem; }
.dy-pack__meta { color: var(--c-muted); font-size: .85rem; margin-bottom: 1.25rem; }

.dy-pack__price {
    display: block;
    font-size: 1.3rem;
    font-weight: 650;
    color: var(--c-ink);
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--c-line);
}

.dy-pack__price small { display: block; font-size: .78rem; font-weight: 400; color: var(--c-muted); margin-top: .15rem; }

.dy-pack ul { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }

.dy-pack ul li {
    padding: .42rem 0 .42rem 1.5rem;
    position: relative;
    color: var(--c-body);
    font-size: .89rem;
    border: 0;
}

.dy-pack ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: .5rem;
    color: var(--c-success);
    font-size: .72rem;
}

/* Tableaux */
.table { --bs-table-bg: transparent; margin: 0; }
.table thead th {
    background: var(--c-alt);
    border-bottom: 1px solid var(--c-line);
    color: var(--c-muted);
    font-size: .76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .8rem 1rem;
}
.table tbody td,
.table tbody th { padding: .85rem 1rem; border-bottom: 1px solid var(--c-line); vertical-align: middle; font-weight: 450; }
.table tbody tr:last-child td,
.table tbody tr:last-child th { border-bottom: 0; }
.table tbody tr:hover { background: var(--c-alt); }
.table a { color: var(--c-ink); font-weight: 550; }
.table a:hover { color: var(--c-navy); }

/* --------------------------------------------------------------------------
   13. FAQ & accordéons
   -------------------------------------------------------------------------- */
.accordion-item {
    border: 1px solid var(--c-line) !important;
    border-radius: var(--r) !important;
    margin-bottom: .6rem;
    box-shadow: none;
    overflow: hidden;
}

.accordion-button {
    padding: 1.05rem 1.15rem;
    font-weight: 550;
    font-size: .95rem;
    color: var(--c-ink);
    background: #fff;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--c-alt) !important;
    color: var(--c-ink) !important;
}

.accordion-button::after { background-size: .95rem; opacity: .45; }
.accordion-button:focus { border-color: var(--c-line); box-shadow: none; }
.accordion-body { padding: 0 1.15rem 1.15rem; color: var(--c-body); font-size: .92rem; line-height: 1.7; }

.dy-faq-nav .btn { margin: 0 .35rem .5rem 0; }

/* --------------------------------------------------------------------------
   13 bis. Guides pratiques (contenu éditorial)
   -------------------------------------------------------------------------- */
.dy-guide__meta {
    font-size: .82rem;
    color: var(--c-muted);
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--c-line);
    margin-bottom: 1.75rem;
}

/* Sommaire */
.dy-toc {
    background: var(--c-alt);
    border: 1px solid var(--c-line);
    border-radius: var(--r);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
}

.dy-toc__title {
    font-size: .74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--c-muted);
    margin-bottom: .75rem;
}

.dy-toc ol { margin: 0; padding-left: 1.1rem; }
.dy-toc li { margin-bottom: .4rem; font-size: .9rem; }
.dy-toc li::marker { color: var(--c-muted); }
.dy-toc a { color: var(--c-body); text-decoration: none; }
.dy-toc a:hover { color: var(--c-navy); text-decoration: underline; }

/* Corps de l'article : confort de lecture */
.dy-guide__body { font-size: 1.02rem; line-height: 1.75; }
.dy-guide__body section { margin-bottom: 2.75rem; }
.dy-guide__body h2 { font-size: 1.4rem; margin-bottom: 1rem; padding-top: .5rem; }
.dy-guide__body p { margin-bottom: 1.1rem; }
.dy-guide__body ul,
.dy-guide__body ol { margin-bottom: 1.25rem; padding-left: 1.35rem; }
.dy-guide__body li { margin-bottom: .55rem; color: var(--c-body); }
.dy-guide__body li::marker { color: var(--c-muted); }
.dy-guide__body a { color: var(--c-navy); text-decoration: underline; }
.dy-guide__body a:hover { color: var(--c-navy-700); }
.dy-guide__body strong { color: var(--c-ink); font-weight: 600; }
.dy-guide__body .table { margin: 1.5rem 0; border: 1px solid var(--c-line); border-radius: var(--r); overflow: hidden; }

/* Colonne latérale collante */
.dy-aside { position: sticky; top: 165px; }

@media (max-width: 991.98px) {
    .dy-aside { position: static; margin-top: 2.5rem; }
}

/* Sources */
.dy-sources {
    background: var(--c-alt);
    border: 1px solid var(--c-line);
    border-radius: var(--r);
    padding: 1.25rem 1.5rem;
}

.dy-sources h2 { text-transform: uppercase; letter-spacing: .07em; color: var(--c-muted); font-size: .74rem; }
.dy-sources ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.dy-sources li { margin-bottom: .4rem; font-size: .85rem; }
.dy-sources a { color: var(--c-body); }

/* Zoom terrain sur les communes prioritaires */
.dy-zone-zoom {
    border-left: 2px solid var(--c-navy);
    padding-left: 1.5rem;
}

.dy-zone-zoom p { margin-bottom: 1rem; line-height: 1.75; }
.dy-zone-zoom p:last-child { margin-bottom: 0; }

@media (max-width: 575.98px) {
    .dy-zone-zoom { padding-left: 1rem; }
}

/* Annuaire de couverture des communes */
.dy-coverage {
    background: var(--c-alt);
    border: 1px solid var(--c-line);
    border-radius: var(--r);
    padding: 1.25rem 1.5rem;
}

.dy-coverage h3 { font-size: .88rem; font-weight: 650; margin-bottom: .6rem; }
.dy-coverage__list { font-size: .82rem; line-height: 1.8; color: var(--c-muted); margin: 0; }

/* Carte de guide (index) */
.dy-guide-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: border-color .18s ease;
}

.dy-guide-card:hover { border-color: var(--c-navy); }
.dy-guide-card__date { font-size: .76rem; color: var(--c-muted); margin-bottom: .6rem; }
.dy-guide-card h2 { margin-bottom: .6rem; line-height: 1.35; }
.dy-guide-card h2 a { color: var(--c-ink); text-decoration: none; }
.dy-guide-card h2 a:hover { color: var(--c-navy); }
.dy-guide-card p { font-size: .9rem; flex: 1; margin-bottom: 1.25rem; }
.dy-guide-card .btn { align-self: flex-start; }

/* --------------------------------------------------------------------------
   14. Processus & chronologie
   -------------------------------------------------------------------------- */
.circle-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--r);
    background: var(--c-navy-50);
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: none;
}

.circle-icon i { color: var(--c-navy) !important; font-size: 1.15rem !important; }
.circle-icon:hover { transform: none; box-shadow: none; background: var(--c-navy-50); }
.circle-icon:hover i { transform: none; color: var(--c-navy) !important; }

.timeline { position: relative; padding: .5rem 0; }

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 7px;
    height: 100%;
    width: 1px;
    background: var(--c-line);
}

.timeline-item { position: relative; padding-left: 2rem; margin-bottom: 1.25rem; width: 100%; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 1.35rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--c-navy);
    box-shadow: none;
}

.timeline-content {
    background: #fff;
    border: 1px solid var(--c-line);
    padding: 1.1rem 1.25rem;
    border-radius: var(--r);
    box-shadow: none;
}

.timeline-content h4 { color: var(--c-ink); font-size: .98rem; margin-bottom: .3rem; }
.timeline-content p { color: var(--c-body); font-size: .89rem; margin: 0; }

/* Neutralise la chronologie en zigzag héritée */
@media (min-width: 768px) {
    .timeline::before { left: 7px; transform: none; }
    .timeline-item,
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        width: 100%;
        margin-left: 0;
        padding-left: 2rem;
        padding-right: 0;
    }
    .timeline-item:nth-child(odd)::before { left: 3px; right: auto; }
}

.process-step { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }

.process-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--c-navy) !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .85rem;
}

.process-content h4 { font-size: .98rem; margin-bottom: .2rem; }
.process-content p { font-size: .89rem; margin: 0; }

/* --------------------------------------------------------------------------
   15. Appel à l'action
   -------------------------------------------------------------------------- */
.cta-section {
    background: var(--c-navy) !important;
    padding: 4rem 0 !important;
    animation: none;
}

.cta-section::before { display: none !important; }

.cta-section h2 {
    color: #fff;
    font-size: clamp(1.5rem, 2.4vw, 1.95rem);
    font-weight: 650;
    margin-bottom: .75rem;
}

.cta-section p { color: rgba(255,255,255,.78); font-size: 1rem; margin-bottom: 1.75rem; }
.cta-section.bg-light { background: var(--c-alt) !important; }
.cta-section.bg-light h2 { color: var(--c-ink); }
.cta-section.bg-light p { color: var(--c-body); }

/* --------------------------------------------------------------------------
   16. Bandeau de réassurance & pied de page
   -------------------------------------------------------------------------- */
.reassurance-bar {
    background: var(--c-alt);
    border-top: 1px solid var(--c-line);
    padding: 2.75rem 0;
}

.reassurance-bar i { font-size: 1.15rem; color: var(--c-navy); margin-bottom: .6rem; display: block; }
.reassurance-bar h6 { font-size: .92rem; font-weight: 600; color: var(--c-ink); margin-bottom: .25rem; }
.reassurance-bar p { font-size: .8rem; margin: 0; color: var(--c-muted); }

footer {
    background: var(--c-navy) !important;
    color: rgba(255,255,255,.68);
    font-size: .9rem;
}

footer::before { display: none; }

footer h5,
footer .golden-color {
    color: #fff !important;
    font-size: .82rem !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 1.1rem;
}

footer p,
footer li,
footer span,
footer .text-light { color: rgba(255,255,255,.68) !important; }

footer a,
footer a.text-light {
    color: rgba(255,255,255,.68) !important;
    text-decoration: none;
    transition: color .16s ease;
}

footer a:hover,
footer a.text-light:hover { color: #fff !important; text-decoration: none; }

footer ul li { margin-bottom: .45rem; }
footer i { color: rgba(255,255,255,.38); font-size: .85rem; }
footer hr { border-color: rgba(255,255,255,.12); opacity: 1; }

.social-links a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--r-sm);
    margin-right: .4rem;
}

.social-links a:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.35); }
.social-links i { color: rgba(255,255,255,.7); }

.footer-zones { font-size: .78rem; line-height: 2; }
.footer-zones h6 { color: rgba(255,255,255,.5) !important; font-size: .72rem !important; }
.footer-zones a { color: rgba(255,255,255,.5) !important; }

/* --------------------------------------------------------------------------
   17. Actions flottantes & barre mobile
   -------------------------------------------------------------------------- */
.floating-actions {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .6rem;
}

/* Pastille ronde : discrète et ne recouvre plus le contenu des colonnes */
.floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: var(--sh);
    animation: none !important;
    transition: background-color .18s ease;
}

/* Le libellé n'est lu que par les technologies d'assistance */
.floating-btn span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.floating-btn i { font-size: 1.5rem; animation: none !important; }
.floating-btn--whatsapp { background: var(--c-whatsapp); }
.floating-btn--whatsapp:hover { background: var(--c-whatsapp-700); color: #fff !important; }
.floating-btn--call { background: var(--c-navy); }
.floating-btn--call:hover { background: var(--c-navy-700); color: #fff !important; }
.floating-btn:hover { transform: none; }

/* Le bouton d'appel fait doublon avec l'en-tête sur grand écran */
@media (min-width: 992px) {
    .floating-btn--call { display: none; }
}

@media (max-width: 991.98px) {
    .floating-actions { display: none; }
}

.mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    display: none;
    background: #fff;
    border-top: 1px solid var(--c-line);
    box-shadow: 0 -2px 12px rgba(16, 24, 40, .07);
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-action-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    padding: .6rem .4rem;
    font-size: .7rem;
    font-weight: 550;
    color: var(--c-body);
    text-decoration: none;
    border-right: 1px solid var(--c-line);
}

.mobile-action-bar a:last-child { border-right: 0; }
.mobile-action-bar i { font-size: 1.05rem; color: var(--c-muted); }
.mobile-action-bar__whatsapp i { color: var(--c-whatsapp) !important; }
.mobile-action-bar__cta { background: var(--c-navy); color: #fff !important; }
.mobile-action-bar__cta i { color: #fff !important; }

@media (max-width: 991.98px) {
    .mobile-action-bar { display: flex; }
}

.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1030;
    width: 38px;
    height: 38px;
    border: 1px solid var(--c-line);
    border-radius: var(--r);
    background: #fff;
    color: var(--c-body);
    font-size: .8rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease, background-color .16s ease;
    box-shadow: var(--sh-sm);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--c-alt); color: var(--c-ink); transform: none; }

@media (max-width: 991.98px) {
    .back-to-top { bottom: 5rem; left: 1rem; }
}

/* --------------------------------------------------------------------------
   18. Pages légales, erreurs, carte
   -------------------------------------------------------------------------- */
.page-content { padding: 3.5rem 0; background: #fff; }
.page-content h1 { margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--c-line); }
.page-content h1::after { display: none; }
.page-content h2 { font-size: 1.15rem; margin: 2rem 0 .85rem; }
.page-content p,
.page-content ul { font-size: .95rem; line-height: 1.75; color: var(--c-body); margin-bottom: 1rem; }
.page-content ul { list-style: none; padding-left: 0; }
.page-content ul li { position: relative; padding-left: 1.15rem; margin-bottom: .4rem; }
.page-content ul li::before { content: '—'; color: var(--c-muted); position: absolute; left: 0; }
.page-content strong { color: var(--c-ink); font-weight: 600; }

.error-section { padding: 4.5rem 0; }
.error-section .display-1 { color: var(--c-line); font-weight: 700; font-size: 5rem; }

.map-container { border: 1px solid var(--c-line); border-radius: var(--r); overflow: hidden; }
.map-container iframe { display: block; filter: grayscale(1) contrast(.95); transition: filter .3s ease; }
.map-container:hover iframe { filter: grayscale(0); }

.alert { border-radius: var(--r); border-width: 1px; font-size: .92rem; }
.alert-success { background: #F0FDF4; border-color: #BBF7D0; color: #15803D; }
.alert-danger  { background: #FEF3F2; border-color: #FECDCA; color: #B42318; }
.alert-warning { background: #FFFAEB; border-color: #FEDF89; color: var(--c-warning); }

/* --------------------------------------------------------------------------
   19. Animations — réduites au strict minimum
   -------------------------------------------------------------------------- */
.fade-in { opacity: 1; transform: none; animation: none; }

/* Les défilements latéraux d'AOS sont convertis en simple fondu :
   plus sobre, et supprime la barre de défilement horizontale parasite. */
[data-aos="fade-left"],
[data-aos="fade-right"] { transform: none !important; }

/* Indicateur de défilement du hero : masqué (effet daté) */
.scroll-indicator { display: none !important; }

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

/* --------------------------------------------------------------------------
   20. Utilitaires & ajustements responsive
   -------------------------------------------------------------------------- */
.dy-anchor-offset { scroll-margin-top: 140px; }
.golden-color { color: #fff !important; }
.py-5 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }

@media (max-width: 767.98px) {
    body { font-size: .95rem; }

    /* Confort tactile : cases et boutons radio agrandis */
    .form-check-input {
        width: 1.35rem;
        height: 1.35rem;
        margin-top: .1rem;
    }
    .form-check { padding-left: 2rem; }
    .form-check-input { margin-left: -2rem; }
    .form-check-label { padding-left: .25rem; line-height: 1.5; }

    .dy-service-check { padding-left: 3rem; }
    .dy-service-check input { width: 1.35rem; height: 1.35rem; top: .95rem; }

    /* Les boutons d'un même groupe passent en pleine largeur */
    .dy-form-step .d-flex.justify-content-between { gap: .75rem; }
    .dy-form-step .d-flex.justify-content-between .btn { flex: 1; }
    .hero { min-height: auto; padding: 3.5rem 0; }
    .page-hero { padding: 2.5rem 0 !important; }
    .service-hero { padding: 2.5rem 0 !important; }
    .section-header { margin-bottom: 2rem; }
    .py-5 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
    .dy-simulator__card { padding: 1.35rem; }
    .dy-stepper__item { font-size: .7rem; }
    .dy-stepper__item::after { display: none; }
    .dy-pack { padding: 1.35rem; }
    .btn { width: auto; }
}
