/* ===================================
   PAGE À PROPOS - DESIGN SOMBRE PREMIUM
   Yann WZ Service
   =================================== */

:root {
    --ap-dark: #0A0A0A;
    --ap-dark-card: #141414;
    --ap-dark-border: #262626;
    --ap-accent: #0066FF;
    --ap-accent-hover: #0052CC;
    --ap-text: #FAFAFA;
    --ap-text-secondary: #A3A3A3;
    --ap-text-muted: #737373;
}

/* ===================================
   PAGE OVERRIDE - BODY & NAV
   =================================== */
.page-apropos {
    background: var(--ap-dark);
    color: var(--ap-text);
}

.page-apropos .nav {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--ap-dark-border);
}

.page-apropos .nav-link {
    color: var(--ap-text-secondary);
}

.page-apropos .nav-link:hover {
    color: var(--ap-text);
}

.page-apropos .logo {
    color: var(--ap-text);
}

/* ===================================
   CONTAINER
   =================================== */
.ap-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===================================
   SECTION 1 - HERO
   =================================== */
.ap-hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.ap-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.ap-hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.ap-hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--ap-text);
}

.ap-hero-text h1 .accent {
    color: var(--ap-accent);
}

.ap-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--ap-text-secondary);
    margin-bottom: 2.5rem;
}

/* ===================================
   PROOF BADGES
   =================================== */
.ap-proof-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.ap-proof-badge {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.ap-proof-badge:hover {
    border-color: var(--ap-accent);
    transform: translateX(4px);
}

.ap-proof-badge .badge-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    color: var(--ap-accent);
    flex-shrink: 0;
}

.ap-proof-badge .badge-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ap-text);
}

/* ===================================
   HERO VISUAL - DASHBOARD MOCKUP
   =================================== */
.ap-hero-visual {
    position: relative;
}

.ap-hero-visual-card {
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.ap-hero-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ap-accent), #00D4FF);
}



/* ===================================
   HERO VISUAL - PANEL CREDIBILITE
   =================================== */
.ap-cred-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ap-dark-border);
}

.ap-cred-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ap-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ap-cred-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ap-text-muted);
    padding: 0.35rem 0.6rem;
    border: 1px solid var(--ap-dark-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
}

.ap-cred-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.ap-cred-col h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--ap-text);
}

.ap-cred-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: var(--ap-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.45;
}

.ap-cred-list li {
    position: relative;
    padding-left: 1.1rem;
}

.ap-cred-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ap-accent);
}

.ap-cred-divider {
    height: 1px;
    background: var(--ap-dark-border);
    margin: 1.5rem 0 1.25rem;
}

.ap-check-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 102, 255, 0.35);
    background: rgba(0, 102, 255, 0.10);
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.ap-check-dot::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 3px;
    width: 6px;
    height: 9px;
    border-right: 2px solid var(--ap-accent);
    border-bottom: 2px solid var(--ap-accent);
    transform: rotate(40deg);
}

.ap-cred-checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.ap-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--ap-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* ===================================
   MICRO-SECTION - STANDARD
   =================================== */
.ap-standard {
    background: var(--ap-dark);
}

.ap-standard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.ap-standard-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.25rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 14px;
    color: var(--ap-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===================================
   OUTILS - VISUEL MODULES (PAS DE STATS)
   =================================== */
.ap-tools-modules {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.ap-module-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border: 1px solid var(--ap-dark-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--ap-text-secondary);
    font-size: 0.95rem;
}

.ap-module-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ap-accent);
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 102, 255, 0.25);
    background: rgba(0, 102, 255, 0.08);
    flex-shrink: 0;
}

/* ===================================
   CTA BUTTON
   =================================== */
.ap-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: var(--ap-accent);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ap-cta-btn:hover {
    background: var(--ap-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    color: white;
}

.ap-cta-btn svg {
    transition: transform 0.2s ease;
}

.ap-cta-btn:hover svg {
    transform: translateX(4px);
}

/* ===================================
   SECTIONS COMMUNES
   =================================== */
.ap-section {
    padding: 100px 0;
    position: relative;
}

.ap-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ap-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ap-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ap-section-subtitle {
    font-size: 1.125rem;
    color: var(--ap-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================================
   SECTION 2 - POSITIONNEMENT
   =================================== */
.ap-positioning {
    background: var(--ap-dark-card);
    border-top: 1px solid var(--ap-dark-border);
    border-bottom: 1px solid var(--ap-dark-border);
}

.ap-positioning-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ap-positioning-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--ap-text);
    margin-bottom: 2rem;
}

.ap-positioning-title .accent {
    color: var(--ap-accent);
}

.ap-positioning-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--ap-text-secondary);
    margin-bottom: 1.5rem;
}

.ap-positioning-highlight {
    display: inline-block;
    padding: 1.25rem 2rem;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ap-accent);
    margin-top: 1rem;
}

/* ===================================
   SECTION 3 - METHODE
   =================================== */
.ap-method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ap-method-card {
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.ap-method-card:hover {
    border-color: var(--ap-accent);
    transform: translateY(-4px);
}

.ap-method-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ap-accent);
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.ap-method-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ap-text);
    margin-bottom: 0.75rem;
}

.ap-method-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--ap-text-secondary);
    margin: 0;
}

/* ===================================
   SECTION 4 - COMPETENCES
   =================================== */
.ap-skills {
    background: var(--ap-dark-card);
    border-top: 1px solid var(--ap-dark-border);
    border-bottom: 1px solid var(--ap-dark-border);
}

.ap-skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.ap-skill-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--ap-dark-border);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.ap-skill-card:hover {
    border-color: var(--ap-accent);
    background: rgba(0, 102, 255, 0.03);
}

.ap-skill-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    color: var(--ap-accent);
    flex-shrink: 0;
}

.ap-skill-content h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ap-text);
    margin-bottom: 0.5rem;
}

.ap-skill-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--ap-text-secondary);
    margin: 0;
}

.ap-skill-content p .result {
    color: var(--ap-accent);
    font-weight: 500;
}

/* ===================================
   SECTION 5 - OUTILS SUR MESURE
   =================================== */
.ap-tools-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ap-tools-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--ap-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ap-tools-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--ap-text-secondary);
    margin-bottom: 2rem;
}

.ap-tools-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ap-tools-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ap-text);
    transition: all 0.2s ease;
}

.ap-tools-item:hover {
    border-color: var(--ap-accent);
    transform: translateX(4px);
}

.ap-tools-item svg {
    color: var(--ap-accent);
    flex-shrink: 0;
}

.ap-tools-visual {
    position: relative;
}

.ap-tools-card {
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.ap-tools-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ap-accent), transparent);
}

.ap-tools-mockup {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ap-mockup-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.ap-mockup-label {
    width: 100px;
    font-size: 0.75rem;
    color: var(--ap-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ap-mockup-bar {
    flex: 1;
    height: 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--ap-dark-border);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.ap-mockup-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ap-accent), rgba(0, 102, 255, 0.5));
    border-radius: 8px;
}

.ap-mockup-row:nth-child(1) .ap-mockup-fill { width: 85%; }
.ap-mockup-row:nth-child(2) .ap-mockup-fill { width: 70%; }
.ap-mockup-row:nth-child(3) .ap-mockup-fill { width: 92%; }
.ap-mockup-row:nth-child(4) .ap-mockup-fill { width: 65%; }

/* ===================================
   SECTION 6 - FIABILITE
   =================================== */
.ap-trust {
    background: var(--ap-dark-card);
    border-top: 1px solid var(--ap-dark-border);
    border-bottom: 1px solid var(--ap-dark-border);
}

.ap-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ap-trust-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--ap-dark-border);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.ap-trust-card:hover {
    border-color: var(--ap-accent);
}

.ap-trust-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 14px;
    color: var(--ap-accent);
    margin: 0 auto 1.25rem;
}

.ap-trust-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ap-text);
    margin-bottom: 0.5rem;
}

.ap-trust-card p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--ap-text-secondary);
    margin: 0;
}

/* ===================================
   SECTION 7 - ABOUT SHORT
   =================================== */
.ap-about-short {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ap-about-short h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ap-text);
    margin-bottom: 1.5rem;
}

.ap-about-short p {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--ap-text-secondary);
}

/* ===================================
   SECTION 8 - CTA FINAL
   =================================== */
.ap-final-cta {
    text-align: center;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--ap-dark) 0%, #0D1117 100%);
    position: relative;
    overflow: hidden;
}

.ap-final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ap-final-cta-content {
    position: relative;
    z-index: 1;
}

.ap-final-cta h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--ap-text);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.ap-final-cta h2 .accent {
    color: var(--ap-accent);
}

.ap-final-cta-content > p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--ap-text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.ap-final-cta .ap-cta-btn {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}

.ap-cta-reassurance {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: var(--ap-text-muted);
}

/* ===================================
   FOOTER OVERRIDE
   =================================== */
.page-apropos .footer {
    background: #050505;
    border-top: 1px solid var(--ap-dark-border);
}

.page-apropos .footer-content {
    color: var(--ap-text-secondary);
}

.page-apropos .footer-link {
    color: var(--ap-text-secondary);
}

.page-apropos .footer-link:hover {
    color: var(--ap-text);
}

/* ===================================
   STICKY CTA OVERRIDE
   =================================== */
.page-apropos .sticky-mobile-cta {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid var(--ap-dark-border);
}

/* ===================================
   RESPONSIVE - TABLETTE
   =================================== */
@media (max-width: 1024px) {
    .ap-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ap-hero-text h1 {
        font-size: 2.5rem;
    }

    .ap-method-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ap-skills-grid {
        grid-template-columns: 1fr;
    }

    .ap-tools-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ap-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */
@media (max-width: 768px) {
    .ap-hero {
        padding: 140px 0 80px;
    }

    .ap-hero-text h1 {
        font-size: 2rem;
    }

    .ap-hero-subtitle {
        font-size: 1.0625rem;
    }

    .ap-section {
        padding: 80px 0;
    }

    .ap-section-title {
        font-size: 1.75rem;
    }

    .ap-method-grid {
        grid-template-columns: 1fr;
    }

    .ap-trust-grid {
        grid-template-columns: 1fr;
    }

    .ap-final-cta {
        padding: 80px 0;
    }

    .ap-final-cta h2 {
        font-size: 1.75rem;
    }

    .ap-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .ap-positioning-title {
        font-size: 1.75rem;
    }

    .ap-tools-text h2 {
        font-size: 1.75rem;
    }

    .ap-proof-badge {
        padding: 0.875rem 1rem;
    }

    .ap-proof-badge .badge-icon {
        width: 40px;
        height: 40px;
    }

    .ap-proof-badge .badge-text {
        font-size: 0.875rem;
    }

    .ap-dashboard-stats {
        gap: 0.75rem;
    }

    .ap-stat-card {
        padding: 1rem;
    }

    .ap-stat-value {
        font-size: 1.5rem;
    }

    .ap-method-card {
        padding: 1.5rem;
    }

    .ap-skill-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .ap-skill-icon {
        margin: 0 auto;
    }

    .ap-tools-item {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .ap-mockup-label {
        width: 80px;
        font-size: 0.6875rem;
    }

    .ap-mockup-bar {
        height: 30px;
    }


    .ap-standard-grid { grid-template-columns: 1fr; }
}

/* ===================================
   RESPONSIVE - PETIT MOBILE
   =================================== */
@media (max-width: 480px) {
    .ap-container {
        padding: 0 1rem;
    }

    .ap-hero-text h1 {
        font-size: 1.75rem;
    }

    .ap-section-title {
        font-size: 1.5rem;
    }

    .ap-positioning-title {
        font-size: 1.5rem;
    }

    .ap-final-cta h2 {
        font-size: 1.5rem;
    }

    .ap-about-short h2 {
        font-size: 1.5rem;
    }

    .ap-tools-text h2 {
        font-size: 1.5rem;
    }
}



/* ===================================
   BLOC - CYCLE D'AMELIORATION CONTINUE
   =================================== */
.ap-cycle {
    background: var(--ap-dark);
}
.ap-cycle-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}
.ap-cycle-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 1.25rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 14px;
    color: var(--ap-text);
}
.ap-cycle-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.25);
    color: var(--ap-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.ap-cycle-text {
    color: var(--ap-text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}
.ap-cycle-arrow {
    color: var(--ap-text-muted);
    font-weight: 700;
}

/* ===================================
   BLOC - STACK TECHNIQUE
   =================================== */
.ap-stack {
    background: var(--ap-dark-card);
    border-top: 1px solid var(--ap-dark-border);
    border-bottom: 1px solid var(--ap-dark-border);
}
.ap-stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.ap-stack-card {
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--ap-dark-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.ap-stack-card:hover {
    border-color: var(--ap-accent);
    background: rgba(0, 102, 255, 0.03);
    transform: translateY(-2px);
}
.ap-stack-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--ap-text);
}
.ap-stack-card p {
    margin: 0;
    color: var(--ap-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===================================
   BLOC - CODE -> RESULTAT BUSINESS
   =================================== */
.ap-code-business {
    background: var(--ap-dark);
}
.ap-code-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}
.ap-code-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 14px;
    color: var(--ap-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===================================
   BLOC - GARANTIES
   =================================== */
.ap-guarantees {
    margin-top: 2.5rem;
    padding: 2rem;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--ap-dark-border);
    border-radius: 16px;
}
.ap-guarantees h3 {
    margin: 0 0 1rem;
    color: var(--ap-text);
    font-weight: 800;
    font-size: 1.125rem;
}
.ap-guarantees-list {
    margin: 0 0 1rem;
    padding-left: 1.1rem;
    color: var(--ap-text-secondary);
    line-height: 1.7;
}
.ap-guarantees-note {
    margin: 0;
    color: var(--ap-text-muted);
    line-height: 1.7;
}

/* ===================================
   BLOC - POUR QUI
   =================================== */
.ap-who {
    background: var(--ap-dark-card);
    border-top: 1px solid var(--ap-dark-border);
    border-bottom: 1px solid var(--ap-dark-border);
}

/* ===================================
   BANDEAU - RAPIDITE
   =================================== */
.ap-speed-band {
    padding: 40px 0;
    background: rgba(0, 102, 255, 0.06);
    border-top: 1px solid rgba(0, 102, 255, 0.18);
    border-bottom: 1px solid rgba(0, 102, 255, 0.18);
}
.ap-speed-items {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.ap-speed-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.15rem;
    background: rgba(10, 10, 10, 0.35);
    border: 1px solid rgba(0, 102, 255, 0.18);
    border-radius: 999px;
    color: var(--ap-text);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ===================================
   RESPONSIVE - NEW BLOCKS
   =================================== */
@media (max-width: 768px) {
    .ap-stack-grid { grid-template-columns: 1fr; }
    .ap-code-list { grid-template-columns: 1fr; }
    .ap-cycle-arrow { display: none; }
}

   <style>
        /* ===================================
           PAGE À PROPOS - DESIGN SOMBRE PREMIUM
           =================================== */

        :root {
            --ap-dark: #0A0A0A;
            --ap-dark-card: #141414;
            --ap-dark-border: #262626;
            --ap-accent: #0066FF;
            --ap-accent-hover: #0052CC;
            --ap-text: #FAFAFA;
            --ap-text-secondary: #A3A3A3;
            --ap-text-muted: #737373;
        }

        /* Override body pour cette page */
        .page-apropos {
            background: var(--ap-dark);
            color: var(--ap-text);
        }

        .page-apropos .nav {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--ap-dark-border);
        }

        .page-apropos .nav-link {
            color: var(--ap-text-secondary);
        }

        .page-apropos .nav-link:hover {
            color: var(--ap-text);
        }

        .page-apropos .logo {
            color: var(--ap-text);
        }

        /* Container spécifique */
        .ap-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* ===================================
           SECTION 1 - HERO
           =================================== */
        .ap-hero {
            padding: 160px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .ap-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(ellipse at top right, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .ap-hero-content {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
        }

        .ap-hero-text h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            color: var(--ap-text);
        }

        .ap-hero-text h1 .accent {
            color: var(--ap-accent);
        }

        .ap-hero-subtitle {
            font-size: 1.25rem;
            line-height: 1.7;
            color: var(--ap-text-secondary);
            margin-bottom: 2.5rem;
        }

        .ap-proof-badges {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .ap-proof-badge {
            display: flex;
            align-items: center;
            gap: 0.875rem;
            padding: 1rem 1.25rem;
            background: var(--ap-dark-card);
            border: 1px solid var(--ap-dark-border);
            border-radius: 12px;
            transition: all 0.2s ease;
        }

        .ap-proof-badge:hover {
            border-color: var(--ap-accent);
            transform: translateX(4px);
        }

        .ap-proof-badge .badge-icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 102, 255, 0.1);
            border-radius: 10px;
            color: var(--ap-accent);
            flex-shrink: 0;
        }

        .ap-proof-badge .badge-text {
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--ap-text);
        }

        .ap-hero-visual {
            position: relative;
        }

        .ap-hero-visual-card {
            background: var(--ap-dark-card);
            border: 1px solid var(--ap-dark-border);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .ap-hero-visual-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--ap-accent), #00D4FF);
        }


/* ===================================
   HERO VISUAL - PANEL CREDIBILITE
   =================================== */
.ap-cred-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ap-dark-border);
}

.ap-cred-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ap-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ap-cred-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ap-text-muted);
    padding: 0.35rem 0.6rem;
    border: 1px solid var(--ap-dark-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
}

.ap-cred-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.ap-cred-col h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--ap-text);
}

.ap-cred-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: var(--ap-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.45;
}

.ap-cred-list li {
    position: relative;
    padding-left: 1.1rem;
}

.ap-cred-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ap-accent);
}

.ap-cred-divider {
    height: 1px;
    background: var(--ap-dark-border);
    margin: 1.5rem 0 1.25rem;
}

.ap-check-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 102, 255, 0.35);
    background: rgba(0, 102, 255, 0.10);
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.ap-check-dot::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 3px;
    width: 6px;
    height: 9px;
    border-right: 2px solid var(--ap-accent);
    border-bottom: 2px solid var(--ap-accent);
    transform: rotate(40deg);
}

.ap-cred-checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.ap-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--ap-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* ===================================
   MICRO-SECTION - STANDARD
   =================================== */
.ap-standard {
    background: var(--ap-dark);
}

.ap-standard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.ap-standard-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.25rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 14px;
    color: var(--ap-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===================================
   OUTILS - VISUEL MODULES (PAS DE STATS)
   =================================== */
.ap-tools-modules {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.ap-module-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border: 1px solid var(--ap-dark-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--ap-text-secondary);
    font-size: 0.95rem;
}

.ap-module-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ap-accent);
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 102, 255, 0.25);
    background: rgba(0, 102, 255, 0.08);
    flex-shrink: 0;
}
/* ===================================
           BOUTON CTA PRINCIPAL
           =================================== */
        .ap-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.125rem 2rem;
            background: var(--ap-accent);
            color: white;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .ap-cta-btn:hover {
            background: var(--ap-accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
            color: white;
        }

        .ap-cta-btn svg {
            transition: transform 0.2s ease;
        }

        .ap-cta-btn:hover svg {
            transform: translateX(4px);
        }

        /* ===================================
           SECTIONS COMMUNES
           =================================== */
        .ap-section {
            padding: 100px 0;
            position: relative;
        }

        .ap-section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .ap-section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--ap-text);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .ap-section-subtitle {
            font-size: 1.125rem;
            color: var(--ap-text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ===================================
           SECTION 2 - POSITIONNEMENT
           =================================== */
        .ap-positioning {
            background: var(--ap-dark-card);
            border-top: 1px solid var(--ap-dark-border);
            border-bottom: 1px solid var(--ap-dark-border);
        }

        .ap-positioning-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .ap-positioning-title {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--ap-text);
            margin-bottom: 2rem;
        }

        .ap-positioning-title .accent {
            color: var(--ap-accent);
        }

        .ap-positioning-text {
            font-size: 1.125rem;
            line-height: 1.9;
            color: var(--ap-text-secondary);
            margin-bottom: 1.5rem;
        }

        .ap-positioning-highlight {
            display: inline-block;
            padding: 1.25rem 2rem;
            background: rgba(0, 102, 255, 0.1);
            border: 1px solid rgba(0, 102, 255, 0.2);
            border-radius: 12px;
            font-size: 1.0625rem;
            font-weight: 600;
            color: var(--ap-accent);
            margin-top: 1rem;
        }

        /* ===================================
           SECTION 3 - METHODE
           =================================== */
        .ap-method-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .ap-method-card {
            background: var(--ap-dark-card);
            border: 1px solid var(--ap-dark-border);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .ap-method-card:hover {
            border-color: var(--ap-accent);
            transform: translateY(-4px);
        }

        .ap-method-number {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--ap-accent);
            color: white;
            font-size: 1.25rem;
            font-weight: 800;
            border-radius: 12px;
            margin-bottom: 1.5rem;
        }

        .ap-method-card h3 {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--ap-text);
            margin-bottom: 0.75rem;
        }

        .ap-method-card p {
            font-size: 0.9375rem;
            line-height: 1.6;
            color: var(--ap-text-secondary);
            margin: 0;
        }

        /* ===================================
           SECTION 4 - COMPETENCES
           =================================== */
        .ap-skills {
            background: var(--ap-dark-card);
            border-top: 1px solid var(--ap-dark-border);
            border-bottom: 1px solid var(--ap-dark-border);
        }

        .ap-skills-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .ap-skill-card {
            display: flex;
            gap: 1.25rem;
            padding: 1.75rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--ap-dark-border);
            border-radius: 14px;
            transition: all 0.3s ease;
        }

        .ap-skill-card:hover {
            border-color: var(--ap-accent);
            background: rgba(0, 102, 255, 0.03);
        }

        .ap-skill-icon {
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 102, 255, 0.1);
            border-radius: 12px;
            color: var(--ap-accent);
            flex-shrink: 0;
        }

        .ap-skill-content h3 {
            font-size: 1.0625rem;
            font-weight: 700;
            color: var(--ap-text);
            margin-bottom: 0.5rem;
        }

        .ap-skill-content p {
            font-size: 0.9375rem;
            line-height: 1.6;
            color: var(--ap-text-secondary);
            margin: 0;
        }

        .ap-skill-content p .result {
            color: var(--ap-accent);
            font-weight: 500;
        }

        /* ===================================
           SECTION 5 - OUTILS SUR MESURE
           =================================== */
        .ap-tools-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .ap-tools-text h2 {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--ap-text);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .ap-tools-text p {
            font-size: 1.0625rem;
            line-height: 1.8;
            color: var(--ap-text-secondary);
            margin-bottom: 2rem;
        }

        .ap-tools-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .ap-tools-item {
            display: flex;
            align-items: center;
            gap: 0.875rem;
            padding: 1rem 1.25rem;
            background: var(--ap-dark-card);
            border: 1px solid var(--ap-dark-border);
            border-radius: 10px;
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--ap-text);
            transition: all 0.2s ease;
        }

        .ap-tools-item:hover {
            border-color: var(--ap-accent);
            transform: translateX(4px);
        }

        .ap-tools-item svg {
            color: var(--ap-accent);
            flex-shrink: 0;
        }

        .ap-tools-visual {
            position: relative;
        }

        .ap-tools-card {
            background: var(--ap-dark-card);
            border: 1px solid var(--ap-dark-border);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
        }

        .ap-tools-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 20%;
            right: 20%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--ap-accent), transparent);
        }

        .ap-tools-mockup {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .ap-mockup-row {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }

        .ap-mockup-label {
            width: 100px;
            font-size: 0.75rem;
            color: var(--ap-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .ap-mockup-bar {
            flex: 1;
            height: 36px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--ap-dark-border);
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .ap-mockup-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--ap-accent), rgba(0, 102, 255, 0.5));
            border-radius: 8px;
        }

        .ap-mockup-row:nth-child(1) .ap-mockup-fill { width: 85%; }
        .ap-mockup-row:nth-child(2) .ap-mockup-fill { width: 70%; }
        .ap-mockup-row:nth-child(3) .ap-mockup-fill { width: 92%; }
        .ap-mockup-row:nth-child(4) .ap-mockup-fill { width: 65%; }

        /* ===================================
           SECTION 6 - FIABILITE
           =================================== */
        .ap-trust {
            background: var(--ap-dark-card);
            border-top: 1px solid var(--ap-dark-border);
            border-bottom: 1px solid var(--ap-dark-border);
        }

        .ap-trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .ap-trust-card {
            text-align: center;
            padding: 2rem 1.5rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--ap-dark-border);
            border-radius: 14px;
            transition: all 0.3s ease;
        }

        .ap-trust-card:hover {
            border-color: var(--ap-accent);
        }

        .ap-trust-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 102, 255, 0.1);
            border-radius: 14px;
            color: var(--ap-accent);
            margin: 0 auto 1.25rem;
        }

        .ap-trust-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--ap-text);
            margin-bottom: 0.5rem;
        }

        .ap-trust-card p {
            font-size: 0.875rem;
            line-height: 1.5;
            color: var(--ap-text-secondary);
            margin: 0;
        }

        /* ===================================
           SECTION 7 - ABOUT SHORT
           =================================== */
        .ap-about-short {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .ap-about-short h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--ap-text);
            margin-bottom: 1.5rem;
        }

        .ap-about-short p {
            font-size: 1.0625rem;
            line-height: 1.9;
            color: var(--ap-text-secondary);
        }

        /* ===================================
           SECTION 8 - CTA FINAL
           =================================== */
        .ap-final-cta {
            text-align: center;
            padding: 120px 0;
            background: linear-gradient(180deg, var(--ap-dark) 0%, #0D1117 100%);
            position: relative;
            overflow: hidden;
        }

        .ap-final-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .ap-final-cta-content {
            position: relative;
            z-index: 1;
        }

        .ap-final-cta h2 {
            font-size: 2.75rem;
            font-weight: 800;
            color: var(--ap-text);
            margin-bottom: 1.25rem;
            line-height: 1.2;
        }

        .ap-final-cta h2 .accent {
            color: var(--ap-accent);
        }

        .ap-final-cta > .ap-container > p {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--ap-text-secondary);
            max-width: 600px;
            margin: 0 auto 2.5rem;
        }

        .ap-final-cta .ap-cta-btn {
            font-size: 1.125rem;
            padding: 1.25rem 2.5rem;
        }

        .ap-cta-reassurance {
            margin-top: 1.25rem;
            font-size: 0.875rem;
            color: var(--ap-text-muted);
        }

        /* ===================================
           FOOTER OVERRIDE
           =================================== */
        .page-apropos .footer {
            background: #050505;
            border-top: 1px solid var(--ap-dark-border);
        }

        .page-apropos .footer-content {
            color: var(--ap-text-secondary);
        }

        .page-apropos .footer-link {
            color: var(--ap-text-secondary);
        }

        .page-apropos .footer-link:hover {
            color: var(--ap-text);
        }

        /* ===================================
           STICKY CTA OVERRIDE
           =================================== */
        .page-apropos .sticky-mobile-cta {
            background: rgba(10, 10, 10, 0.95);
            border-top: 1px solid var(--ap-dark-border);
        }

        /* ===================================
           RESPONSIVE
           =================================== */
        @media (max-width: 1024px) {
            .ap-hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .ap-hero-text h1 {
                font-size: 2.5rem;
            }

            .ap-method-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .ap-skills-grid {
                grid-template-columns: 1fr;
            }

            .ap-tools-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .ap-trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .ap-hero {
                padding: 140px 0 80px;
            }

            .ap-hero-text h1 {
                font-size: 2rem;
            }

            .ap-hero-subtitle {
                font-size: 1.0625rem;
            }

            .ap-section {
                padding: 80px 0;
            }

            .ap-section-title {
                font-size: 1.75rem;
            }

            .ap-method-grid {
                grid-template-columns: 1fr;
            }

            .ap-trust-grid {
                grid-template-columns: 1fr;
            }

            .ap-final-cta {
                padding: 80px 0;
            }

            .ap-final-cta h2 {
                font-size: 1.75rem;
            }

            .ap-cta-btn {
                width: 100%;
                justify-content: center;
            }

            .ap-positioning-title {
                font-size: 1.75rem;
            }

            .ap-tools-text h2 {
                font-size: 1.75rem;
            }
        

            .ap-standard-grid { grid-template-columns: 1fr; }
}
    
/* ===================================
   BLOC - CYCLE D'AMELIORATION CONTINUE
   =================================== */
.ap-cycle {
    background: var(--ap-dark);
}
.ap-cycle-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}
.ap-cycle-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 1.25rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 14px;
    color: var(--ap-text);
}
.ap-cycle-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.25);
    color: var(--ap-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.ap-cycle-text {
    color: var(--ap-text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}
.ap-cycle-arrow {
    color: var(--ap-text-muted);
    font-weight: 700;
}

/* ===================================
   BLOC - STACK TECHNIQUE
   =================================== */
.ap-stack {
    background: var(--ap-dark-card);
    border-top: 1px solid var(--ap-dark-border);
    border-bottom: 1px solid var(--ap-dark-border);
}
.ap-stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.ap-stack-card {
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--ap-dark-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.ap-stack-card:hover {
    border-color: var(--ap-accent);
    background: rgba(0, 102, 255, 0.03);
    transform: translateY(-2px);
}
.ap-stack-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--ap-text);
}
.ap-stack-card p {
    margin: 0;
    color: var(--ap-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===================================
   BLOC - CODE -> RESULTAT BUSINESS
   =================================== */
.ap-code-business {
    background: var(--ap-dark);
}
.ap-code-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}
.ap-code-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 14px;
    color: var(--ap-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===================================
   BLOC - GARANTIES
   =================================== */
.ap-guarantees {
    margin-top: 2.5rem;
    padding: 2rem;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--ap-dark-border);
    border-radius: 16px;
}
.ap-guarantees h3 {
    margin: 0 0 1rem;
    color: var(--ap-text);
    font-weight: 800;
    font-size: 1.125rem;
}
.ap-guarantees-list {
    margin: 0 0 1rem;
    padding-left: 1.1rem;
    color: var(--ap-text-secondary);
    line-height: 1.7;
}
.ap-guarantees-note {
    margin: 0;
    color: var(--ap-text-muted);
    line-height: 1.7;
}

/* ===================================
   BLOC - POUR QUI
   =================================== */
.ap-who {
    background: var(--ap-dark-card);
    border-top: 1px solid var(--ap-dark-border);
    border-bottom: 1px solid var(--ap-dark-border);
}

/* ===================================
   BANDEAU - RAPIDITE
   =================================== */
.ap-speed-band {
    padding: 40px 0;
    background: rgba(0, 102, 255, 0.06);
    border-top: 1px solid rgba(0, 102, 255, 0.18);
    border-bottom: 1px solid rgba(0, 102, 255, 0.18);
}
.ap-speed-items {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.ap-speed-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.15rem;
    background: rgba(10, 10, 10, 0.35);
    border: 1px solid rgba(0, 102, 255, 0.18);
    border-radius: 999px;
    color: var(--ap-text);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ===================================
   RESPONSIVE - NEW BLOCKS
   =================================== */
@media (max-width: 768px) {
    .ap-stack-grid { grid-template-columns: 1fr; }
    .ap-code-list { grid-template-columns: 1fr; }
    .ap-cycle-arrow { display: none; }
}

/* Empêche la coupure des mots sur tous les appareils */
html, body {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

/* Sécurité supplémentaire sur les textes principaux */
h1, h2, h3, h4, h5, h6,
p, span, a, li, button {
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

/* ===============================
   BLOC IDENTITÉ
=============================== */

.ap-identity {
    background: var(--ap-dark);
}

.ap-identity-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 20px;
    text-align: center;
}

.ap-identity-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.ap-identity-avatar {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FF7A18, #FF3D00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
}

.ap-identity-headtext h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ap-text);
}

.ap-identity-role {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    color: var(--ap-text-secondary);
}

.ap-identity-proof {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: var(--ap-accent);
    font-weight: 600;
}

.ap-identity-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 1rem 0 2rem;
}

.ap-identity-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: 0.75rem;
    color: var(--ap-text-secondary);
    font-size: 0.95rem;
}

.ap-identity-list li::before {
    content: "✔";
    color: var(--ap-accent);
    margin-right: 0.6rem;
}

.ap-identity-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.ap-id-btn {
    padding: 0.75rem 1.4rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.2s;
}

.ap-id-linkedin {
    background: #0A66C2;
    color: white;
}

.ap-id-linkedin:hover {
    opacity: 0.9;
}

.ap-id-malt {
    background: #FF6A00;
    color: white;
}

.ap-id-malt:hover {
    opacity: 0.9;
}

/* responsive */

@media (max-width: 768px) {
    .ap-identity-card {
        padding: 2rem 1.5rem;
    }

    .ap-identity-header {
        flex-direction: column;
        text-align: center;
    }

    .ap-identity-buttons {
        flex-direction: column;
    }

    .ap-id-btn {
        width: 100%;
        text-align: center;
    }
}


/* ===================================
   PROFILE CARD – VERSION ABOUT PREMIUM
   =================================== */

.ap-profile {
    padding: 5rem 1.5rem;
    background: #F9FAFB;
}

/* Card */

.ap-profile-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;

    background: #111827;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;

    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);

    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ap-profile-card:hover {
    transform: translateY(-6px) translateZ(0);
    box-shadow: 0 40px 110px rgba(15, 23, 42, 0.28);
}

/* Title */

.ap-profile-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #F9FAFB;
    letter-spacing: -0.02em;
}

/* Layout */

.ap-profile-content {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

/* Avatar */

.ap-profile-avatar {
    width: 110px;
    height: 110px;
    border-radius: 26px;

    background: linear-gradient(135deg, #0066FF, #00A3FF);
    color: white;

    font-weight: 900;
    font-size: 2rem;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    box-shadow: 0 10px 30px rgba(0,102,255,0.35);
}

/* Info */

.ap-profile-info h3 {
    margin: 0 0 0.4rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #F9FAFB;
}

.ap-profile-role {
    margin: 0 0 1.2rem;
    color: #D1D5DB;
    font-size: 1rem;
}

/* List */

.ap-profile-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;

    color: #D1D5DB;
    font-size: 0.98rem;
    line-height: 1.75;
}

.ap-profile-checks li {
    margin-bottom: 0.4rem;
}

.ap-profile-checks li::before {
    content: "✔ ";
    color: #22C55E;
    font-weight: bold;
}

/* Buttons */

.ap-profile-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ap-profile-btn {
    padding: 0.85rem 1.4rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;

    transform: translateZ(0);
    will-change: transform;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border 0.18s ease,
        color 0.18s ease;
}

.ap-profile-btn:hover {
    transform: translateY(-2px);
}

/* LinkedIn */

.ap-profile-btn.linkedin {
    background: #0A66C2;
    color: white;
    box-shadow: 0 6px 18px rgba(10,102,194,0.35);
}

.ap-profile-btn.linkedin:hover {
    box-shadow: 0 10px 24px rgba(10,102,194,0.45);
}

/* Malt */

.ap-profile-btn.malt {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    color: #F9FAFB;
}

.ap-profile-btn.malt:hover {
    border-color: #3B82F6;
    color: #3B82F6;
}

/* Responsive */

@media (max-width: 768px) {

    .ap-profile-card {
        padding: 2.2rem 1.6rem;
    }

    .ap-profile-title {
        font-size: 1.5rem;
    }

    .ap-profile-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.8rem;
    }

    .ap-profile-links {
        justify-content: center;
    }
}

.ap-profile {
    padding: 5rem 1.5rem;
    background: #000000; /* blanc doux */
}

