.doc-wrap {
    background: var(--white);
    min-height: 100vh;
}

/* ── BREADCRUMB ── */
.sim-breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.sim-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.sim-breadcrumb a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.sim-breadcrumb a:hover {
    color: var(--primary-color);
}

.sim-breadcrumb .sep {
    color: var(--text-light-muted);
}

.sim-breadcrumb .current {
    color: var(--primary-color);
    font-weight: 600;
}

/* ── HERO METADATA GRID (Style épuré, light theme) ── */
.hero-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 32px auto 0;
}

.meta-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.meta-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.meta-date {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

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

/* ── DOCUMENTATION LAYOUT (2 Columns) ── */
.doc-layout-container {
    padding: 50px 0 80px;
    background: var(--white);
}

.doc-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

/* ── SIDEBAR NAVIGATION (Desktop) ── */
.doc-sidebar {
    position: sticky;
    top: 110px;
    /* Aligned with standard spacing below header */
    z-index: 10;
    background: var(--white);
}

.doc-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 2px solid var(--border-color);
    padding: 4px 0;
}

.doc-nav-item {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 20px;
    cursor: pointer;
    border-left: 2px solid transparent;
    margin-left: -2px;
    /* overlap border-left of .doc-nav */
    transition: var(--transition-fast);
    line-height: 1.4;
    white-space: normal;
}

.doc-nav-item:hover {
    color: var(--primary-color);
    background: var(--bg-beige);
}

.doc-nav-item.active {
    color: var(--primary-color);
    /* Brand Dark Blue (#133454) */
    font-weight: 700;
    border-left-color: var(--primary-color);
    background: rgba(19, 52, 84, 0.02);
}

/* ── SIDEBAR CTA ── */
.sidebar-cta {
    margin-top: 32px;
    padding: 24px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e456d 100%);
    border-radius: var(--radius-md);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(19, 52, 84, 0.12);
}

.sidebar-cta h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.sidebar-cta p {
    font-size: 0.85rem;
    color: var(--accent-light);
    line-height: 1.5;
    margin-bottom: 18px;
}

.btn-sidebar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
    padding: 10px 16px;
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--white);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-sidebar-cta:hover {
    background: var(--primary-light);
    color: var(--white);
    border-color: var(--primary-light);
}

/* ── MOBILE DROPDOWN ── */
.doc-mobile-nav {
    display: none;
    margin-bottom: 32px;
    position: sticky;
    top: 84px;
    /* sticky mobile dropdown below mobile main header */
    z-index: 95;
    background: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.select-wrapper {
    position: relative;
    width: 100%;
}

#doc-mobile-select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    /* 8px standard */
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

#doc-mobile-select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(116, 167, 201, 0.15);
}

.select-arrow {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 8px;
    height: 8px;
    pointer-events: none;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: translateY(-70%) rotate(45deg);
    transition: var(--transition-fast);
}

/* ── READER CONTENT AREA (75%) ── */
.doc-reader {
    min-width: 0;
    /* Prevent grid breakout */
}

.panel {
    display: block;
    background: var(--white);
    padding-top: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
}

.panel:first-of-type {
    padding-top: 0;
}

.panel:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

/* Limit text max-width for comfortable reading */
.doc-reader .panel .container {
    max-width: 750px;
    padding: 0;
    margin: 0;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.section-head {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 16px;
    max-width: 800px;
    letter-spacing: -0.5px;
}

.lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 850px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.subhead {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--primary-color);
    margin: 40px 0 20px;
    letter-spacing: -0.3px;
}

/* ── CARDS GRID ── */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.panel:nth-of-type(even) .card {
    background: var(--white);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.card-ico {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(116, 167, 201, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.card:hover .card-ico {
    background: var(--primary-light);
    color: var(--white);
}

.card-ico svg {
    width: 24px;
    height: 24px;
}

.card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── TIMELINE ── */
.timeline {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.tl-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.tl-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.tl-date {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    background: var(--primary-color);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    white-space: nowrap;
}

.tl-body strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light);
    margin-bottom: 8px;
    font-weight: 700;
}

.tl-body p {
    font-size: 0.98rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ── ACCORDION ── */
.acc {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--white);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.acc:hover {
    border-color: var(--primary-light);
}

.acc-h {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}

.acc-h:hover {
    background: rgba(116, 167, 201, 0.05);
}

.acc-t {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--primary-color);
}

.fe-frequent-situations .acc-t {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fe-frequent-situations .sector-ico {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.acc-ico {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary-light);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.acc.open .acc-ico {
    transform: rotate(90deg);
}

.acc-b {
    display: none;
    padding: 0 24px 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    border-top: 1px solid transparent;
}

.acc.open .acc-b {
    display: block;
    padding-top: 16px;
    border-top-color: rgba(19, 52, 84, 0.05);
}

.acc-b ul,
.acc-b ol {
    margin: 12px 0 12px 20px;
}

.acc-b li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

.acc-b p {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.acc-b strong {
    font-weight: 600;
    color: var(--primary-color);
}

.acc-b em {
    font-style: italic;
}

.acc-b h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0 10px;
}

/* ── NOTES ── */
.note {
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.note-info {
    background: rgba(116, 167, 201, 0.08);
    border-left: 4px solid var(--primary-light);
    color: var(--primary-color);
}

.note-warn {
    background: #FFF9E6;
    border-left: 4px solid #F5B041;
    color: #7D6608;
}

.note-alert {
    background: #FDEDEC;
    border-left: 4px solid var(--secondary-color);
    color: var(--secondary-color);
}

/* ── TABLE ── */
.tbl-wrap {
    margin-top: 24px;
    margin-bottom: 32px;
    overflow-x: auto;
}

.tbl-wrap h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

table.data {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

table.data th {
    background: var(--primary-color);
    color: var(--white);
    text-align: left;
    padding: 12px 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

table.data td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
    color: var(--text-dark);
}

table.data tr:last-child td {
    border-bottom: none;
}

table.data tr:hover td {
    background: rgba(116, 167, 201, 0.05);
}

/* ── MENTIONS GRID ── */
.mentions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.m-item {
    font-size: 0.92rem;
    display: flex;
    gap: 12px;
    align-items: center;
    line-height: 1.5;
    background: var(--bg-beige);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.m-num {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--white);
    background: var(--primary-light);
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── CALENDRIER — 2 colonnes ── */
.fe-cal-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 48px;
    margin-bottom: 40px;
}

.fe-cal-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(19, 52, 84, 0.06);
    box-shadow: 0 4px 20px -4px rgba(12, 43, 74, 0.06);
}

@media (max-width: 768px) {
    .fe-cal-stack {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.fe-cal-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.fe-cal-year {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.fe-cal-day {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.fe-cal-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.3;
}

.fe-cal-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── DISPOSITIFS GRID (2 col with icon) ── */
.fe-disp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .fe-disp-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.fe-disp-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(19, 52, 84, 0.06);
    height: 100%;
}

.fe-disp-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.fe-disp-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fe-disp-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.5;
}

.fe-disp-content {
    width: 100%;
}

.fe-disp-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin: 0 0 16px 0;
}

.fe-disp-content p:last-child {
    margin-bottom: 0;
}

/* ── PERIMETRE GRID 2-col ── */
.fe-perimetre-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .fe-perimetre-grid {
        grid-template-columns: 1fr;
    }
}

.fe-perimetre-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(19, 52, 84, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fe-perimetre-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fe-perimetre-card.in-scope h3 {
    color: var(--primary-color);
}

.fe-perimetre-card.out-scope h3 {
    color: var(--secondary-color);
}

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

.fe-perimetre-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.fe-perimetre-list li:last-child {
    margin-bottom: 0;
}

.fe-perimetre-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.in-scope .fe-perimetre-list li::before {
    background-color: var(--primary-light);
}

.out-scope .fe-perimetre-list li::before {
    background-color: var(--secondary-color);
}

.fe-perimetre-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Focus — Premium bullet list */
.fe-focus-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 24px;
}

.fe-focus-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.fe-focus-list li {
    padding: 24px 0;
    border-bottom: 1px solid rgba(19, 52, 84, 0.06);
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.fe-focus-list li:first-child {
    border-top: 1px solid rgba(19, 52, 84, 0.06);
}

.fe-focus-list li strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

/* ── OBLIGATIONS ── */
.fe-oblig-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.fe-oblig-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.fe-oblig-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(19, 52, 84, 0.08);
    box-shadow: var(--shadow-sm);
    width: 100%;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fe-oblig-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.fe-oblig-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
    line-height: 1.4;
    padding-right: 220px;
    /* Assure de l'espace pour les badges larges */
}

@media (max-width: 768px) {
    .fe-oblig-card {
        padding: 24px 20px;
    }

    .fe-oblig-card h3 {
        padding-right: 0;
        margin-top: 36px;
        /* Place du badge au-dessus du titre sur mobile */
    }
}

/* Badges de couleur vive en haut à droite */
.fe-oblig-badge {
    position: absolute;
    top: 24px;
    right: 36px;
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.fe-oblig-badge.badge-blue {
    background-color: var(--primary-color);
    /* Bleu corporate de Cogeflandre */
}

.fe-oblig-badge.badge-blue-light {
    background-color: var(--primary-light);
    /* Bleu clair/moyen */
}

.fe-oblig-badge.badge-grey {
    background-color: #e9ecef;
    /* Gris clair */
    color: var(--primary-color);
    /* Texte sombre pour bon contraste */
    border: 1px solid rgba(19, 52, 84, 0.12);
    box-shadow: none;
}

@media (max-width: 768px) {
    .fe-oblig-badge {
        top: 20px;
        left: 20px;
        right: auto;
        display: inline-block;
        width: max-content;
    }
}

.fe-oblig-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.fe-oblig-card ul li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
}

.fe-oblig-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-light);
}

/* ── MENTIONS — Vagues ── */
.fe-mentions-intro {
    max-width: 900px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.fe-mentions-intro strong {
    color: var(--text-dark);
    font-weight: 600;
}

.fe-priority-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.fe-priority-list li {
    font-size: 0.88rem;
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 18px;
    background-color: rgba(116, 167, 201, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(116, 167, 201, 0.15);
}

.fe-vagues-wrapper {
    margin-top: 40px;
}

.fe-vague {
    margin-bottom: 40px;
    padding: 36px 32px;
    background-color: var(--bg-beige);
    border-radius: var(--radius-md);
    border: 1px solid rgba(19, 52, 84, 0.06);
}

.fe-vague h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.fe-vague-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.fe-vague-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 6px 14px;
    background-color: rgba(116, 167, 201, 0.08);
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .fe-vague-list li {
        white-space: normal;
    }
}

.fe-secret-note {
    background: linear-gradient(135deg, rgba(116, 167, 201, 0.06) 0%, rgba(116, 167, 201, 0.02) 100%);
    border-left: 4px solid var(--primary-light);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 24px 28px;
    margin-top: 32px;
}

.fe-secret-note p {
    color: var(--text-dark);
    font-weight: 400;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
}

.fe-secret-note strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ── SECTION 4 — PLAN D'ACTION ── */
.fe-action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .fe-action-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.fe-action-card {
    background-color: var(--bg-beige);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(19, 52, 84, 0.06);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.fe-action-card .fe-action-step {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.fe-action-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
    line-height: 1.4;
}

.fe-action-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── SECTION 5 — PENNYLANE ── */
.fe-pl-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0 0 24px 0;
}

.fe-pl-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

.fe-pl-features {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fe-pl-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid rgba(19, 52, 84, 0.06);
}

.fe-pl-features li:last-child {
    padding-bottom: 0;
}

.fe-pl-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--primary-light);
    margin-top: 1px;
}

.fe-pl-features li div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fe-pl-features li strong {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--primary-color);
}

.fe-pl-features li span {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── VIDEO ── */
.video {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin: 24px 0;
    box-shadow: var(--shadow-md);
}

.video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 860px) {
    .hero-meta-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .doc-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .doc-sidebar {
        display: none;
    }

    .doc-mobile-nav {
        display: block;
    }
}
