﻿:root {
            --ink: #f6f9ff;
            --muted: rgba(246, 249, 255, 0.72);
            --soft: rgba(246, 249, 255, 0.1);
            --line: rgba(246, 249, 255, 0.14);
            --navy: #050818;
            --blue: #0d2e4f;
            --cyan: #219bc6;
            --cyan-2: #30bdea;
            --red: #219bc6;
            --panel: rgba(255, 255, 255, 0.055);
            --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            background: var(--navy);
            color: var(--ink);
            font-family: "Inter", "Source Sans Pro", Arial, sans-serif;
            line-height: 1.65;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(circle at 30% 0%, rgba(15, 182, 201, 0.22), transparent 28rem),
                radial-gradient(circle at 100% 20%, rgba(25, 57, 140, 0.24), transparent 32rem),
                linear-gradient(120deg, #050818 0%, #071225 45%, #08051d 100%);
            z-index: -2;
        }

        img { max-width: 100%; display: block; }
        a { color: inherit; text-decoration: none; }
        p { color: var(--muted); }
        strong { color: var(--ink); }
        .container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
        .accent { color: var(--cyan); }
        .eyebrow {
            color: var(--cyan);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        h1, h2, h3 {
            letter-spacing: 0;
            line-height: 1.08;
        }
        h1 { font-size: clamp(2.45rem, 5.4vw, 4.4rem); font-weight: 600; }
        #hero h1 { color: var(--cyan); }
        h2 { font-size: clamp(1.75rem, 3.4vw, 2.85rem); font-weight: 740; }
        h3 { font-size: 1.22rem; font-weight: 740; }
        h2 + p,
        h3 + p { margin-top: 1rem; }
        section { position: relative; padding: 4.2rem 0; }

        #header {
            position: fixed;
            inset: 0 0 auto 0;
            z-index: 50;
            background: rgba(5, 8, 24, 0.76);
            border-bottom: 1px solid var(--line);
            backdrop-filter: blur(18px);
        }
        .nav {
            min-height: 74px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }
        .brand {
            display: flex;
            align-items: center;
            width: 210px;
            min-width: 210px;
        }
        .brand img {
            width: 100%;
            height: 50px;
            object-fit: contain;
            filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.34));
        }
        .brand span { display: none; }
        .nav ul {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            list-style: none;
        }
        .nav a {
            color: rgba(255, 255, 255, 0.72);
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.7rem 0.85rem;
            border-radius: 6px;
            font-size: 0.82rem;
            font-weight: 750;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            transition: 180ms ease;
        }
        .nav a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
        .nav .cta-link { background: var(--red); color: #fff; }
        .nav .cta-link:hover { background: #fff; color: #071225; }

        .button-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.65rem;
            min-height: 50px;
            padding: 0.9rem 1.25rem;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.22);
            background: var(--red);
            color: #fff;
            font-weight: 800;
            letter-spacing: 0.04em;
            transition: 180ms ease;
        }
        .button:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
        .button.secondary { background: rgba(255, 255, 255, 0.08); }
        .button.secondary:hover { background: #fff; color: #071225; }

        #hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 8rem;
            overflow: hidden;
            background:
                linear-gradient(90deg, rgba(5, 8, 24, 0.94) 0%, rgba(5, 8, 24, 0.84) 42%, rgba(5, 8, 24, 0.5) 100%),
                url("../site-assets/hero-strategic-ai.jpg") right 4% center / clamp(820px, 64vw, 1120px) auto no-repeat;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: clamp(2rem, 6vw, 6rem);
            align-items: center;
        }
        .portrait-panel {
            min-height: 640px;
            border: 2px solid rgba(33, 155, 198, 0.82);
            background:
                linear-gradient(180deg, rgba(5, 8, 24, 0) 45%, rgba(5, 8, 24, 0.72) 100%),
                url("../site-assets/emmanuel-beji-2026.jpg") center top / cover no-repeat;
            color: #091124;
            display: flex;
            align-items: flex-end;
            padding: 2rem;
            box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.08), 0 0 34px rgba(33, 155, 198, 0.18);
            border-radius: 8px;
            overflow: hidden;
        }
        .portrait-card {
            width: 100%;
            background: rgba(5, 8, 24, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 8px;
            padding: 1.4rem;
            backdrop-filter: blur(12px);
        }
        .portrait-card .initials {
            display: none;
        }
        .portrait-card h3 { color: #fff; }
        .portrait-card p { color: rgba(255, 255, 255, 0.78); }
        .hero-linkedin {
            display: grid;
            grid-template-columns: 70px 1fr;
            gap: 0.8rem;
            align-items: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.16);
        }
        .hero-linkedin img {
            width: 70px;
            height: 70px;
            border-radius: 6px;
            background: #fff;
            padding: 0.25rem;
        }
        .hero-linkedin span {
            display: block;
            color: rgba(255,255,255,0.68);
            font-size: 0.78rem;
            line-height: 1.25;
        }
        .hero-linkedin strong {
            display: block;
            margin-top: 0.15rem;
            color: #fff;
            font-size: 0.92rem;
        }
        .hero-copy p.lead {
            font-size: clamp(1.55rem, 3vw, 2.65rem);
            line-height: 1.25;
            margin: 1.8rem 0 2.1rem;
            color: #fff;
        }
        .hero-copy .summary {
            max-width: 850px;
            font-size: 1.08rem;
            margin-bottom: 2rem;
        }
        .proof-strip {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1px;
            background: var(--line);
            border: 1px solid var(--line);
            border-radius: 8px;
            overflow: hidden;
            margin: 2rem 0;
        }
        .proof {
            background: rgba(255, 255, 255, 0.055);
            padding: 1.2rem 1.25rem;
        }
        .proof b { display: block; color: var(--cyan); font-size: 1.38rem; line-height: 1.1; margin-bottom: 0.55rem; }
        .proof span { display: block; color: rgba(255,255,255,0.66); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.45; }

        .split-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(2rem, 5vw, 5rem);
            align-items: stretch;
        }
        .image-side {
            display: none;
        }
        .copy-stack {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1.35rem;
            max-width: 940px;
            margin-left: auto;
            padding: clamp(2rem, 5vw, 4.5rem);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 8px;
            background:
                linear-gradient(90deg, rgba(5, 8, 24, 0.94) 0%, rgba(5, 8, 24, 0.84) 45%, rgba(5, 8, 24, 0.6) 100%),
                url("../site-assets/performance.jpg") center right / cover no-repeat;
            box-shadow: var(--shadow);
        }
        .copy-stack p { font-size: 1.02rem; }
        .highlight { color: var(--cyan); }

        .section-head { max-width: 1020px; margin-bottom: 2.6rem; }
        .section-head p {
            font-size: 1.26rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.82);
            margin-top: 1.05rem;
        }
        .levers {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.6rem;
            align-items: stretch;
        }
        .lever {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            min-height: 100%;
            padding: 1.6rem;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 8px;
            background: rgba(255,255,255,0.045);
            box-shadow: 0 18px 50px rgba(0,0,0,0.16);
        }
        .lever-number {
            width: 54px;
            height: 54px;
            border-radius: 50% 50% 50% 8px;
            background: linear-gradient(135deg, var(--cyan), #087b95);
            display: grid;
            place-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            flex: 0 0 auto;
        }
        .lever p { font-size: 1.02rem; }
        .method-panel {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
            margin-top: 1.6rem;
        }
        .method-panel p {
            min-height: 100%;
            padding: 1.2rem;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            background: rgba(255,255,255,0.04);
            color: rgba(255,255,255,0.76);
            font-size: 0.96rem;
        }

        #interventions {
            background: linear-gradient(180deg, rgba(7, 18, 37, 0.96), rgba(5, 8, 24, 0.99));
        }
        .intervention-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }
        .intervention-card {
            min-height: 100%;
            padding: 1.35rem;
            border: 1px solid rgba(255,255,255,0.11);
            border-radius: 8px;
            background: rgba(255,255,255,0.045);
            box-shadow: 0 18px 50px rgba(0,0,0,0.14);
        }
        .intervention-card h3 {
            margin-bottom: 0.75rem;
            font-size: 1.08rem;
        }
        .intervention-card p {
            color: rgba(255,255,255,0.72);
            font-size: 0.96rem;
        }

        #services {
            background: linear-gradient(180deg, rgba(5, 8, 24, 0.99), rgba(7, 18, 37, 0.96));
        }
        .services-intro {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 2rem;
            align-items: stretch;
            margin-bottom: 3rem;
        }
        .services-header {
            max-width: 980px;
            margin-bottom: 0;
        }
        .services-header p {
            max-width: 900px;
            margin-bottom: 0.9rem;
            font-size: 1.02rem;
            line-height: 1.72;
        }
        .services-visual {
            min-height: 310px;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 8px;
            background:
                linear-gradient(90deg, rgba(5, 8, 24, 0.05), rgba(5, 8, 24, 0.32)),
                url("../site-assets/services-bg.jpg") left center / cover no-repeat;
            box-shadow: var(--shadow);
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2.6rem 3rem;
            padding-top: 2.2rem;
            border-top: 1px solid rgba(255,255,255,0.12);
        }
        .service-block {
            padding: 1.5rem;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            background: rgba(5, 8, 24, 0.62);
            backdrop-filter: blur(4px);
        }
        .service-line {
            width: 100%;
            height: 4px;
            margin-bottom: 1.35rem;
            background: var(--cyan);
        }
        .service-block h3 {
            margin-bottom: 1.35rem;
            font-size: 1.26rem;
            line-height: 1.18;
        }
        .service-block ul {
            margin: 0;
            padding-left: 1.2rem;
            color: rgba(255,255,255,0.76);
        }
        .service-block li {
            margin-bottom: 0.55rem;
            line-height: 1.45;
        }
        .service-block li::marker {
            color: rgba(255,255,255,0.72);
        }

        .pillars {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2rem 3rem;
            background:
                linear-gradient(90deg, rgba(5, 8, 24, 0.92) 0%, rgba(5, 8, 24, 0.82) 48%, rgba(5, 8, 24, 0.94) 100%),
                url("../site-assets/formation.jpg") center / cover no-repeat;
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: clamp(1.4rem, 3vw, 2.8rem);
            backdrop-filter: blur(3px);
            box-shadow: var(--shadow);
        }
        .pillar {
            border-top: 5px solid var(--cyan);
            padding-top: 1.2rem;
        }
        .pillar ul { padding-left: 1.1rem; color: rgba(255,255,255,0.78); margin-top: 0.9rem; }
        .pillar li { margin: 0.25rem 0; }
        .pillar-note {
            margin-top: 1rem;
            padding-top: 0.85rem;
            border-top: 1px solid rgba(255,255,255,0.14);
            color: rgba(255,255,255,0.66);
            font-size: 0.86rem;
            line-height: 1.55;
        }
        .catalog-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.9rem;
            color: var(--cyan);
            font-size: 0.9rem;
            font-weight: 750;
        }
        .catalog-link:hover {
            color: #fff;
        }
        .catalog-discovery {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            margin-top: 1.4rem;
            padding: 1.1rem 1.2rem;
            border: 1px solid rgba(48, 189, 234, 0.34);
            border-radius: 8px;
            background: rgba(33, 155, 198, 0.08);
        }
        .catalog-discovery p {
            max-width: 720px;
            color: rgba(255,255,255,0.74);
            font-size: 0.94rem;
        }
        .note { margin-top: 1rem; color: rgba(255,255,255,0.64); font-size: 0.92rem; }
        .training-partners {
            margin-top: 2rem;
            padding: 1.5rem;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 8px;
            background: rgba(255,255,255,0.045);
        }
        .training-partners p {
            margin-bottom: 0.85rem;
            color: rgba(255,255,255,0.78);
        }
        .training-partners p + p {
            color: rgba(255,255,255,0.68);
            font-size: 0.94rem;
        }
        .admin-note {
            margin-top: 1.2rem;
            padding: 1.2rem 1.4rem;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 8px;
            background: rgba(255,255,255,0.04);
        }
        .admin-note h3 {
            font-size: 1rem;
            font-weight: 500;
            color: rgba(255,255,255,0.72);
            margin-bottom: 0.55rem;
        }
        .admin-note p {
            margin-bottom: 0.6rem;
            color: rgba(255,255,255,0.68);
            font-size: 0.9rem;
        }
        .admin-note a {
            color: rgba(255,255,255,0.58);
            font-size: 0.82rem;
            font-weight: 500;
            text-decoration: underline;
            text-underline-offset: 0.22rem;
        }
        .admin-note a:hover {
            color: var(--cyan);
        }
        .partner-logos {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }
        .partner-logo {
            min-height: 108px;
            display: grid;
            place-items: center;
            border-radius: 6px;
            background: #fff;
            padding: 1rem;
        }
        .partner-logo img {
            max-width: 86%;
            max-height: 72px;
            object-fit: contain;
        }

        #formations {
            background:
                linear-gradient(180deg, rgba(5, 8, 24, 0.98), rgba(7, 18, 37, 0.96));
        }

        .case-block { margin-top: 3.6rem; }
        .case-title {
            font-size: clamp(2rem, 4vw, 3.6rem);
            font-weight: 500;
            margin-bottom: 2rem;
        }
        .case-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 2rem;
        }
        .case-card {
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
        }
        .logo-tile {
            height: 160px;
            display: grid;
            place-items: center;
            background: #fff;
            color: #071225;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 4px;
            padding: 1.2rem;
            font-size: clamp(1.8rem, 3vw, 3rem);
            font-weight: 900;
            text-align: center;
            line-height: 1;
        }
        .logo-tile img {
            width: min(78%, 260px);
            max-height: 92px;
            object-fit: contain;
        }
        .logo-tile.logo-large img {
            width: min(90%, 320px);
            max-height: 118px;
        }
        .logo-tile.logo-xl img {
            width: min(96%, 360px);
            max-height: 136px;
        }
        .logo-tile.logo-odigo img {
            width: min(100%, 390px);
            max-height: 150px;
        }
        .logo-tile.logo-compact img {
            width: min(68%, 220px);
            max-height: 82px;
        }
        .logo-tile.logo-orange img {
            width: min(94%, 360px);
            max-height: 128px;
        }
        .logo-tile.logo-elior img {
            width: min(100%, 390px);
            max-height: 154px;
        }
        .logo-tile.small { font-size: clamp(1.6rem, 2.5vw, 2.5rem); }
        .logo-tile.orange { color: #ff6b00; }
        .logo-tile.blue { color: #004b9b; }
        .logo-tile.green { color: #68b92e; }
        .case-card p { font-size: 1rem; }
        .case-card h3 { min-height: 3rem; }

        #acensi {
            min-height: 88vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background:
                linear-gradient(90deg, rgba(5, 8, 24, 0.94) 0%, rgba(5, 8, 24, 0.82) 42%, rgba(5, 8, 24, 0.38) 100%),
                linear-gradient(180deg, rgba(5, 8, 24, 0.16), rgba(5, 8, 24, 0.58)),
                url("../site-assets/acensi-cyber-genai.png") right center / min(980px, 64vw) auto no-repeat,
                radial-gradient(circle at 78% 48%, rgba(75,175,217,0.22), transparent 18rem);
        }
        .robot-visual {
            display: none;
        }
        .acensi-copy { max-width: 940px; position: relative; z-index: 2; }
        .acensi-logo {
            display: inline-flex;
            width: min(360px, 100%);
            background: rgba(255, 255, 255, 0.96);
            padding: 0.4rem;
            border-radius: 4px;
            margin-bottom: 1.8rem;
            box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
        }
        .acensi-logo img {
            width: 100%;
            height: auto;
            border-radius: 2px;
            object-fit: contain;
        }
        .acensi-copy h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 1.7rem; }
        .acensi-copy p { font-size: 1.08rem; margin-bottom: 1.4rem; }
        .acensi-copy h2,
        .acensi-copy p,
        .resource-links {
            text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
        }
        .resource-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 1.6rem;
        }
        .resource-links a {
            width: fit-content;
            color: #fff;
            text-decoration: underline;
            text-underline-offset: 0.25rem;
        }

        #rejoindre {
            background:
                linear-gradient(90deg, rgba(5, 8, 24, 0.96) 0%, rgba(5, 8, 24, 0.84) 48%, rgba(5, 8, 24, 0.56) 100%),
                linear-gradient(180deg, rgba(5, 8, 24, 0.28), rgba(5, 8, 24, 0.78)),
                url("../site-assets/defense.png") right center / min(780px, 54vw) auto no-repeat,
                linear-gradient(180deg, rgba(5, 8, 24, 0.98), rgba(7, 18, 37, 0.96));
        }
        .join-panel {
            display: grid;
            grid-template-columns: 1.25fr 0.75fr;
            gap: 2rem;
            align-items: stretch;
        }
        .join-copy,
        .join-aside {
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 8px;
            background: rgba(5, 8, 24, 0.68);
            backdrop-filter: blur(5px);
            box-shadow: 0 18px 50px rgba(0,0,0,0.16);
        }
        .join-copy {
            padding: clamp(1.5rem, 3vw, 2.6rem);
        }
        .join-copy h2 {
            margin-bottom: 1.2rem;
        }
        .join-copy p {
            margin-bottom: 1rem;
            color: rgba(255,255,255,0.76);
        }
        .join-copy .button-row {
            margin-top: 1.4rem;
        }
        .join-note {
            margin-top: 1rem;
            font-size: 0.92rem;
            color: rgba(255,255,255,0.64) !important;
        }
        .join-aside {
            padding: 0;
            border-top: 5px solid var(--cyan);
            overflow: hidden;
        }
        .join-visual {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            border-bottom: 1px solid rgba(255,255,255,0.12);
        }
        .join-visual::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(5,8,24,0.08), rgba(5,8,24,0.44)),
                linear-gradient(90deg, rgba(33,155,198,0.18), transparent);
        }
        .join-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .join-aside h3 {
            padding: 1.3rem 1.5rem 0;
            margin-bottom: 1rem;
        }
        .join-aside ul {
            padding: 0 1.5rem 1.5rem 2.6rem;
            color: rgba(255,255,255,0.78);
        }
        .join-aside li {
            margin-bottom: 0.6rem;
            line-height: 1.45;
        }

        #faq {
            background: linear-gradient(180deg, rgba(7, 18, 37, 0.96), rgba(5, 8, 24, 0.98));
        }
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
        }
        .faq-item {
            padding: 1.35rem;
            border: 1px solid rgba(255,255,255,0.11);
            border-radius: 8px;
            background: rgba(255,255,255,0.045);
        }
        .faq-item h3 {
            margin-bottom: 0.65rem;
            font-size: 1.1rem;
        }
        .faq-item p {
            color: rgba(255,255,255,0.72);
            font-size: 0.96rem;
        }

        #cta {
            background:
                radial-gradient(circle at 50% 0%, rgba(33, 155, 198, 0.2), transparent 34rem),
                #030611;
            border-top: 1px solid rgba(255,255,255,0.12);
            border-bottom: 1px solid rgba(255,255,255,0.12);
            text-align: center;
        }
        #cta p { color: rgba(255,255,255,0.9); font-size: 1.12rem; max-width: 760px; margin: 1.15rem auto 2.2rem; }
        #cta .button.secondary {
            background: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.88);
        }
        #cta .primary-cta {
            background: #ffffff;
            color: #030611;
            border-color: rgba(48, 189, 234, 0.95);
            box-shadow: 0 16px 38px rgba(33, 155, 198, 0.34), 0 0 0 4px rgba(33, 155, 198, 0.12);
        }
        #cta .primary-cta:hover {
            background: var(--cyan-2);
            color: #030611;
            box-shadow: 0 18px 46px rgba(48, 189, 234, 0.44), 0 0 0 4px rgba(255,255,255,0.16);
        }
        .badge-row { display: flex; justify-content: center; gap: 0.7rem; flex-wrap: wrap; margin-top: 2rem; }
        .badge {
            border: 1px solid rgba(255,255,255,0.36);
            border-radius: 999px;
            padding: 0.45rem 0.8rem;
            color: rgba(255,255,255,0.92);
            background: rgba(255,255,255,0.1);
            font-size: 0.92rem;
        }

        footer {
            background: #030611;
            border-top: 1px solid var(--line);
            padding: 3.5rem 0 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-grid h4 {
            color: #fff;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 0.8rem;
        }
        .qr-card {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 0.55rem;
            margin-top: 1rem;
            padding: 0.8rem;
            border-radius: 8px;
            background: #fff;
            color: #071225;
        }
        .qr-card img {
            width: 128px;
            height: 128px;
            object-fit: contain;
        }
        .qr-card span {
            font-size: 0.78rem;
            font-weight: 800;
            text-align: center;
        }
        .footer-logo { font-weight: 900; letter-spacing: 0.18em; color: var(--cyan); margin-bottom: 0.7rem; }
        .footer-bottom {
            margin-top: 2.3rem;
            padding-top: 1.4rem;
            border-top: 1px solid var(--line);
            color: rgba(255,255,255,0.45);
            font-size: 0.86rem;
            text-align: center;
        }
        .footer-legal {
            max-width: 980px;
            margin: 0 auto 0.85rem;
            color: rgba(255,255,255,0.52);
            font-size: 0.78rem;
            line-height: 1.55;
        }
        .footer-legal-link {
            display: inline-flex;
            margin-bottom: 0.6rem;
            color: rgba(255,255,255,0.68);
            font-size: 0.86rem;
            text-decoration: underline;
            text-underline-offset: 0.22rem;
        }
        .footer-legal-link:hover {
            color: var(--cyan);
        }

        .legal-page {
            background: #030611;
        }
        .legal-section {
            min-height: calc(100vh - 180px);
            padding-top: 9rem;
            background:
                radial-gradient(circle at 24% 0%, rgba(33, 155, 198, 0.2), transparent 34rem),
                linear-gradient(180deg, #050818 0%, #030611 100%);
        }
        .legal-container {
            max-width: 920px;
        }
        .legal-container h1 {
            color: #fff;
            margin-bottom: 2rem;
        }
        .legal-card {
            padding: 1.35rem 1.45rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 8px;
            background: rgba(255,255,255,0.045);
        }
        .legal-card h2 {
            margin-bottom: 0.9rem;
            color: var(--cyan);
            font-size: 1.2rem;
        }
        .legal-card p {
            margin-bottom: 0.65rem;
            color: rgba(255,255,255,0.78);
        }
        .legal-card a {
            color: #fff;
            text-decoration: underline;
            text-underline-offset: 0.22rem;
        }
        .legal-card .document-link {
            display: inline-flex;
            margin-top: 0.25rem;
            color: var(--cyan);
            font-weight: 700;
        }
        .legal-card .document-link:hover {
            color: #fff;
        }
        .legal-actions {
            margin-top: 1.5rem;
        }

        .catalog-page {
            background: #030611;
        }
        .catalog-hero {
            padding-top: 12rem;
            padding-bottom: 3rem;
            background:
                radial-gradient(circle at 20% 0%, rgba(33, 155, 198, 0.2), transparent 34rem),
                linear-gradient(180deg, #050818 0%, #071225 100%);
        }
        .catalog-hero h1 {
            max-width: 940px;
            color: #fff;
            font-size: clamp(2.2rem, 4.6vw, 4rem);
        }
        .catalog-hero p {
            max-width: 850px;
            margin-top: 1.2rem;
            color: rgba(255,255,255,0.78);
            font-size: 1.12rem;
        }
        .catalog-hero .catalog-code-help {
            max-width: 850px;
            padding: 0.78rem 0.9rem;
            border-left: 3px solid var(--cyan);
            color: rgba(255,255,255,0.86);
            background: rgba(33, 155, 198, 0.1);
            font-size: 0.96rem;
        }
        .catalog-path {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
            margin-top: 1.6rem;
        }
        .catalog-path span {
            padding: 0.5rem 0.72rem;
            border: 1px solid rgba(255,255,255,0.14);
            border-radius: 999px;
            color: rgba(255,255,255,0.74);
            background: rgba(255,255,255,0.05);
            font-size: 0.82rem;
        }
        .catalog-nav a {
            color: rgba(255,255,255,0.88);
            transition: 180ms ease;
        }
        .catalog-nav a:hover {
            color: var(--cyan-2);
        }
        .catalog-family {
            scroll-margin-top: 100px;
            margin-top: 2.8rem;
        }
        .catalog-family:first-child {
            margin-top: 0;
        }
        .catalog-family-head {
            max-width: 920px;
            margin-bottom: 1.35rem;
        }
        .catalog-family-head h2 {
            color: #fff;
            font-size: clamp(1.65rem, 3vw, 2.5rem);
        }
        .catalog-family-head p {
            margin-top: 0.75rem;
            color: rgba(255,255,255,0.7);
        }
        .catalog-card.wide {
            grid-column: 1 / -1;
        }
        .catalog-section {
            padding-top: 3.4rem;
        }
        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
        }
        .catalog-card {
            padding: 1.35rem 1.45rem;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 8px;
            background: rgba(255,255,255,0.045);
        }
        .catalog-card h2 {
            margin-bottom: 1rem;
            color: var(--cyan);
            font-size: 1.28rem;
        }
        .catalog-card ul {
            padding-left: 1.15rem;
            color: rgba(255,255,255,0.78);
        }
        .catalog-card li {
            margin-bottom: 0.62rem;
            line-height: 1.52;
        }
        .stage-code {
            display: inline-flex;
            align-items: center;
            min-width: 5.2rem;
            margin-right: 0.35rem;
            padding: 0.13rem 0.42rem;
            border: 1px solid rgba(48, 189, 234, 0.42);
            border-radius: 4px;
            color: var(--cyan-2);
            background: rgba(33, 155, 198, 0.1);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            line-height: 1.3;
        }
        .catalog-cta {
            margin-top: 2.2rem;
            padding: 1.55rem;
            border: 1px solid rgba(48, 189, 234, 0.42);
            border-radius: 8px;
            background: rgba(33, 155, 198, 0.1);
        }
        .catalog-cta h2 {
            color: #fff;
            font-size: 1.55rem;
        }
        .catalog-cta p {
            margin-top: 0.85rem;
            color: rgba(255,255,255,0.78);
        }
        .catalog-cta .button-row {
            margin-top: 1.2rem;
        }
        .catalog-cta .catalog-contact-note {
            margin-top: 1rem;
            color: rgba(255,255,255,0.68);
            font-size: 0.92rem;
        }
        .catalog-contact-note a {
            color: #fff;
            text-decoration: underline;
            text-underline-offset: 0.22rem;
        }

        @media (max-width: 980px) {
            .nav { align-items: flex-start; flex-direction: column; padding: 1rem 0; }
            .nav ul { flex-wrap: wrap; }
            #hero { padding-top: 10rem; }
            .hero-grid, .split-section, .levers, .method-panel, .intervention-grid, .services-intro, .services-grid, .pillars, .partner-logos, .case-grid, .join-panel, .faq-grid, .footer-grid, .catalog-grid {
                grid-template-columns: 1fr;
            }
            .catalog-discovery {
                align-items: flex-start;
                flex-direction: column;
            }
            .portrait-panel { min-height: 420px; }
            .image-side { min-height: 360px; }
            .robot-visual { display: none; }
            #acensi {
                background:
                    linear-gradient(180deg, rgba(5, 8, 24, 0.68), rgba(5, 8, 24, 0.92)),
                    url("../site-assets/acensi-cyber-genai.png") center top / min(820px, 120vw) auto no-repeat;
            }
            #hero {
                background:
                    linear-gradient(180deg, rgba(5, 8, 24, 0.9), rgba(5, 8, 24, 0.96)),
                    url("../site-assets/hero-strategic-ai.jpg") center top 6rem / min(760px, 112vw) auto no-repeat;
            }
        }

        @media (max-width: 660px) {
            .container { width: min(100% - 28px, 1180px); }
            section { padding: 3.4rem 0; }
            .nav a { font-size: 0.72rem; padding: 0.55rem 0.6rem; }
            .proof-strip { grid-template-columns: 1fr; }
            .button { width: 100%; }
            .case-title { font-size: 2rem; }
            .logo-tile { height: 124px; }
            .portrait-panel { min-height: 340px; padding: 1rem; }
            .hero-copy p.lead { font-size: 2rem; }
        }
