/* --- Variables de couleurs --- */
:root {
    /* --bg-dark: #2a3fa7; */
    --bg-dark: #375ba3;
    --bg-card: #0d1120;
    --bg-dark-section: #0e303c;
    --bg-card-hover: #121828;
    --bg-body: #c2e2f1;
    --blue-primary: #037dc5;
    --blue-dark: #1d4ed8;
    --blue-light: #60a5fa;
    --cyan: #22d3ee;
    --text-white: #f1f5f9;
    --text-muted: #c2c2c5;
    --border-color: rgba(59, 130, 246, 0.15);
    --glow-primary: rgba(59, 130, 246, 0.35);
    --nav-height: 6em;
    --bs-dropdown-spacer: 1.5rem;
    --pulsen-gradient-bg: linear-gradient(135deg, var(--blue-primary) 0%, var(--cyan) 100%);
    --pill-bg-start:#84b5fc69;
    --pill-bg-end:#bcaae800;
}

@font-face {
    font-family: 'MadimiOne';
    src: url('../fonts/MadimiOne-Regular.ttf');
}
@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/SpaceGrotesk-VariableFont_wght.ttf');
}

.navbar-toggler-icon {
    /* color:red !important; */
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* background-color: var(--bg-dark); */
    background-color: #c2e2f1;
    /* color: var(--text-white); */
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 100%, rgb(255 255 255 / 20%) 2px, transparent 0);
    background-size: 30px 30px;
}

h1, h2, h3, h4, h5, h6, .brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

a {
    color: var(--blue-light);
    text-decoration: none;
}

a:hover {
    color: var(--cyan);
}

.accordion-button:not(.collapsed) {
    outline:none;
    border:none;
    border-bottom-left-radius:0;
    border-bottom-right-radius:0;
    color:white;
}

.accordion-button {
    background:var(--pulsen-gradient-bg);
    color:white;
}

.accordion-item,
.accordion-header,
.accordion-button {
    border-radius:var(--bs-accordion-border-radius);
}

.anchors-accentuated a {
    background-color:white;
    padding:0 .4em;
    border-radius:5px;
    font-size:.9em;
    color:#0373B5;
}

#mainNavbar {
    height: auto;
    background: transparent;
    border-bottom: none;
    padding: 0.75rem 0;
    top: 12px;
    transition: padding 0.3s ease, top 0.3s ease;
}

#mainNavbar.scrolled {
    padding: 0.4rem 0;
    top: 8px;
}

#mainNavbar .container {
    background: white;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 35px;
    padding: 0.2rem 1.5rem;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}
    

#mainNavbar.scrolled .container {
    box-shadow: 0 8px 40px rgba(0, 0, 30, 0.55);
    border-color: rgba(59, 130, 246, 0.3);
}

@media (max-width: 575px) {
    #mainNavbar, #mainNavbar.scrolled {
        padding-top: 0;
        top: 0;
    }

    #mainNavbar .container {
        width: 100%;
        border-radius: 0;
        border-width: 0 0 1px 0;
    }
}
.sidebar button i.fas {
    width: 25px;
}

/* Logo */
.brand-icon {
    width: 38px;
    height: 38px;
    background: var(--pulsen-gradient-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.brand-icon-sm {
    width: 32px;
    height: 32px;
    font-size: 15px;
    border-radius: 8px;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-family: 'MadimiOne';
}

/* Liens de navigation */
#mainNavbar .nav-link {
    color: #035C91;
    font-size: 1em;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

#mainNavbar .nav-link:hover {
    background: rgba(59, 130, 246, 0.12);
}

#mainNavbar .nav-link.active {
    color: var(--text-white);
    background-image: var(--pulsen-gradient-bg);
}


/* Dropdown */
.dropdown-menu {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 30, 0.7), 0 0 0 1px rgba(59, 130, 246, 0.08);
    padding: 0.5rem;
    min-width: 220px;
    animation: dropdownFade 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus,
.dropdown-menu a {
    color: var(--blue-primary);
}

.list-sommaire {
    font-size:.9em;
}
.list-sommaire a {
    color:#0373B5;
}
.list-sommaire .list-group-item.list-group-item-sub {
    font-size:.875em;
    padding-left:2.5em;
}

@media (max-width: 991px) {
    .dropdown-menu.show {
        margin-top: 5px;
        box-shadow:none;
    }
}

.dropdown-item {
    color: rgba(241, 245, 249, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    transition: background 0.18s, color 0.18s;
}

.dropdown-item:hover, .dropdown-item:focus {
    background: rgba(59, 130, 246, 0.12);
    color: var(--blue-light);
}

.dropdown-divider.border-secondary {
    border-color: var(--border-color) !important;
}

/* Bouton CTA navbar */
.btn-primary-glow {
    background: var(--pulsen-gradient-bg);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    box-shadow: 0 4px 16px var(--glow-primary);
}

@media (max-width: 991px) {
nav .btn-primary-glow {
    display:flex;
    justify-self:center;
}
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.5);
    color: #fff;
    opacity: 0.95;
}

/* Toggler mobile */
.navbar-toggler:focus {
    box-shadow: none;
}

.pulsen-section {
    min-height: 540px;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
    /* background-image: url('/img/bg-contour.svg'); */
    background-size: cover;
    background-position: center;
    background-image: url('/img/bg-spi-gradient-5.svg');
    background-repeat:no-repeat;
}

.pulsen-section-gradient {
    background-image:linear-gradient(150deg, #1ec6e8 0%, var(--bg-dark) 50%, #c1adeb 100%);
    box-shadow:#424141 0 0 5px;
    color: white;
}

.page-pulsen + .pulsen-section {
    box-shadow:var(--bg-dark) 0 0 10px;
}

/* Grille de fond décoration */
.pulsen-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /*background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),*/
    /*linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);*/
    background-size: 48px 48px;
    pointer-events: none;
}

.pulsen-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: var(--blue-light);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.pulsen-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}


.pulsen-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    #headlines .pulsen-title {
        margin: .2em 0 .5em 0;
    }

    .pulsen-title {
        font-size: clamp(2.8rem, 7vw, 5rem);
        justify-self: center;
    }

    .pulsen-title span {
        display: inline-block;
        /* text-indent:2em; */
    }
}

.pulsen-buttons {
    gap: 1em;
    display: flex;
}
@media (max-width:991px) {
    .pulsen-buttons {
        justify-self:center;
    }
}
@media (max-width:575px) {
    .pulsen-buttons {
        flex-direction:column;
        max-width:80%;
    }
}

.gradient-text {
    background-image: var(--pulsen-gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background-image: var(--pulsen-gradient-bg);
}

.pulsen-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

h1.pulsen-title.show {
    animation: dropdownFade 1s ease;
    opacity: 1;
}

.pulsen-buttons.show {
    animation: dropupFade 1s ease;
    opacity: 1;
}

.pulsen-subtitle.show {
    animation: showFade 1s ease;
    opacity: 1;
}

h1.pulsen-title.hide,
.pulsen-buttons.hide,
.pulsen-subtitle.hide {
    animation: hideFade 1s ease;
    opacity: 0;
}

.btn-primary-pulsen {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 6px 24px var(--glow-primary);
    transition: transform 0.22s, box-shadow 0.22s;
}

.btn-primary-pulsen:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.55);
    color: #fff;
}

.btn-outline-pulsen {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(241, 245, 249, 0.18);
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.22s, border-color 0.22s;
}

.btn-outline-pulsen:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(241, 245, 249, 0.32);
    color: var(--text-white);
}

/* Stats héro */
.pulsen-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue-primary), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}
div#headlines {
    color: white;
}

/* Carte flottante */
.pulsen-visual {
    position: relative;
}

.img-astro {
    max-height: 350px;
    width:auto;
    display:flex;
    justify-self:center;
}

.img-astro-min {
    max-height:250px;
    width:auto;
    display:flex;
    justify-self: center;
}

.apesanteur {
    animation:apesanteur 5s ease 200;
}

.price-discount {
    margin-bottom: -15px;
}

.price-discount-percent {
    position: absolute;
    right: 10px;
    top: 75px;
    background-color: yellowgreen;
    font-weight: bold;
    transform: rotateZ(10deg);
    color: white;
    border-radius: 25px;
    height: 50px;
    width: 50px;
    align-content: center;
    text-align: center;
}

.pulsen-card {
    background: rgb(0 0 0 / 7%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    /*box-shadow: 0 0 60px rgba(59, 130, 246, 0.1), 0 30px 80px rgba(0, 0, 30, 0.5);*/
    box-shadow: 0 0 10px rgb(233 236 241 / 10%), 0 0px 60px rgb(208 208 208 / 50%);
    backdrop-filter: blur(2px);
}

.pulsen-card-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*background: rgba(59, 130, 246, 0.06);*/
    border-radius: 12px;
    background-image: linear-gradient(to right, rgb(58 134 245 / 20%), rgb(36 206 238 / 40%));
    padding: 0.85rem 1rem;
    /*border: 1px solid rgba(59, 130, 246, 0.1);*/
}

.metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--blue-primary), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.metric-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.metric-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
}

section {
    padding: 2rem 0;
}

/*section:nth-child(odd) {*/
/*    background:#0e1637;*/
/*}*/

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--blue-light);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
}

.section-divider {
    height: 60px;
    width: 100%;
    background-image: linear-gradient(to bottom, #174564, var(--bg-dark-section));
    clip-path: polygon(-.008% 78.072%, 9.847% 78.072%, 9.847% 78.072%, 10.527% 77.753%, 11.192% 76.812%, 11.837% 75.272%, 12.458% 73.158%, 13.05% 70.493%, 13.608% 67.301%, 14.127% 63.607%, 14.604% 59.433%, 15.033% 54.804%, 15.409% 49.745%, 16.827% 28.328%, 16.827% 28.328%, 17.204% 23.268%, 17.633% 18.639%, 18.109% 14.465%, 18.629% 10.771%, 19.187% 7.579%, 19.779% 4.914%, 20.4% 2.8%, 21.045% 1.26%, 21.71% .319%, 22.389% 0, 77.603% 0, 77.603% 0, 78.282% .319%, 78.947% 1.26%, 79.592% 2.8%, 80.213% 4.914%, 80.805% 7.579%, 81.363% 10.771%, 81.883% 14.465%, 82.359% 18.639%, 82.788% 23.268%, 83.165% 28.328%, 84.583% 49.745%, 84.583% 49.745%, 84.959% 54.804%, 85.388% 59.433%, 85.865% 63.607%, 86.384% 67.301%, 86.942% 70.493%, 87.534% 73.158%, 88.155% 75.272%, 88.8% 76.812%, 89.465% 77.753%, 90.144% 78.072%, 100% 78.072%, 100% 100%, -.008% 100%, -.008% 78.072%);
    padding: 8px 0 0 0;
}

.section-divider.inversed,
.section-divider.inversed > * {
    transform: rotate(180deg);
}

.service-card {
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2rem;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0c1f2e 0%, #1c4276 100%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-primary), var(--cyan));
    opacity: 0;
    transition: opacity 0.25s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #163955 0%, #275aa0 100%);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card h3 {
    font-size:1.5em !important;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--blue-light);
    margin-bottom: 1.2rem;
    transition: background 0.25s;
}

.service-card:hover .service-icon {
    background: rgba(59, 130, 246, 0.2);
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.bi-check-circle-fill::before {
    color: #2eabf1;
    font-size: 0.8em;
}

.fs-7 {
    font-size: .9rem !important;
}

@media (min-width:1200px) {
    .pill-cols .col {
        min-width: 280px;
    }
}
@media (min-width:768px) and (max-width:1199px) {
    .pill-cols .col {
        min-width: 300px;
    }
}
@media (max-width:767px) {
    .pill-cols .col {
        min-width: 100%;
    }
}

.pill {
    border-radius: 20px;
    border-width: 1px;
    border-style: solid;
    background-image: linear-gradient(330deg, var(--pill-bg-start), var(--pill-bg-end));
    text-transform: uppercase;
    font-size: .85em;
    font-weight: bolder;
    color: #2883b7;
    min-width: max-content;
}

.pill:hover {
    cursor:default;
    color:white;
    border-color:#b7a7e6;
    animation:pillHover .2s normal forwards ease-in-out;
    box-shadow:#565656 0 2px 5px;
    --pill-bg-start:#7d85c8;
    --pill-bg-end:#299acb;
}

@keyframes pillHover {
    0% {
        margin-top:0;
    }
    100% {
        margin-top:-2px;
    }
}

.portfolio-card {
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: transform 0.25s, box-shadow 0.25s;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 30, 0.5);
}

.portfolio-thumb {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.portfolio-thumb.blue {
    background: linear-gradient(135deg, #0f1535 0%, #1e3a8a 100%);
}

.portfolio-thumb.purple {
    background: linear-gradient(135deg, #0f0f2e 0%, #4c1d95 100%);
}

.portfolio-thumb.teal {
    background: linear-gradient(135deg, #0c1f2e 0%, #0e7490 100%);
}

.portfolio-thumb.indigo {
    background: linear-gradient(135deg, #111827 0%, #3730a3 100%);
}

.portfolio-thumb.green {
    background: linear-gradient(135deg, #052e16 0%, #166534 100%);
}

.portfolio-thumb.rose {
    background: linear-gradient(135deg, #1c0000 0%, #9f1239 100%);
}

.portfolio-body {
    padding: 1.25rem 1.5rem;
}

.portfolio-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.4rem;
}

.portfolio-body h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.portfolio-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.12);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-primary), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.team-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.82rem;
    color: var(--blue-light);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-socials a {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0 0.3rem;
    transition: color 0.2s;
}

.team-socials a:hover {
    color: var(--blue-light);
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(59, 130, 246, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: rgba(241, 245, 249, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-primary), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    flex-shrink: 0;
}

.author-name {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cta-section {
    /*background: radial-gradient(var(--bg-dark-section) 50%, var(--bg-card) 100%);*/
    background: linear-gradient(135deg, #0c1f2e 0%, #1c4276 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.page-pulsen {
    padding: calc(var(--nav-height) + 2rem) 0 2rem;
    background: var(--bg-dark);
    background-image:linear-gradient(150deg, #1ec6e8 0%, var(--bg-dark) 50%, #c1adeb 100%);
    background-size:cover;
    background-repeat:no-repeat;
    background-position-y:76%;
    /* background-image:url('/img/bg-spi.svg'); */
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pulsen-page-title {
    padding: calc(var(--nav-height) + 2rem) 0 2rem;
    background-image:url('/img/bg-spi.svg');
    background-repeat:no-repeat;
    background-size:cover;
    background-position-y:20%;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 30, 0.5);
}

.blog-thumb {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.blog-thumb.bg-1 {
    background: linear-gradient(135deg, #0f1535, #1e3a8a);
}

.blog-thumb.bg-2 {
    background: linear-gradient(135deg, #0f1020, #312e81);
}

.blog-thumb.bg-3 {
    background: linear-gradient(135deg, #0c1f2e, #164e63);
}

.blog-body {
    padding: 1.5rem;
}

.blog-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.5rem;
}

.blog-body h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-body p {
    font-size: 0.87rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}

.blog-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.contact-card {
    background: rgb(29 63 231 / 19%);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2rem;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
    opacity:.7;
}

.form-control-dark {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-white);
    padding: 0.75rem 1rem;
    transition: border-color 0.2s, background 0.2s;
}

.form-control-dark:focus {
    background: rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.45);
    color: var(--text-white);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
    outline: none;
}

.form-control-dark::placeholder {
    color: var(--text-muted);
}

.form-label-dark {
    color: rgba(241, 245, 249, 0.75);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgb(29 197 231 / 19%);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    margin-bottom: 1rem;
}

.contact-info-icon {
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.12);
    font-size: 2em;
    color: var(--blue-light);
}

.contact-info-label {
    font-size: 0.78rem;
    margin-bottom: 0.2rem;
}

.contact-info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
}

.site-footer {
    background: #07090f;
    border-top: 1px solid var(--border-color);
}

footer a > .bi {
    vertical-align:middle;
}

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

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--blue-light);
}

.footer-link-inline {
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-link-inline:hover {
    color: var(--blue-light);
}

.footer-divider {
    border-color: var(--border-color);
    margin: 0;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.14);
    color: var(--blue-light);
    border-color: rgba(59, 130, 246, 0.3);
}

.text-muted-custom {
    color: var(--text-muted) !important;
}

.bg-dark-section {
    background-color: var(--bg-dark-section);
}

.badge-tech {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--blue-light);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    padding: 0.25rem 0.6rem;
}

/* Alert / notifications */
.alert-success-dark {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.5);
}

@media (max-width: 991.98px) {
    #navbarMenu {
        border-radius: 14px;
        padding: 1rem 0;
    }

    .pulsen-visual {
        margin-top: 3rem;
    }

    .pulsen-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .pulsen-title {
        font-size: 2.4rem;
    }

    .pulsen-stats {
        flex-direction: column;
        gap: 1rem;
    }

    section {
        padding: 4rem 0;
    }
}
