:root {
    --bg: #030712;
    --bg-soft: #07111f;
    --panel: rgba(255, 255, 255, 0.075);
    --panel-strong: rgba(255, 255, 255, 0.12);
    --line: rgba(255, 255, 255, 0.14);
    --text: #f8fbff;
    --muted: #aebbd0;
    --violet: #9b35ff;
    --blue: #1b78ff;
    --cyan: #22d3ee;
    --green: #63d947;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 8%, rgba(155, 53, 255, 0.3), transparent 30%),
        radial-gradient(circle at 92% 28%, rgba(34, 211, 238, 0.2), transparent 28%),
        linear-gradient(135deg, #020617 0%, #05111f 46%, #071222 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(3, 7, 18, 0.64);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
}

.navbar {
    min-height: 88px;
}

.site-header .container,
.hero-container {
    max-width: 1660px;
}

.brand-lockup img {
    width: 216px;
    height: auto;
    display: block;
}

.navbar-nav {
    gap: 1.15rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(248, 251, 255, 0.76);
    font-size: 1.03rem;
    font-weight: 800;
    padding: 0.75rem 0.45rem;
    transition: color 0.2s ease, background 0.2s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff;
    background: transparent;
}

.nav-link-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
}

.btn {
    border-radius: var(--radius);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 46px;
    white-space: normal;
}

.btn-primary-glow {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, var(--violet), var(--blue) 58%, var(--cyan));
    box-shadow: 0 14px 34px rgba(155, 53, 255, 0.34);
}

.btn-primary-glow:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(34, 211, 238, 0.24);
}

.btn-glass,
.btn-ghost {
    color: #ffffff;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(16px);
}

.btn-glass:hover,
.btn-ghost:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.nav-cta {
    min-width: 250px;
    min-height: 54px;
    padding-inline: 1.35rem;
    text-align: center;
}

.section-band {
    position: relative;
    padding: 108px 0;
}

.hero-section {
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: flex-start;
    padding: 34px 0 0;
    overflow: hidden;
}

.ambient-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 88%);
}

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

.hero-copy {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.hero-pills,
.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.8rem;
}

.hero-pills {
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-pills span,
.compliance-badges span,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #dfffee;
    border: 1px solid rgba(99, 217, 71, 0.24);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 0.62rem 1.05rem;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-pills span + span {
    color: #d9e4ff;
    border-color: rgba(155, 53, 255, 0.28);
    background: rgba(155, 53, 255, 0.12);
}

.hero-title {
    font-size: 6.45rem;
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: 0;
    margin-bottom: 2rem;
}

.hero-title span {
    display: block;
    margin-top: 0.2rem;
    font-size: inherit;
    background: linear-gradient(100deg, #ffffff 0%, #ba75ff 42%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    color: var(--muted);
    font-size: 1.35rem;
    line-height: 1.62;
    max-width: 1050px;
    margin: 0 auto 3.25rem;
}

.hero-subtitle strong {
    color: var(--text);
    font-weight: 900;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.hero-actions .btn {
    min-width: 278px;
    padding: 1rem 1.6rem;
}

.hero-showcase-slot {
    display: block;
    max-width: 1280px;
    margin: 5.4rem auto -92px;
    padding: 0 1.2rem;
}

.product-showcase {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(9, 18, 34, 0.82);
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: none;
}

.window-top {
    height: 58px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
}

.window-top span {
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

.window-top span:nth-child(1) { background: #ff5f57; }
.window-top span:nth-child(2) { background: #ffbd2e; }
.window-top span:nth-child(3) { background: #28c840; }

.window-top strong {
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.86rem;
}

.dashboard-preview {
    position: relative;
    display: grid;
    grid-template-columns: 232px 1fr;
    min-height: 510px;
    padding-top: 36px;
    color: #172033;
    background:
        radial-gradient(circle at 82% 18%, rgba(34, 211, 238, 0.12), transparent 30%),
        #f7f4ff;
}

.dashboard-preview::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 36px;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.22) 1px, transparent 1.5px),
        linear-gradient(90deg, #9b35ff, #7d37f4 62%, #5b7cff);
    background-size: 18px 18px, auto;
}

.preview-sidebar {
    border-right: 1px solid rgba(32, 42, 68, 0.09);
    padding: 1.35rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.76);
}

.preview-sidebar img {
    width: 84px;
    margin-bottom: 1rem;
}

.preview-sidebar span {
    height: 12px;
    border-radius: 999px;
    background: rgba(102, 111, 136, 0.16);
}

.preview-content {
    padding: 1.7rem 2rem 2rem;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.preview-header small,
.metric-grid small {
    color: #6f7890;
    display: block;
}

.preview-header strong {
    display: block;
    color: #8635f6;
    font-size: 2rem;
    line-height: 1.15;
}

.status-dot {
    align-self: start;
    color: #ffffff;
    background: linear-gradient(135deg, var(--violet), var(--blue));
    border: 1px solid rgba(155, 53, 255, 0.22);
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    font-weight: 800;
    font-size: 0.82rem;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.3rem;
}

.metric-grid div {
    min-width: 0;
    border: 1px solid rgba(75, 86, 112, 0.12);
    border-radius: var(--radius);
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 34px rgba(40, 28, 85, 0.08);
}

.metric-grid strong {
    display: block;
    color: #151927;
    font-size: 1.25rem;
}

.chart-bars {
    height: 178px;
    display: flex;
    align-items: end;
    gap: 0.7rem;
    padding: 1rem;
    border: 1px solid rgba(75, 86, 112, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
}

.chart-bars span {
    flex: 1;
    min-width: 10px;
    border-radius: 999px 999px 4px 4px;
    background: linear-gradient(to top, var(--blue), var(--cyan));
    box-shadow: 0 0 26px rgba(34, 211, 238, 0.25);
}

.floating-proof {
    position: absolute;
    left: 24px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    padding: 0.75rem 0.9rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    font-weight: 900;
}

.section-heading {
    text-align: center;
    max-width: 790px;
    margin: 0 auto 3.2rem;
}

.section-heading span {
    display: inline-flex;
    color: var(--cyan);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin-bottom: 1rem;
}

.section-heading h2,
.manual-panel h2 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

.section-heading p,
.manual-panel p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.screenshot-grid,
.feature-grid,
.pricing-grid,
.testimonial-grid,
.client-grid,
.forms-grid {
    display: grid;
    gap: 1.1rem;
}

.screenshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.screenshot-card,
.feature-card,
.pricing-card,
.testimonial-card,
.client-card,
.form-panel,
.manual-panel,
.fac-accordion .accordion-item,
.compliance-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(18px);
}

.screenshot-card {
    overflow: hidden;
}

.screenshot-card img,
.placeholder-ui {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.screenshot-card:hover img,
.screenshot-card:hover .placeholder-ui {
    transform: scale(1.045);
    filter: saturate(1.15);
}

.screenshot-caption {
    position: relative;
    padding: 1.15rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
}

.screenshot-caption h3,
.feature-card h3,
.compliance-item h3,
.client-card h3,
.form-heading h3,
.pricing-card h3 {
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 0.4rem;
}

.screenshot-caption p,
.feature-card p,
.compliance-item p,
.client-card p,
.form-heading p,
.pricing-card p {
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.placeholder-ui {
    padding: 1.2rem;
    background:
        linear-gradient(135deg, rgba(155, 53, 255, 0.28), rgba(34, 211, 238, 0.18)),
        #0b1424;
}

.placeholder-ui span {
    display: block;
    height: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 0.9rem;
}

.placeholder-ui span:nth-child(1) { width: 62%; }
.placeholder-ui span:nth-child(2) { width: 84%; }
.placeholder-ui span:nth-child(3) { width: 48%; }

.placeholder-ui div {
    height: 42%;
    margin-top: 1.4rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
}

.placeholder-ui.variant {
    background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.22), rgba(99, 217, 71, 0.18)),
        #0b1424;
}

.features-band,
.pricing-band {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.04));
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.pricing-card,
.testimonial-card,
.form-panel {
    padding: 1.35rem;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.feature-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.client-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.42);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon,
.form-heading > i {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    margin-bottom: 1rem;
    box-shadow: 0 0 34px rgba(34, 211, 238, 0.2);
}

.compliance-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 2rem;
    align-items: center;
}

.compliance-list {
    display: grid;
    gap: 0.85rem;
}

.compliance-item {
    padding: 1rem;
    display: flex;
    gap: 0.95rem;
}

.compliance-item > i {
    color: var(--green);
    font-size: 1.35rem;
    flex: 0 0 auto;
}

.client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.client-card {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 112px;
}

.client-card img,
.client-card strong,
.testimonial-author img,
.testimonial-author span {
    width: 58px;
    height: 58px;
    border-radius: var(--radius);
    object-fit: contain;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
}

.client-card strong,
.testimonial-author span {
    color: #ffffff;
    font-weight: 950;
    background: linear-gradient(135deg, rgba(27, 120, 255, 0.75), rgba(99, 217, 71, 0.55));
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.pricing-card.featured {
    border-color: rgba(34, 211, 238, 0.5);
    background:
        linear-gradient(180deg, rgba(155, 53, 255, 0.16), rgba(34, 211, 238, 0.08)),
        rgba(255, 255, 255, 0.085);
}

.plan-badge {
    align-self: flex-start;
    color: #041017;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 950;
    margin-bottom: 1rem;
}

.plan-price {
    margin: 1.25rem 0;
}

.plan-price strong {
    display: block;
    font-size: 2.1rem;
    line-height: 1;
}

.plan-price span {
    color: var(--muted);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.3rem;
    display: grid;
    gap: 0.7rem;
}

.pricing-card li {
    color: #dfe8f6;
    display: flex;
    gap: 0.55rem;
}

.pricing-card li i {
    color: var(--green);
}

.pricing-card .btn {
    margin-top: auto;
}

.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rating {
    color: #ffd166;
    font-weight: 900;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    color: #e7edf8;
    margin: 0 0 1.3rem;
    line-height: 1.7;
}

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

.testimonial-author strong,
.testimonial-author small {
    display: block;
}

.testimonial-author small {
    color: var(--muted);
}

.fac-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.fac-accordion .accordion-item {
    color: var(--text);
    overflow: hidden;
    margin-bottom: 0.85rem;
}

.fac-accordion .accordion-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.065);
    box-shadow: none;
    font-weight: 900;
    padding: 1.15rem;
}

.fac-accordion .accordion-button::after {
    filter: invert(1);
}

.fac-accordion .accordion-body {
    color: var(--muted);
    line-height: 1.7;
    background: rgba(0, 0, 0, 0.12);
}

.manual-panel {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background:
        linear-gradient(135deg, rgba(155, 53, 255, 0.16), rgba(34, 211, 238, 0.1)),
        var(--panel);
}

.manual-panel h2 {
    max-width: 740px;
}

.manual-panel .eyebrow {
    margin-bottom: 1rem;
}

.forms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-heading {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.form-heading > i {
    flex: 0 0 44px;
}

.field-group {
    margin-bottom: 1rem;
}

.field-group label {
    display: block;
    color: #dfe8f6;
    font-weight: 800;
    margin-bottom: 0.45rem;
}

.glass-input {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    min-height: 48px;
}

.glass-input:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(34, 211, 238, 0.62);
    box-shadow: 0 0 0 0.25rem rgba(34, 211, 238, 0.16);
}

.glass-input::placeholder {
    color: rgba(223, 232, 246, 0.52);
}

textarea.glass-input {
    min-height: 130px;
}

.field-error {
    display: block;
    color: #ffb4b4;
    margin-top: 0.35rem;
}

.flash-stack {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1040;
    width: min(420px, calc(100vw - 40px));
}

.glass-alert {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(10, 20, 36, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.site-footer {
    padding: 46px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.18);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 1.4rem;
}

.footer-logo {
    width: 170px;
    margin-bottom: 1rem;
}

.site-footer p,
.site-footer a {
    color: var(--muted);
}

.site-footer a {
    display: block;
    margin-bottom: 0.45rem;
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-title {
    display: block;
    color: #ffffff;
    font-weight: 950;
    margin-bottom: 0.8rem;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        padding: 1rem 0 1.2rem;
    }

    .navbar-nav {
        gap: 0.25rem;
    }

    .nav-cta {
        width: 100%;
        margin-top: 0.6rem;
    }

    .hero-title {
        font-size: 5.35rem;
    }

    .feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-showcase {
        transform: none;
    }
}

@media (max-width: 991.98px) {
    .section-band {
        padding: 82px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 78px 0 92px;
    }

    .hero-title {
        font-size: 4.35rem;
    }

    .hero-subtitle {
        font-size: 1.18rem;
    }

    .screenshot-grid,
    .pricing-grid,
    .testimonial-grid,
    .forms-grid,
    .compliance-layout {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .manual-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .brand-lockup img {
        width: 168px;
    }

    .navbar {
        min-height: 72px;
    }

    .section-band {
        padding: 68px 0;
    }

    .hero-title {
        font-size: 3.05rem;
    }

    .hero-title span {
        font-size: inherit;
    }

    .hero-pills {
        margin-bottom: 2rem;
    }

    .hero-actions .btn {
        min-width: 0;
    }

    .hero-actions .btn,
    .manual-panel .btn {
        width: 100%;
    }

    .dashboard-preview {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .preview-sidebar {
        display: none;
    }

    .preview-content {
        padding: 1rem;
    }

    .metric-grid,
    .feature-grid,
    .client-grid {
        grid-template-columns: 1fr;
    }

    .chart-bars {
        height: 136px;
    }

    .floating-proof {
        position: static;
        margin: 1rem;
    }

    .manual-panel,
    .form-panel,
    .pricing-card,
    .testimonial-card,
    .feature-card {
        padding: 1rem;
    }
}

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

/* MODIFIÉ - Section institutionnelle d'homologation DGI-RDC pour FacControl. */
.fc-dgi-section {
    position: relative;
    padding: 88px 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(48, 18, 82, 0.46), rgba(3, 9, 22, 0.88) 42%, rgba(0, 26, 34, 0.68)),
        var(--fc-bg-secondary, #070b18);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fc-dgi-section .fc-container {
    width: min(100% - 64px, 1420px);
}

.fc-dgi-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
    background-size: 72px 72px, 72px 72px;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.fc-dgi-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(56, 189, 248, 0.1) 1.5px, transparent 1.5px);
    background-position: 42px 42px;
    background-size: 84px 84px;
    opacity: 0.42;
}

.fc-dgi-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(520px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(48px, 4vw, 76px);
    align-items: center;
    min-height: 622px;
    padding: clamp(56px, 4.6vw, 82px) clamp(56px, 4.8vw, 88px);
    border: 1px solid rgba(14, 165, 233, 0.13);
    border-radius: 32px;
    background:
        linear-gradient(112deg, rgba(9, 45, 83, 0.9), rgba(17, 34, 83, 0.88) 48%, rgba(0, 78, 88, 0.76)),
        rgba(8, 20, 42, 0.94);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.fc-dgi-layout::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(rgba(56, 189, 248, 0.12) 1.5px, transparent 1.5px);
    background-position: 0 0, 0 0, 43px 43px;
    background-size: 86px 86px, 86px 86px, 86px 86px;
    opacity: 0.44;
}

/* MODIFIÉ - Cartes logos officielles, lisibles sur fond sombre premium. */
.fc-dgi-logos {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 2.2vw, 34px);
    align-items: center;
    align-self: center;
}

.fc-dgi-logo-card {
    position: relative;
    min-height: 166px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(22px, 2vw, 32px);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 20px;
    background: #dfe9f1;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.fc-dgi-logo-card:hover {
    transform: translateY(-3px);
    border-color: rgba(125, 211, 252, 0.78);
    box-shadow: 0 28px 70px rgba(14, 165, 233, 0.18);
}

.fc-dgi-logo-card img {
    width: 100%;
    max-height: 112px;
    object-fit: contain;
}

.fc-dgi-content {
    position: relative;
    max-width: 900px;
    align-self: center;
}

.fc-dgi-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    margin-bottom: 24px;
    padding: 0 18px;
    border: 1px solid rgba(56, 189, 248, 0.26);
    border-radius: 999px;
    color: #38c7ff;
    background: rgba(14, 165, 233, 0.12);
    font-size: 1rem;
    font-weight: 800;
}

.fc-dgi-eyebrow::before {
    content: "";
    width: 11px;
    height: 11px;
    margin-right: 12px;
    border-radius: 999px;
    background: #b5a33b;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.28);
}

.fc-dgi-content h2 {
    margin: 0 0 26px;
    color: var(--fc-text, #ffffff);
    font-size: clamp(2.35rem, 3.15vw, 3.45rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.fc-dgi-content h2 span {
    color: #38c7ff;
}

.fc-dgi-content p {
    margin: 0;
    color: #d4dbe8;
    font-size: clamp(1.08rem, 1.36vw, 1.23rem);
    line-height: 1.64;
    font-weight: 500;
}

.fc-dgi-content p strong {
    color: #ffffff;
    font-weight: 900;
}

.fc-dgi-content p mark {
    padding: 0;
    color: #ffc820;
    background: transparent;
    font-weight: 900;
}

.fc-dgi-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.fc-dgi-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(56, 189, 248, 0.24);
    border-radius: 999px;
    color: #38c7ff;
    background: rgba(14, 165, 233, 0.13);
    font-size: 0.96rem;
    font-weight: 800;
}

.fc-dgi-badges span::before {
    content: "✓";
    margin-right: 8px;
    color: #7dd3fc;
    font-size: 1.05em;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .fc-dgi-section {
        padding: 86px 0;
    }

    .fc-dgi-layout {
        grid-template-columns: 1fr;
        gap: 38px;
        min-height: 0;
        padding: 36px;
    }

    .fc-dgi-logos {
        max-width: 760px;
    }

    .fc-dgi-content {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .fc-dgi-section {
        padding: 72px 0;
    }

    .fc-dgi-section .fc-container {
        width: min(100% - 32px, 1420px);
    }

    .fc-dgi-layout {
        padding: 24px;
        border-radius: 22px;
    }

    .fc-dgi-logos {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .fc-dgi-logo-card {
        min-height: 138px;
        padding: 18px;
        border-radius: 16px;
    }

    .fc-dgi-logo-card img {
        max-height: 94px;
    }

    .fc-dgi-eyebrow {
        min-height: 36px;
        margin-bottom: 18px;
        padding: 0 14px;
        font-size: 0.92rem;
    }

    .fc-dgi-content p {
        font-size: 1rem;
    }

    .fc-dgi-badges {
        gap: 10px;
        margin-top: 24px;
    }

    .fc-dgi-badges span {
        width: 100%;
        min-height: 44px;
        justify-content: center;
        padding: 0 14px;
        font-size: 0.92rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fc-dgi-logo-card {
        transition-duration: 0.001ms !important;
    }
}
