﻿
    /* ====================
       RESET
    ==================== */
    
    .emplifyer-ai-page { margin: 0; padding: 0; }
    .emplifyer-ai-page main { margin: 0; padding: 0; }

    /* ====================
       BASE
    ==================== */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       HERO
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .eai-hero {
        background: linear-gradient(180deg, rgba(10, 22, 40, .95) 0%, rgba(13, 50, 96, .88) 50%, rgba(248, 250, 252, 1) 100%);
        min-height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding: 4rem 2rem 6rem;
    }
    .eai-hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        z-index: 2;
        background: rgba(16, 79, 130, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 24px;
        padding: 3rem 2rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    .eai-hero__badge {
        display: inline-flex;
        align-items: center;
        background: linear-gradient(135deg,#7c3aed,#a855f7);
        color: #fff;
        font-size: .85rem;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
        padding: .45rem 1.2rem;
        border-radius: 999px;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 20px rgba(124,58,237,.4);
        animation: eaiBadgeFloat 3s ease-in-out infinite;
    }
    .eai-hero__title {
        font-size: clamp(2.5rem, 6.5vw, 4.5rem);
        font-weight: 900;
        background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #7c3aed 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.1;
        margin-bottom: 1.25rem;
        letter-spacing: -.03em;
        animation: eaiTitleFadeIn 1s ease-out;
    }
    .eai-hero__sub {
        font-size: clamp(1.1rem, 2.2vw, 1.3rem);
        color: rgba(255,255,255,.85);
        line-height: 1.75;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        animation: eaiSubFadeIn 1s ease-out 0.2s both;
    }
    .eai-hero__brain-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
        opacity: 0.6;
        mask-image: linear-gradient(to bottom, 
            transparent 0%, 
            black 10%, 
            black 70%, 
            transparent 100%
        );
        -webkit-mask-image: linear-gradient(to bottom, 
            transparent 0%, 
            black 10%, 
            black 70%, 
            transparent 100%
        );
    }
    #brain-3d-container {
        width: 100%;
        height: 100%;
        pointer-events: none;
    }
    #brain-3d-container canvas {
        width: 100% !important;
        height: 100% !important;
    }
    .eai-hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        z-index: 10;
        background: rgba(16, 79, 130, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 24px;
        padding: 3rem 2rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    .eai-hero__actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
        animation: eaiActionsFadeIn 1s ease-out 0.6s both;
    }
    .eai-hero__trust {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        font-size: .82rem;
        color: #475569;
        font-weight: 500;
        animation: eaiTrustFadeIn 1s ease-out 0.8s both;
    }
    .eai-hero__trust span { display:flex; align-items:center; gap:.3rem; transition: transform .2s ease; }
    .eai-hero__trust span:hover { transform: scale(1.05); }

    @keyframes eaiBadgeFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }
    @keyframes eaiTitleFadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes eaiSubFadeIn {
        from { opacity: 0; transform: translateY(15px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes eaiBrainFadeIn {
        from { opacity: 0; transform: scale(0.9); }
        to { opacity: 1; transform: scale(1); }
    }
    @keyframes eaiActionsFadeIn {
        from { opacity: 0; transform: translateY(15px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes eaiTrustFadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* ====================
       RESPONSIVE
    ==================== */
    @media (max-width: 768px) {
        .eai-hero {
            padding: 4rem 1rem 6rem;
            min-height: auto;
        }
        .eai-hero__content {
            padding: 2rem 1.5rem;
            border-radius: 16px;
        }
        .eai-hero__brain-wrapper {
            top: -10%;
            opacity: 0.5;
            mask-image: linear-gradient(to bottom, 
                transparent 0%, 
                black 5%, 
                black 60%, 
                transparent 100%
            );
            -webkit-mask-image: linear-gradient(to bottom, 
                transparent 0%, 
                black 5%, 
                black 60%, 
                transparent 100%
            );
        }
        .eai-hero__actions {
            flex-direction: column;
            width: 100%;
            gap: 0.75rem;
        }
        .eai-btn {
            width: 100%;
            justify-content: center;
        }
        .eai-hero__trust {
            flex-direction: column;
            gap: 0.5rem;
            font-size: 0.75rem;
        }
    }

    .eai-hero__glow {
        position: absolute;
        top: -200px; left: 50%;
        width: 800px; height: 800px;
        transform: translateX(-50%);
        background: radial-gradient(circle, rgba(124,58,237,.3) 0%, transparent 70%);
        pointer-events: none;
        animation: eaiGlowPulse 8s ease-in-out infinite;
    }
    @keyframes eaiGlowPulse {
        0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
        50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
    }
    .eai-hero__particles {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        pointer-events: none;
        overflow: hidden;
    }
    .eai-hero__particle {
        position: absolute;
        width: 8px; height: 8px;
        background: rgba(124,58,237,.6);
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(124,58,237,.4);
        animation: eaiParticleFloat 15s linear infinite;
    }
    .eai-hero__particle:nth-child(1) { left: 5%; animation-delay: 0s; }
    .eai-hero__particle:nth-child(2) { left: 15%; animation-delay: 2s; }
    .eai-hero__particle:nth-child(3) { left: 25%; animation-delay: 4s; }
    .eai-hero__particle:nth-child(4) { left: 35%; animation-delay: 6s; }
    .eai-hero__particle:nth-child(5) { left: 45%; animation-delay: 8s; }
    .eai-hero__particle:nth-child(6) { left: 55%; animation-delay: 10s; }
    .eai-hero__particle:nth-child(7) { left: 65%; animation-delay: 12s; }
    .eai-hero__particle:nth-child(8) { left: 75%; animation-delay: 14s; }
    .eai-hero__particle:nth-child(9) { left: 85%; animation-delay: 16s; }
    .eai-hero__particle:nth-child(10) { left: 95%; animation-delay: 18s; }
    @keyframes eaiParticleFloat {
        0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
    }
    .eai-hero__inner {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
    }
    #brain-3d-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
        opacity: 0.6;
    }
    @media (max-width: 768px) {
        #brain-3d-container {
            width: 100%;
            height: 100%;
        }
    }
    .eai-hero__badge {
        display: inline-flex;
        align-items: center;
        background: linear-gradient(135deg,#7c3aed,#a855f7);
        color: #fff;
        font-size: .85rem;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
        padding: .45rem 1.2rem;
        border-radius: 999px;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 20px rgba(124,58,237,.4);
        animation: eaiBadgeFloat 3s ease-in-out infinite;
    }
    @keyframes eaiBadgeFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }
    .eai-hero__title {
        font-size: clamp(2.5rem, 6.5vw, 4.5rem);
        font-weight: 900;
        background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #7c3aed 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.1;
        margin-bottom: 1.25rem;
        letter-spacing: -.03em;
        animation: eaiTitleFadeIn 1s ease-out;
    }
    @keyframes eaiTitleFadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .eai-hero__sub {
        font-size: clamp(1.1rem, 2.2vw, 1.3rem);
        color: rgba(255,255,255,.85);
        line-height: 1.75;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        animation: eaiSubFadeIn 1s ease-out 0.2s both;
    }
    @keyframes eaiSubFadeIn {
        from { opacity: 0; transform: translateY(15px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .eai-hero__actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 1.25rem;
    }
    .eai-hero__trust {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        font-size: .82rem;
        color: #475569;
        font-weight: 500;
        animation: eaiTrustFadeIn 1s ease-out 1s both;
    }
    @keyframes eaiTrustFadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .eai-hero__trust span { display:flex; align-items:center; gap:.3rem; transition: transform .2s ease; }
    .eai-hero__trust span:hover { transform: scale(1.05); }

    /* Gauge decoration */
    .eai-hero__deco {
        display: none;
    }
    .eai-gauge-arc { animation: eaiGaugeIn 1.8s ease-out forwards; }
    .eai-gauge-dot { animation: eaiGaugePulse 2s ease-in-out 1.8s infinite; }
    @keyframes eaiGaugeIn {
        from { stroke-dashoffset: 251; }
        to   { stroke-dashoffset: 62; }
    }
    @keyframes eaiGaugePulse {
        0%,100% { r: 8; opacity:1; }
        50%      { r: 11; opacity:.7; }
    }
    @keyframes eaiSplitFadeIn {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .eai-hero__visual {
        animation: eaiBrainFloat 6s ease-in-out infinite;
    }
    @keyframes eaiBrainFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       BUTTONS
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .eai-btn {
        display: inline-flex;
        align-items: center;
        font-weight: 700;
        border-radius: 12px;
        padding: .85rem 2rem;
        font-size: 1rem;
        text-decoration: none;
        transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }
    .eai-btn--primary {
        background: linear-gradient(135deg,#104f82,#1a5f96);
        color: #fff;
        box-shadow: 0 8px 24px rgba(16,79,130,.35);
    }
    .eai-btn--primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
        transition: left .5s;
    }
    .eai-btn--primary:hover::before {
        left: 100%;
    }
    .eai-btn--primary:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 16px 40px rgba(16,79,130,.5);
        color: #fff;
    }
    .eai-btn--ghost {
        background: rgba(255,255,255,.08);
        color: rgba(255,255,255,.85);
        border: 1px solid rgba(255,255,255,.15);
    }
    .eai-btn--ghost:hover {
        background: rgba(255,255,255,.14);
        color: #fff;
        transform: translateY(-3px) scale(1.02);
        border-color: rgba(255,255,255,.3);
        box-shadow: 0 8px 24px rgba(0,0,0,.2);
    }
    .eai-btn--lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       SECTION HEADER
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .eai-section-label {
        display: inline-flex;
        align-items: center;
        background: rgba(16,79,130,.1);
        color: #104f82;
        font-size: .8rem;
        font-weight: 700;
        letter-spacing: .07em;
        text-transform: uppercase;
        padding: .35rem 1rem;
        border-radius: 999px;
        border: 1px solid rgba(16,79,130,.2);
        margin-bottom: 1rem;
    }
    .eai-section-title {
        font-size: clamp(1.6rem,4vw,2.4rem);
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 2rem;
        letter-spacing: -.02em;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       PILLARS
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .eai-pillars {
        padding: 4rem 0;
        background: #f8fafc;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    .eai-pillars__grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.5rem;
        align-items: stretch;
    }
    .eai-pillar {
        background: #fff;
        border-radius: 20px;
        padding: 2.5rem 2rem;
        border: 1px solid #e2e8f0;
        text-align: left;
        position: relative;
        transition: box-shadow .25s, transform .25s;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .eai-pillar:hover {
        box-shadow: 0 16px 48px rgba(0,0,0,.08);
        transform: translateY(-4px);
    }
    .eai-pillar--featured {
        border-color: #104f82;
        box-shadow: 0 0 0 2px rgba(16,79,130,.2), 0 16px 40px rgba(16,79,130,.12);
    }
    .eai-pillar__badge {
        position: absolute;
        top: -12px; left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg,#104f82,#1a5f96);
        color: #fff;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        padding: .25rem .85rem;
        border-radius: 999px;
        white-space: nowrap;
    }
    .eai-pillar__icon {
        width: 56px; height: 56px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
    .eai-pillar__icon--orange { background: rgba(16,79,130,.12); color: #104f82; }
    .eai-pillar__icon--purple { background: rgba(16,79,130,.12); color: #104f82; }
    .eai-pillar__icon--blue   { background: rgba(16,79,130,.12); color: #104f82; }
    .eai-pillar h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: .75rem;
    }
    .eai-pillar p {
        font-size: .93rem;
        color: #64748b;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }
    .eai-pillar__list {
        list-style: none;
        padding: 0; margin: 0;
        display: flex;
        flex-direction: column;
        gap: .55rem;
    }
    .eai-pillar__list li {
        display: flex;
        align-items: center;
        gap: .55rem;
        font-size: .88rem;
        color: #475569;
    }
    .eai-pillar__list li i { color: #104f82; font-size: .75rem; flex-shrink:0; }

    .eai-local-seo {
        background: #f8fafc;
        padding: 2rem 0 4rem;
        margin-top: 0;
        position: relative;
        z-index: 3;
    }
    .eai-local-seo p {
        max-width: 900px;
        margin: 0 auto;
        padding: 1.25rem 1.5rem;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        background: #fff;
        color: #64748b;
        font-size: .95rem;
        line-height: 1.7;
        text-align: center;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       RGPD SECTION
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .eai-rgpd {
        padding: 6rem 0;
        background: linear-gradient(135deg, #0a1628 0%, #1a1040 100%);
    }
    .eai-rgpd__inner {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 4rem;
        align-items: center;
    }
    .eai-rgpd__shield {
        width: 160px; height: 160px;
        background: linear-gradient(135deg, rgba(52,211,153,.15), rgba(52,211,153,.05));
        border: 2px solid rgba(52,211,153,.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        color: #34d399;
        box-shadow: 0 0 60px rgba(52,211,153,.15);
        flex-shrink: 0;
    }
    .eai-rgpd__tag {
        display: inline-flex;
        align-items: center;
        background: rgba(52,211,153,.1);
        color: #34d399;
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .07em;
        text-transform: uppercase;
        padding: .3rem .9rem;
        border-radius: 999px;
        border: 1px solid rgba(52,211,153,.25);
        margin-bottom: 1rem;
    }
    .eai-rgpd__right h2 {
        font-size: clamp(1.6rem,3.5vw,2.4rem);
        font-weight: 800;
        color: #fff;
        margin-bottom: 1rem;
        letter-spacing: -.02em;
    }
    .eai-rgpd__lead {
        font-size: 1.05rem;
        color: rgba(255,255,255,.65);
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    .eai-rgpd__lead strong { color: #fff; }
    .eai-rgpd__items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
        align-items: stretch;
    }
    .eai-rgpd__item {
        display: flex;
        gap: .85rem;
        align-items: flex-start;
        background: rgba(255,255,255,.03);
        border-radius: 12px;
        padding: 1.25rem;
        height: 100%;
    }
    .eai-rgpd__item-icon {
        width: 38px; height: 38px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #34d399;
        font-size: .95rem;
        flex-shrink: 0;
    }
    .eai-rgpd__item strong {
        display: block;
        color: #fff;
        font-size: .9rem;
        margin-bottom: .2rem;
    }
    .eai-rgpd__item span {
        font-size: .82rem;
        color: rgba(255,255,255,.5);
        line-height: 1.5;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       STEPS
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .eai-steps {
        padding: 6rem 0;
        background: #fff;
        text-align: center;
    }
    .eai-steps__grid {
        display: flex;
        align-items: center;
        gap: 1rem;
        justify-content: center;
    }
    .eai-step {
        flex: 1;
        max-width: 300px;
        padding: 2.5rem 2rem;
        background: #f8fafc;
        border-radius: 20px;
        border: 1px solid #e2e8f0;
        text-align: left;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .eai-step__num {
        font-size: 2.5rem;
        font-weight: 900;
        color: #104f82;
        opacity: .25;
        line-height: 1;
        margin-bottom: 1rem;
        letter-spacing: -.05em;
    }
    .eai-step h3 {
        font-size: 1rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: .6rem;
    }
    .eai-step p {
        font-size: .88rem;
        color: #64748b;
        line-height: 1.6;
        margin: 0;
    }
    .eai-step__arrow {
        font-size: 1.25rem;
        color: #cbd5e1;
        flex-shrink: 0;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       STATS
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .eai-stats {
        padding: 4rem 0;
        background: linear-gradient(135deg, #104f82 0%, #1a5f96 100%);
    }
    .eai-stats__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        text-align: center;
    }
    .eai-stat__value {
        font-size: 2.5rem;
        font-weight: 900;
        color: #fff;
        letter-spacing: -.03em;
        line-height: 1;
        margin-bottom: .5rem;
    }
    .eai-stat__label {
        font-size: .82rem;
        color: rgba(255,255,255,.7);
        line-height: 1.5;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       CTA FINAL
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .eai-cta {
        padding: 7rem 0;
        background: #f8fafc;
        text-align: center;
    }
    .eai-cta__inner { max-width: 640px; margin: 0 auto; }
    .eai-cta__icon {
        font-size: 3rem;
        color: #104f82;
        margin-bottom: 1.5rem;
        display: block;
        opacity: .8;
    }
    .eai-cta h2 {
        font-size: clamp(1.6rem,4vw,2.2rem);
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 1rem;
        letter-spacing: -.02em;
    }
    .eai-cta p {
        font-size: 1.05rem;
        color: #64748b;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    .eai-cta__note {
        margin-top: 1rem;
        font-size: .85rem !important;
        color: #94a3b8 !important;
        margin-bottom: 0 !important;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       RESPONSIVE
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    @media (max-width: 991px) {
        .eai-pillars__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
        .eai-rgpd__inner { grid-template-columns: 1fr; gap: 2.5rem; text-align:center; }
        .eai-rgpd__shield { margin: 0 auto; }
        .eai-rgpd__items { grid-template-columns: 1fr; }
        .eai-rgpd__item { text-align:left; }
        .eai-steps__grid { flex-direction: column; }
        .eai-step__arrow { transform: rotate(90deg); }
        .eai-step { max-width: 100%; width: 100%; }
        .eai-stats__grid { grid-template-columns: repeat(2,1fr); }
        .eai-hero__deco { display: none; }
    }
    @media (max-width: 575px) {
        .eai-hero { padding: 5rem 0 3rem; min-height: auto; }
        .eai-hero__title { font-size: 2rem; }
        .eai-stats__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
        .eai-stat__value { font-size: 2rem; }
        .eai-hero__trust { gap: .75rem; font-size: .78rem; }
        .eai-pillars, .eai-steps, .eai-cta { padding: 4rem 0; }
        .eai-rgpd { padding: 4rem 0; }
    }

