/* ─── INNER HERO (dark editorial) — partagé entre toutes les pages intérieures ─── */
.int-hero {
    position: relative;
    background: #0b1726;
    color: #ffffff;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* blueprint line-grid */
.int-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: linear-gradient(165deg, #000 30%, transparent 88%);
    mask-image: linear-gradient(165deg, #000 30%, transparent 88%);
}

/* blue glow */
.int-hero::after {
    content: '';
    position: absolute;
    left: -180px;
    bottom: -240px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 91, 255, 0.42), transparent 62%);
    filter: blur(30px);
    pointer-events: none;
}

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

.int-hero-inner {
    position: relative;
    max-width: 790px;
    padding: 58px 0 68px;
}

@media (max-width: 820px) {
    .int-hero-inner {
        padding: 48px 0 58px;
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    background: transparent;
    padding: 0;
    height: auto;
    box-shadow: none;
    position: relative;
    animation: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.15s;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb svg {
    width: 14px;
    height: 14px;
    opacity: 0.55;
}

.breadcrumb .crumb-cur {
    color: #7e9cff;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(46, 91, 255, 0.18);
    color: #a8bcff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pill .dot,
.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2e5bff;
}

.int-hero h1 {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 5.4vw, 62px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.08;
    margin: 20px 0 0;
}

.int-hero h1 .blue {
    color: #7e9cff;
}

.lede {
    color: rgba(255, 255, 255, 0.66);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
    margin: 22px 0 0;
    max-width: 610px;
}

/* big translucent glyph, right side */
.int-hero-glyph {
    position: absolute;
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 330px;
    height: 330px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.055);
    pointer-events: none;
}

.int-hero-glyph svg,
.int-hero-glyph i {
    width: 100%;
    height: 100%;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 820px) {
    .int-hero-glyph {
        width: 240px;
        height: 240px;
        right: -50px;
        opacity: 0.6;
    }
}

@media (max-width: 600px) {
    .int-hero-glyph {
        display: none;
    }
}
