﻿/* ==========================================================================
   CAPPS - UNIFIED CONTACT & PRICING DESIGN SYSTEM (EXTRA CLEAN)
   ========================================================================== */

:root {
    --pricing-primary: #1a73e8;
    --pricing-primary-hover: #1557b0;
    --pricing-dark: #0d1b2a;
    --pricing-navy: #1b263b;
    --pricing-bg-light: #f8f9fa;
    --pricing-border: #e2e8f0;
    --pricing-text-main: #1e293b;
    --pricing-text-muted: #64748b;
    --pricing-radius: 16px;
    --pricing-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ==========================================================================
   1. CONTACT EXPERTS SECTION
   ========================================================================== */

.contact-experts {
    position: relative;
    padding: 80px 24px;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #0d1b2a 100%);
    color: #ffffff;
    overflow: hidden;
    border-radius: 24px;
    margin: 60px auto;
    box-shadow: 0 20px 40px rgba(13, 27, 42, 0.25);
    z-index: 2;
}

    .contact-experts::before,
    .contact-experts::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        filter: blur(80px);
        pointer-events: none;
        z-index: 1;
    }

    .contact-experts::before {
        background: rgba(37, 99, 235, 0.35);
        top: -50px;
        left: -50px;
    }

    .contact-experts::after {
        background: rgba(16, 185, 129, 0.25);
        bottom: -50px;
        right: -50px;
    }

    .contact-experts .container {
        position: relative;
        z-index: 2;
    }

    .contact-experts .row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px 0;
    }

    .contact-experts .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

@media (min-width: 992px) {
    .contact-experts .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.contact-experts img {
    max-width: 100%;
    height: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .contact-experts img:hover {
        transform: translateY(-6px) scale(1.02);
    }

.contact-experts .col-lg-6:nth-child(2)::before {
    content: "● Conseillers disponibles";
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #38bdf8;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        border-color: rgba(56, 189, 248, 0.4);
    }

    50% {
        border-color: rgba(16, 185, 129, 0.8);
        color: #34d399;
    }
}

.contact-experts h2 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff !important;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.contact-experts .d-flex {
    display: flex !important;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}


/* ==========================================================================
   2. TARIFS & PRICING TABLE
   ========================================================================== */

.pricing-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 2rem 0;
    padding: 10px 5px;
    -webkit-overflow-scrolling: touch;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #ffffff;
    border-radius: var(--pricing-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--pricing-border);
    font-family: inherit;
}

    .pricing-table thead th {
        padding: 1.75rem 1.25rem 1.5rem;
        text-align: center;
        vertical-align: bottom;
        border-bottom: 2px solid var(--pricing-border);
        position: relative;
        background-color: #ffffff;
    }

        .pricing-table thead th:first-child {
            border-top-left-radius: var(--pricing-radius);
        }

        .pricing-table thead th:last-child {
            border-top-right-radius: var(--pricing-radius);
        }

.pricing-table__feature-head {
    text-align: left !important;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pricing-dark);
    width: 25%;
}

.pricing-plan {
    width: 18.75%;
}

.pricing-plan__name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pricing-dark);
    margin-bottom: 0.5rem;
}

.pricing-plan__price {
    font-size: 0.9rem;
    color: var(--pricing-text-muted);
}

    .pricing-plan__price strong {
        display: block;
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--pricing-dark);
        margin-top: 2px;
    }

.pricing-plan--featured {
    background-color: #f4f8ff !important;
    position: relative;
}

.pricing-plan__badge,
.pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pricing-primary) 0%, #0d52bf 100%);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(26, 115, 232, 0.3);
}

.pricing-plan--featured .pricing-plan__name,
.pricing-plan--featured .pricing-plan__price strong {
    color: var(--pricing-primary);
}

.pricing-table tbody th,
.pricing-table tbody td {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--pricing-border);
    background-color: #ffffff;
    font-size: 0.95rem;
}

.pricing-table tbody th {
    text-align: left;
    font-weight: 600;
    color: var(--pricing-text-main);
}

.pricing-table tbody td {
    text-align: center;
    color: var(--pricing-text-muted);
    transition: var(--pricing-transition);
}

.pricing-table tbody tr:nth-child(even) th,
.pricing-table tbody tr:nth-child(even) td {
    background-color: #fbfcfd;
}

.pricing-table td.is-featured {
    background-color: #f4f8ff !important;
    color: var(--pricing-dark);
    font-weight: 600;
}

.pricing-table tbody tr:hover th,
.pricing-table tbody tr:hover td {
    background-color: #f1f5f9;
}

    .pricing-table tbody tr:hover td.is-featured {
        background-color: #e8f0fe !important;
    }

.pricing-cards {
    display: none;
    flex-direction: column;
    gap: 1.75rem;
    margin: 2rem 0;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: var(--pricing-radius);
    border: 1px solid var(--pricing-border);
    padding: 2rem 1.5rem;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--pricing-transition);
}

.pricing-card--featured {
    border: 2px solid var(--pricing-primary);
    box-shadow: 0 10px 30px -5px rgba(26, 115, 232, 0.25);
}

.pricing-card__head {
    text-align: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--pricing-border);
    margin-bottom: 1.25rem;
}

    .pricing-card__head h3 {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--pricing-dark);
        margin: 0 0 0.5rem 0;
    }

.pricing-card--featured .pricing-card__head h3,
.pricing-card--featured .pricing-card__meta strong {
    color: var(--pricing-primary);
}

.pricing-card__meta {
    margin: 0;
    font-size: 0.9rem;
    color: var(--pricing-text-muted);
}

    .pricing-card__meta strong {
        display: inline-block;
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--pricing-dark);
        margin-left: 4px;
    }

.pricing-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 0;
}

    .pricing-card__list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: 1px dashed var(--pricing-border);
        font-size: 0.9rem;
    }

        .pricing-card__list li:last-child {
            border-bottom: none;
        }

        .pricing-card__list li span:first-child {
            color: var(--pricing-text-muted);
            font-weight: 500;
        }

        .pricing-card__list li span:last-child {
            color: var(--pricing-dark);
            font-weight: 700;
            text-align: right;
            max-width: 60%;
        }

@media (max-width: 991px) {
    .pricing-table-wrapper {
        display: none;
    }

    .pricing-cards {
        display: flex;
    }
}


/* ==========================================================================
   3. TRUSTED CLIENTS SECTION
   ========================================================================== */

.trusted-clients-section {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at 50% 0%, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    z-index: 2;
}

    .trusted-clients-section::before {
        content: '';
        position: absolute;
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
        width: 700px;
        height: 300px;
        background: radial-gradient(ellipse, rgba(79, 70, 229, 0.07) 0%, rgba(255, 255, 255, 0) 75%);
        pointer-events: none;
    }

.trusted-clients-header {
    max-width: 750px;
    margin: 0 auto 55px auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.trusted-clients-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4f46e5;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 50px;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.1);
}

.trusted-clients-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trusted-clients-subtitle {
    font-size: 1.15rem;
    line-height: 1.65;
    color: #475569;
    margin: 0;
}

.trusted-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 22px;
    max-width: 1280px;
    margin: 0 auto 45px auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.trusted-logo-item {
    background: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 22px 26px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 195px;
    height: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

    .trusted-logo-item::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 16px;
        border: 2px solid transparent;
        background: linear-gradient(135deg, #4f46e5, #06b6d4) border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .trusted-logo-item:hover {
        transform: translateY(-8px) scale(1.03);
        border-color: transparent;
        box-shadow: 0 22px 38px -8px rgba(79, 70, 229, 0.18);
    }

        .trusted-logo-item:hover::after {
            opacity: 1;
        }

    .trusted-logo-item img {
        max-height: 50px;
        max-width: 140px;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .trusted-logo-item:hover img {
        transform: scale(1.07);
    }

.trusted-clients-footer {
    margin-top: 35px;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    position: relative;
    z-index: 2;
}

    .trusted-clients-footer span {
        display: inline-block;
        padding: 10px 24px;
        background: #ffffff;
        border-radius: 30px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

@media (max-width: 768px) {
    .trusted-clients-section {
        padding: 60px 15px;
    }

    .trusted-clients-title {
        font-size: 1.85rem;
    }

    .trusted-logos-grid {
        gap: 14px;
    }

    .trusted-logo-item {
        width: calc(50% - 7px);
        min-width: 135px;
        height: 85px;
        padding: 14px;
    }
}


/* ==========================================================================
   4. CONTACT PAGE HERO & FORM (CAPPS SYSTEM)
   ========================================================================== */

body.matek-page.contact-page,
.contact-page__root {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 50%, #e2e8f0 100%);
    overflow-x: hidden;
}

    body.matek-page.contact-page::before,
    body.matek-page.contact-page::after,
    .contact-page__root::before,
    .contact-page__root::after {
        content: '';
        position: absolute;
        width: 800px;
        height: 800px;
        border-radius: 43% 57% 70% 30% / 30% 42% 58% 70%;
        filter: blur(110px);
        z-index: 0;
        opacity: 0.55;
        animation: cappsAuroraWave 18s ease-in-out infinite alternate;
        pointer-events: none;
    }

    body.matek-page.contact-page::before,
    .contact-page__root::before {
        top: -150px;
        left: -200px;
        background: radial-gradient(circle, rgba(79, 70, 229, 0.4) 0%, rgba(6, 182, 212, 0.3) 50%, transparent 80%);
    }

    body.matek-page.contact-page::after,
    .contact-page__root::after {
        top: 45%;
        right: -250px;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, rgba(236, 72, 153, 0.25) 50%, transparent 80%);
        animation-delay: -7s;
        animation-duration: 22s;
    }

@keyframes cappsAuroraWave {
    0% {
        transform: translateY(0px) scale(1) rotate(0deg);
    }

    50% {
        transform: translateY(60px) scale(1.15) rotate(15deg);
    }

    100% {
        transform: translateY(-40px) scale(0.9) rotate(-15deg);
    }
}

.contact-page-hero {
    position: relative;
    padding: 7rem 0 4rem;
    text-align: center;
    overflow: hidden;
    z-index: 2;
}

.contact-page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    background: rgba(255, 255, 255, 0.9);
    color: #4f46e5;
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
    letter-spacing: 0.8px;
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.15);
}

.contact-page-hero__title {
    font-size: clamp(2.75rem, 5vw, 3.75rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 25px;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.contact-page-hero__accent {
    background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.contact-page-hero__lead {
    font-size: 1.225rem;
    color: #334155;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Contact UI Form Container & Shell */
.contact-page-form-section {
    position: relative;
    padding: 2rem 0 6rem;
    z-index: 2;
}

main.contact-page .contact-page-form-section {
    padding: 0 !important;
}

    main.contact-page .contact-page-form-section > .container {
        display: flex;
        justify-content: center;
    }

.contact-ui {
    max-width: 880px;
    margin: 30px auto 100px;
}

.contact-ui__card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.12), 0 0 40px rgba(79, 70, 229, 0.06);
    padding: 65px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    width: 100%;
}

    .contact-ui__card:hover {
        box-shadow: 0 45px 90px -20px rgba(79, 70, 229, 0.22);
        transform: translateY(-4px);
    }

.contact-ui__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    box-sizing: border-box;
    width: 100%;
}

.contact-ui__full {
    grid-column: span 2;
    min-width: 0;
}

.contact-ui__cell {
    grid-column: span 1;
    min-width: 0;
}

.contact-ui__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px !important;
    border-radius: 16px;
    margin-bottom: 6px;
    border: 0px solid #e2e8f0 !important;
}

.contact-ui__title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-ui__input,
.contact-ui__select,
.contact-ui__textarea {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 24px;
    font-size: 1.05rem;
    font-family: inherit;
    color: #0f172a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

    .contact-ui__input::placeholder,
    .contact-ui__textarea::placeholder {
        color: #94a3b8;
    }

    .contact-ui__input:hover,
    .contact-ui__select:hover,
    .contact-ui__textarea:hover {
        border-color: #cbd5e1;
    }

    .contact-ui__input:focus,
    .contact-ui__select:focus,
    .contact-ui__textarea:focus {
        border-color: #4f46e5;
        box-shadow: 0 0 0 6px rgba(79, 70, 229, 0.12);
        outline: none;
        background: #ffffff;
    }

.contact-ui__textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-ui__select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.contact-ui__legal p {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
    margin-top: 16px;
    line-height: 1.6;
}

.contact-ui__actions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.contact-ui__submit {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 50%, #3730a3 100%);
    color: #ffffff;
    font-weight: 800;
    padding: 20px 36px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    box-shadow: 0 15px 30px -6px rgba(79, 70, 229, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

    .contact-ui__submit::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.25), transparent);
        transform: rotate(45deg) translateX(-100%);
        transition: transform 0.7s ease-in-out;
    }

    .contact-ui__submit:hover::after {
        transform: rotate(45deg) translateX(100%);
    }

    .contact-ui__submit:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 40px -6px rgba(79, 70, 229, 0.7);
        background: linear-gradient(135deg, #4338ca 0%, #3730a3 50%, #312e81 100%);
    }

.portages_contact_bloc_56 {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 0.875rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.04);
}

.portages_contact_bloc_55 {
    font-size: 0.975rem;
    font-weight: 600;
    color: #4f46e5;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-ui__grid {
        grid-template-columns: 1fr;
    }

    .contact-ui__cell {
        grid-column: span 2;
    }

    .contact-ui__card {
        padding: 35px 22px;
        border-radius: 22px;
    }

    .contact-page-hero__title {
        font-size: 2.5rem;
    }

    .contact-page-hero {
        padding: 70px 0 35px;
    }
}

/****/

/* ==========================================================================
   CAPPS ELITE HOLOGRAPHIC SAAS DESIGN SYSTEM — NO VARIABLES & EXTRA CLEAN
   ========================================================================== */

/* ==========================================================================
   1. BASE ATMOSPHERE & BACKGROUND AURORA
   ========================================================================== */

body.matek-page.contact-page,
.contact-page__root {
    position: relative !important;
    background-color: #030509 !important;
    color: #f1f5f9 !important;
    font-family: 'Inter', sans-serif !important;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased !important;
}

    body.matek-page.contact-page::before,
    .contact-page__root::before {
        content: "" !important;
        position: fixed !important;
        top: 10% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 900px !important;
        height: 550px !important;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(168, 85, 247, 0.08) 50%, transparent 75%) !important;
        filter: blur(160px) !important;
        pointer-events: none !important;
        z-index: 0 !important;
        animation: cappsEliteBreath 10s ease-in-out infinite alternate !important;
    }

@keyframes cappsEliteBreath {
    0% {
        transform: translateX(-50%) scale(0.92);
        opacity: 0.6;
    }

    100% {
        transform: translateX(-50%) scale(1.12);
        opacity: 1;
    }
}

.contact-page-hero,
.contact-page-form-section,
.contact-experts {
    position: relative !important;
    z-index: 2 !important;
}


/* ==========================================================================
   2. HERO SECTION & GRID (LEFT COLUMN)
   ========================================================================== */

.contact-page-hero {
    padding: 70px 0 40px !important;
}

.capps-contact-hero-grid {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 60px !important;
    align-items: center !important;
    margin-top: 30px !important;
    margin-bottom: 50px !important;
}

@media (max-width: 992px) {
    .capps-contact-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

.contact-page-hero__heading {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    position: relative !important;
    z-index: 3 !important;
}

.contact-page-hero__eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 22px !important;
    background: rgba(99, 102, 241, 0.08) !important;
    border: 1px solid rgba(99, 102, 241, 0.25) !important;
    border-radius: 9999px !important;
    color: #818cf8 !important;
    font-weight: 700 !important;
    font-size: 0.825rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 24px !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.3) !important;
}

    .contact-page-hero__eyebrow i {
        font-size: 1.1rem !important;
        color: #6366f1 !important;
    }

.contact-page-hero__title {
    font-size: clamp(2.75rem, 4.5vw, 3.75rem) !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    letter-spacing: -0.04em !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
}

.contact-page-hero__accent {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #06b6d4 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(0 2px 15px rgba(99, 102, 241, 0.3)) !important;
}

.contact-page-hero__lead {
    font-size: 1.125rem !important;
    line-height: 1.75 !important;
    color: #94a3b8 !important;
    font-weight: 400 !important;
    margin-bottom: 36px !important;
    max-width: 580px !important;
}

/* Reassurance Grid */
.capps-reassurance-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    width: 100% !important;
    margin-bottom: 32px !important;
}

@media (max-width: 576px) {
    .capps-reassurance-grid {
        grid-template-columns: 1fr !important;
    }
}

.capps-reassurance-badge-item {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    background: rgba(30, 41, 59, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
    padding: 16px 20px !important;
    border-radius: 18px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #f1f5f9 !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

    .capps-reassurance-badge-item:hover {
        border-color: rgba(99, 102, 241, 0.5) !important;
        transform: translateY(-4px) !important;
    }

    .capps-reassurance-badge-item i {
        font-size: 1.35rem !important;
        color: #818cf8 !important;
        background: rgba(99, 102, 241, 0.15) !important;
        padding: 10px !important;
        border-radius: 12px !important;
        flex-shrink: 0 !important;
    }

/* Secondary CTA Group */
.capps-secondary-cta-group {
    display: flex !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    margin-bottom: 12px !important;
}

.capps-btn-secondary-action {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 14px 24px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 14px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
    backdrop-filter: blur(15px) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

    .capps-btn-secondary-action:hover {
        background: rgba(99, 102, 241, 0.2) !important;
        border-color: rgba(99, 102, 241, 0.5) !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 15px 35px rgba(99, 102, 241, 0.35) !important;
    }

/* Testimonial Box */
.capps-testimonial-box {
    background: rgba(15, 23, 42, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-left: 4px solid #6366f1 !important;
    padding: 22px 26px !important;
    border-radius: 0 20px 20px 0 !important;
    margin-top: 24px !important;
    width: 100% !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.8) !important;
}

    .capps-testimonial-box p {
        font-style: italic !important;
        color: #cbd5e1 !important;
        font-size: 0.95rem !important;
        line-height: 1.65 !important;
        margin-bottom: 10px !important;
    }

    .capps-testimonial-box span {
        font-size: 0.8rem !important;
        color: #818cf8 !important;
        font-weight: 800 !important;
        letter-spacing: 0.05em !important;
        text-transform: uppercase !important;
    }


/* ==========================================================================
   3. CONTACT FORM & CARD (RIGHT COLUMN)
   ========================================================================== */

.contact-page-form-section {
    position: relative !important;
    padding: 0 !important;
}

.contact-ui {
    max-width: 100% !important;
}

.contact-ui__card {
    background: rgba(13, 19, 33, 0.85) !important;
    border: 1px solid rgba(99, 102, 241, 0.4) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 32px !important;
    padding: 38px !important;
    box-shadow: 0 35px 70px -20px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(30px) !important;
}

.contact-form-header-group {
    margin-bottom: 20px !important;
}

    .contact-form-header-group h3,
    .contact-ui__card h3 {
        color: #fff !important;
        font-size: 1.35rem !important;
        font-weight: 800 !important;
        margin-bottom: 6px !important;
    }

    .contact-form-header-group p,
    .contact-ui__card p:not(.contact-ui__legal p) {
        color: #94a3b8 !important;
        font-size: 0.875rem !important;
    }

.contact-ui__grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.contact-ui__full {
    grid-column: span 2 !important;
}

.contact-ui__cell {
    grid-column: span 1 !important;
}

@media (max-width: 768px) {
    .contact-ui__cell {
        grid-column: span 2 !important;
    }
}

.contact-ui__head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    padding-bottom: 12px !important;
    margin-bottom: 4px !important;
}

.contact-ui__title {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #cbd5e1 !important;
    letter-spacing: 0.02em !important;
}

.contact-ui__input,
.contact-ui__select,
.contact-ui__textarea {
    background: rgba(8, 13, 24, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #f8fafc !important;
    border-radius: 16px !important;
    padding: 15px 18px !important;
    font-size: 0.925rem !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    width: 100% !important;
    outline: none !important;
}

    .contact-ui__input::placeholder,
    .contact-ui__textarea::placeholder {
        color: #64748b !important;
    }

    .contact-ui__input:focus,
    .contact-ui__select:focus,
    .contact-ui__textarea:focus {
        border-color: #818cf8 !important;
        background: rgba(15, 23, 42, 0.95) !important;
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    }

.contact-ui__select {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23818cf8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1.25rem center !important;
    background-size: 1rem !important;
    padding-right: 3rem !important;
    cursor: pointer !important;
}

.contact-ui__textarea {
    resize: vertical !important;
    min-height: 130px !important;
}

.contact-ui__legal p {
    color: #64748b !important;
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.capps-security-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 0.825rem !important;
    color: #94a3b8 !important;
    margin-top: 10px !important;
    font-weight: 500 !important;
}

    .capps-security-badge i {
        color: #34d399 !important;
        font-size: 1.1rem !important;
        filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.6)) !important;
    }

.contact-ui__submit,
#portages_contact_envoi_mail_btn {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #06b6d4 100%) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    border-radius: 16px !important;
    padding: 16px !important;
    width: 100% !important;
    border: none !important;
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer !important;
    letter-spacing: 0.02em !important;
}

    .contact-ui__submit:hover,
    #portages_contact_envoi_mail_btn:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 18px 45px rgba(99, 102, 241, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    }


/* ==========================================================================
   4. CONTACT EXPERTS SECTION
   ========================================================================== */

.contact-experts {
    position: relative !important;
    padding: 70px 24px !important;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #0d1b2a 100%) !important;
    color: #ffffff !important;
    overflow: hidden !important;
    border-radius: 28px !important;
    margin: 60px auto !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 25px 50px rgba(13, 27, 42, 0.4) !important;
}

.contact-experts__grid {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 40px !important;
}

.contact-experts__visual {
    flex: 1 !important;
    min-width: 300px !important;
    text-align: center !important;
}

.contact-experts__img {
    max-width: 100% !important;
    height: auto !important;
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px) !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

    .contact-experts__img:hover {
        transform: translateY(-6px) scale(1.02) !important;
    }

.contact-experts__content {
    flex: 1.2 !important;
    min-width: 300px !important;
}

.contact-experts__title {
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    color: #ffffff !important;
    margin-bottom: 24px !important;
    letter-spacing: -0.5px !important;
}

.contact-experts__actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    align-items: center !important;
}

.contact-experts .btn-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 16px 28px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer !important;
}

.contact-experts .btn-cta--primary {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #06b6d4 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

    .contact-experts .btn-cta--primary:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 15px 30px rgba(99, 102, 241, 0.6) !important;
    }

.contact-experts .btn-cta--secondary {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
}

    .contact-experts .btn-cta--secondary:hover {
        background: rgba(255, 255, 255, 0.12) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        transform: translateY(-3px) !important;
    }
