.ap-page {
    --ap-navy: #071f3d;
    --ap-navy-2: #0b2c55;
    --ap-blue: #12365f;
    --ap-gold: #d39a12;
    --ap-gold-2: #b98308;
    --ap-text: #172033;
    --ap-muted: #5f6877;
    --ap-line: #e7ebf0;
    --ap-soft: #f5f7fa;
    --ap-white: #fff;
    --ap-shadow: 0 18px 45px rgba(7, 31, 61, .10);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ap-text);
    background: #fff;
    line-height: 1.55;
    width: 100%;
    overflow: hidden;
}

.ap-page * {
    box-sizing: border-box;
}

.ap-wrap {
    width: min(100% - 48px, 1180px);
    margin: 0 auto;
}

.ap-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 26px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--ap-gold), var(--ap-gold-2));
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 14px 26px rgba(211, 154, 18, .26);
}

.ap-btn svg {
    width: 17px;
    height: 17px;
}

.ap-kicker {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ap-gold-2);
    font-weight: 900;
    margin: 0 0 8px;
}

.ap-h2 {
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.13;
    letter-spacing: -.035em;
    color: var(--ap-navy);
    font-weight: 900;
    margin: 0;
}

.ap-rule {
    width: 52px;
    height: 3px;
    background: var(--ap-gold);
    border-radius: 20px;
    margin: 20px 0 24px;
}

.ap-text {
    font-size: 17px;
    color: #2f3746;
    margin: 0;
}

.ap-hero {
    position: relative;
    min-height: 525px;
    display: flex;
    align-items: center;
    background: #f3f5f7;
    isolation: isolate;
}

.ap-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .92) 34%, rgba(255, 255, 255, .64) 56%, rgba(255, 255, 255, .12) 78%), url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=2800&q=95");
    background-size: cover;
    background-position: center 48%;
    z-index: -2;
}

.ap-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 150px;
    background: linear-gradient(0deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0));
    z-index: -1;
}

.ap-hero-inner {
    padding: 72px 0 58px;
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 40px;
    align-items: center;
}

.ap-hero-content {
    max-width: 650px;
}

.ap-hero h1 {
    font-size: clamp(34px, 4.1vw, 52px);
    line-height: 1.08;
    letter-spacing: -.055em;
    color: var(--ap-navy);
    font-weight: 950;
    margin: 0;
}

.ap-hero .ap-lead {
    font-size: 18px;
    color: #232b39;
    max-width: 590px;
    margin: 0 0 16px;
}

.ap-hero .ap-lead strong {
    font-weight: 850;
    color: var(--ap-navy);
}

.ap-contact-card {
    align-self: center;
    justify-self: end;
    width: min(100%, 370px);
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(231, 235, 240, .95);
    border-radius: 22px;
    padding: 26px;
    box-shadow: var(--ap-shadow);
    backdrop-filter: blur(12px);
}

.ap-contact-card small {
    display: block;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ap-gold-2);
    font-weight: 900;
    font-size: 12px;
    margin-bottom: 7px;
}

.ap-contact-card h2 {
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--ap-navy);
    margin: 0 0 16px;
    font-weight: 950;
}

.ap-contact-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ap-contact-list a,
.ap-contact-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #253044;
    text-decoration: none;
    font-size: 15px;
    font-weight: 750;
}

.ap-contact-list svg {
    width: 18px;
    height: 18px;
    color: var(--ap-gold-2);
    flex: 0 0 18px;
}

.ap-intro {
    padding: 56px 0 44px;
    background: #fff;
}

.ap-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 66px;
    align-items: center;
}

.ap-photo {
    width: 100%;
    height: 315px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 18px 42px rgba(7, 31, 61, .12);
    background: #e9edf2;
}

.ap-intro-copy p {
    font-size: 17px;
    color: #354052;
    margin: 0 0 17px;
}

.ap-expertise {
    padding: 54px 0 64px;
    background: linear-gradient(180deg, #f7f8fa, #fff);
}

.ap-center {
    text-align: center;
}

.ap-center .ap-rule {
    margin-left: auto;
    margin-right: auto;
}

.ap-domain-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.ap-domain {
    min-height: 150px;
    background: #fff;
    border: 1px solid var(--ap-line);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(7, 31, 61, .06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 12px;
    color: var(--ap-navy);
    font-weight: 850;
    font-size: 15px;
    line-height: 1.25;
}

.ap-domain svg {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    stroke: var(--ap-navy);
    stroke-width: 1.8;
    fill: none;
}
.ap-domain-link {
    text-decoration: none !important; 
    color: var(--ap-navy); 
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
}


.ap-domain-link:hover {
    color: var(--ap-navy); 
    transform: translateY(-3px); 
    box-shadow: 0 14px 35px rgba(7, 31, 61, .12); 
}
.ap-values {
    padding: 54px 0 42px;
    background: #fff;
}

.ap-values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 28px;
}

.ap-value {
    padding: 10px 24px;
    text-align: center;
    border-right: 1px solid var(--ap-line);
}

.ap-value:last-child {
    border-right: none;
}

.ap-value svg {
    width: 48px;
    height: 48px;
    color: var(--ap-gold);
    stroke: var(--ap-gold);
    fill: none;
    stroke-width: 1.7;
    margin-bottom: 14px;
}

.ap-value h3 {
    font-size: 17px;
    line-height: 1.25;
    color: var(--ap-navy);
    margin: 0 0 10px;
    font-weight: 900;
}

.ap-value p {
    font-size: 14px;
    line-height: 1.45;
    color: #4f5a6b;
    margin: 0;
}

.ap-vision {
    padding: 38px 0 64px;
    background: #fff;
}

.ap-vision-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 54px;
    align-items: stretch;
}

.ap-vision-copy p {
    font-size: 17px;
    color: #2d3646;
    margin: 0 0 15px;
    max-width: 650px;
}

.ap-map-card {
    position: relative;
    overflow: hidden;
    background: #f2f4f7;
    border-radius: 14px;
    padding: 34px 36px;
    display: block;
    min-height: 250px;
    isolation: isolate;
}

.ap-map-card {
    background: #f0f2f6 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 320'%3E%3Cpath d='M139 27 L217 42 L285 20 L326 78 L384 103 L350 168 L376 232 L304 248 L267 300 L203 263 L142 286 L91 232 L44 216 L73 154 L44 97 L98 73 Z' fill='%23d7dce4'/%3E%3Ccircle cx='252' cy='122' r='13' fill='%23d49a00'/%3E%3Ccircle cx='252' cy='122' r='27' fill='none' stroke='%23d49a00' stroke-width='7' opacity='.28'/%3E%3C/svg%3E") right 34px center/270px auto no-repeat;
}

.ap-map-card>div {
    max-width: 360px;
}

.ap-map-card svg.ap-pin {
    width: 46px;
    height: 46px;
    color: var(--ap-gold);
    stroke: var(--ap-gold);
    fill: none;
    stroke-width: 1.7;
    margin-bottom: 12px;
}

.ap-map-card h3 {
    font-size: 22px;
    line-height: 1.2;
    color: var(--ap-navy);
    margin: 0 0 18px;
    font-weight: 950;
    letter-spacing: -.025em;
}

.ap-map-card p {
    font-size: 16px;
    color: #303a4a;
    margin: 0 0 14px;
}

.ap-france-svg {
    display: none;
}

.ap-final-cta {
    padding: 0 0 64px;
    background: #fff;
}

.ap-cta-box {
    background: linear-gradient(135deg, var(--ap-navy), var(--ap-navy-2));
    border-radius: 8px;
    min-height: 112px;
    padding: 28px 38px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    box-shadow: 0 18px 35px rgba(7, 31, 61, .16);
}

.ap-handshake {
    width: 74px;
    height: 74px;
    color: var(--ap-gold);
    opacity: .95;
}

.ap-cta-box h2 {
    color: #fff;
    font-size: 28px;
    line-height: 1.1;
    margin: 0 0 7px;
    font-weight: 950;
    letter-spacing: -.03em;
}

.ap-cta-box p {
    color: #e8eef6;
    font-size: 16px;
    margin: 0;
    max-width: 720px;
}



.ap-contact-form-section {
    padding: 0 0 74px;
    background: #fff;
}

.ap-form-shell {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
    align-items: start;
    background: linear-gradient(135deg, #f7f9fc, #ffffff);
    border: 1px solid var(--ap-line);
    border-radius: 18px;
    padding: 38px;
    box-shadow: 0 18px 42px rgba(7, 31, 61, .08);
}

.ap-form-copy h2 {
    font-size: clamp(28px, 2.8vw, 40px);
    line-height: 1.12;
    letter-spacing: -.035em;
    color: var(--ap-navy);
    font-weight: 950;
    margin: 0 0 18px;
}

.ap-form-copy p {
    font-size: 17px;
    color: #344052;
    margin: 0 0 14px;
}

.ap-form-copy strong {
    color: var(--ap-navy);
    font-weight: 900;
}

.ap-form-box {
    background: #fff;
    border: 1px solid var(--ap-line);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(7, 31, 61, .10);
}

.ap-form {
    display: grid;
    gap: 15px;
}

.ap-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ap-form label {
    display: block;
    font-size: 13px;
    font-weight: 850;
    color: #344052;
    margin-bottom: 6px;
}

.ap-form input,
.ap-form select,
.ap-form textarea {
    width: 100%;
    border: 1px solid #d8e0ea;
    border-radius: 10px;
    padding: 13px 14px;
    font: inherit;
    font-size: 15px;
    background: #fbfdff;
    color: var(--ap-text);
    outline: none;
}

.ap-form textarea {
    min-height: 110px;
    resize: vertical;
}

.ap-form input:focus,
.ap-form select:focus,
.ap-form textarea:focus {
    border-color: var(--ap-gold);
    box-shadow: 0 0 0 4px rgba(211, 154, 18, .12);
}

.ap-form-privacy {
    font-size: 12px;
    line-height: 1.45;
    color: #667085;
    margin: 0;
}

.ap-submit {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--ap-gold), var(--ap-gold-2));
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 14px 26px rgba(211, 154, 18, .24);
}

.ap-rdv-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ap-navy);
    font-weight: 850;
    text-decoration: none;
    border-bottom: 2px solid var(--ap-gold);
    padding-bottom: 3px;
}

.ap-seo-note {
    display: none;
}

@media(max-width:1080px) {
    .ap-domain-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .ap-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }

    .ap-value {
        border-right: none;
        border-bottom: 1px solid var(--ap-line);
        padding-bottom: 22px;
    }

    .ap-value:last-child {
        border-bottom: none;
    }
}

@media(max-width:860px) {
    .ap-wrap {
        width: min(100% - 30px, 1180px);
    }

    .ap-hero {
        min-height: auto;
    }

    .ap-hero-inner,
    .ap-intro-grid,
    .ap-vision-grid,
    .ap-form-shell {
        grid-template-columns: 1fr;
    }

    .ap-hero::before {
        background-image: linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .88)), url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=1800&q=92");
    }

    .ap-contact-card {
        justify-self: start;
    }

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

    .ap-map-card::after {
        right: 16px;
        opacity: .32;
    }
}

@media(max-width:620px) {
    .ap-domain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .ap-hero h1 {
        font-size: 38px;
    }

    .ap-hero-inner {
        padding: 52px 0;
    }

    .ap-photo {
        height: 240px;
    }

    .ap-cta-box,
    .ap-form-shell,
    .ap-form-box {
        padding: 28px 22px;
    }

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