/* ============================================
   OCI Express - Page Accompagnement
   Presentation des 5 phases de la procedure OCI,
   timeline animee, formulaire de demande et CTA
   ============================================ */

/* ── Animation de revelation au scroll ── */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO
   ============================================ */
.accomp-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.accomp-hero-bg {
    position: absolute;
    inset: 0;
}

.accomp-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: saturate(0.3);
}

.accomp-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            hsla(220, 20%, 4%, 0.5) 0%,
            hsla(220, 20%, 4%, 0.7) 40%,
            hsla(220, 20%, 4%, 0.95) 80%,
            var(--background) 100%
        );
}

/* ── Orbes decoratives ── */
.accomp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0;
    animation: orbFadeIn 2s ease forwards;
}

.accomp-orb-1 {
    width: 28rem;
    height: 28rem;
    top: 10%;
    left: -8%;
    background: hsla(43, 89%, 50%, 0.06);
    animation-delay: 0.3s;
}

.accomp-orb-2 {
    width: 20rem;
    height: 20rem;
    bottom: 15%;
    right: -5%;
    background: hsla(35, 95%, 55%, 0.05);
    animation-delay: 0.6s;
}

.accomp-orb-3 {
    width: 14rem;
    height: 14rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: hsla(43, 89%, 50%, 0.04);
    animation-delay: 0.9s;
}

@keyframes orbFadeIn {
    to { opacity: 1; }
}

/* ── Motif grille subtil ── */
.accomp-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(hsla(43, 89%, 50%, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, hsla(43, 89%, 50%, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}

/* ── Contenu du hero ── */
.accomp-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 52rem;
    margin: 0 auto;
    padding: 8rem 1rem 5rem;
}

.accomp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: hsla(43, 89%, 50%, 0.08);
    border: 1px solid hsla(43, 89%, 50%, 0.2);
    border-radius: 9999px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.accomp-hero-badge svg {
    color: var(--gold);
}

.accomp-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.7s ease-out 0.3s backwards;
}

.accomp-hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--muted-foreground);
    max-width: 36rem;
    margin: 0 auto 3rem;
    line-height: 1.7;
    animation: fadeInUp 0.7s ease-out 0.4s backwards;
}

/* ── Indicateur de scroll ── */
.accomp-scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid hsla(43, 89%, 50%, 0.25);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    animation: fadeInUp 0.7s ease-out 0.5s backwards;
}

.accomp-scroll-cue:hover {
    background: hsla(43, 89%, 50%, 0.08);
    border-color: hsla(43, 89%, 50%, 0.4);
    transform: translateY(2px);
}

.accomp-scroll-cue svg {
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   CONTENU PRINCIPAL ET SECTIONS
   ============================================ */
.accomp-main {
    position: relative;
}

.accomp-section {
    padding: 5rem 0;
}

.accomp-section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.375rem 1rem;
    background: hsla(43, 89%, 50%, 0.08);
    border: 1px solid hsla(43, 89%, 50%, 0.15);
    border-radius: 9999px;
    margin-bottom: 1.25rem;
}

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

.accomp-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.accomp-section-header p {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

/* ============================================
   INTRODUCTION ET AVANTAGES
   ============================================ */
.accomp-intro-section {
    border-bottom: 1px solid hsla(220, 14%, 18%, 0.3);
}

.accomp-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 768px) {
    .accomp-intro-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 4rem;
    }
}

.accomp-intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--foreground);
    line-height: 1.3;
}

.accomp-intro-text p {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.accomp-intro-text p strong {
    color: var(--foreground);
}

/* ── Pile des avantages ── */
.accomp-benefits-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accomp-benefit {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: hsla(220, 18%, 8%, 0.6);
    border: 1px solid hsla(220, 14%, 18%, 0.4);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.accomp-benefit:hover {
    border-color: hsla(43, 89%, 50%, 0.3);
    transform: translateX(6px);
    background: hsla(220, 18%, 10%, 0.8);
}

.accomp-benefit-glow {
    position: absolute;
    top: 50%;
    left: -20px;
    width: 60px;
    height: 60px;
    background: hsla(43, 89%, 50%, 0.08);
    border-radius: 50%;
    filter: blur(20px);
    transform: translateY(-50%);
    transition: opacity 0.4s ease;
    opacity: 0;
}

.accomp-benefit:hover .accomp-benefit-glow {
    opacity: 1;
}

.accomp-benefit-marker {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsla(43, 89%, 50%, 0.15), hsla(43, 89%, 50%, 0.05));
    border: 1px solid hsla(43, 89%, 50%, 0.2);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.accomp-benefit:hover .accomp-benefit-marker {
    background: linear-gradient(135deg, hsla(43, 89%, 50%, 0.25), hsla(43, 89%, 50%, 0.1));
    border-color: hsla(43, 89%, 50%, 0.4);
    box-shadow: 0 0 20px hsla(43, 89%, 50%, 0.1);
}

.accomp-benefit-marker svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.accomp-benefit-body h4 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0 0 0.2rem;
}

.accomp-benefit-body p {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   TIMELINE
   ============================================ */
.accomp-timeline-section {
    position: relative;
    overflow: hidden;
}

/* ── Decoration ambiante subtile ── */
.accomp-timeline-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50rem;
    height: 50rem;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, hsla(43, 89%, 50%, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.accomp-timeline {
    position: relative;
    max-width: 840px;
    margin: 0 auto;
    padding-left: 40px;
}

/* ── Ligne verticale de suivi ── */
.accomp-timeline-track {
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        hsla(43, 89%, 50%, 0.4) 10%,
        hsla(43, 89%, 50%, 0.15) 50%,
        hsla(220, 14%, 18%, 0.3) 90%,
        transparent 100%
    );
}

/* ── Lueur animee sur la ligne ── */
.accomp-timeline-track-glow {
    position: absolute;
    left: 24px;
    top: 0;
    width: 8px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, hsla(43, 89%, 50%, 0.5), transparent);
    border-radius: var(--radius-xs);
    filter: blur(3px);
    animation: trackGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes trackGlow {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: calc(100% - 80px); opacity: 0; }
}

/* ── Element de phase ── */
.accomp-phase {
    position: relative;
    display: flex;
    gap: 0;
    padding-bottom: 2rem;
}

.accomp-phase:last-child {
    padding-bottom: 0;
}

/* ── Indicateur de phase (cercle numerote) ── */
.accomp-phase-indicator {
    position: absolute;
    left: -40px;
    top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.accomp-phase-ring {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, hsl(35, 85%, 48%) 100%);
    border-radius: 50%;
    box-shadow:
        0 0 0 5px var(--background),
        0 0 0 6px hsla(43, 89%, 50%, 0.2),
        0 4px 20px hsla(43, 89%, 50%, 0.25);
    transition: all 0.4s ease;
}

.accomp-phase:hover .accomp-phase-ring {
    box-shadow:
        0 0 0 5px var(--background),
        0 0 0 6px hsla(43, 89%, 50%, 0.4),
        0 4px 30px hsla(43, 89%, 50%, 0.35);
    transform: scale(1.08);
}

.accomp-phase-ring span {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: hsl(220, 20%, 6%);
}

/* ── Animation de pulsation subtile ── */
.accomp-phase-pulse {
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid hsla(43, 89%, 50%, 0.3);
    animation: phasePulse 3s ease-in-out infinite;
    pointer-events: none;
}

.accomp-phase:nth-child(1) .accomp-phase-pulse { animation-delay: 0s; }
.accomp-phase:nth-child(2) .accomp-phase-pulse { animation-delay: 0.4s; }
.accomp-phase:nth-child(3) .accomp-phase-pulse { animation-delay: 0.8s; }
.accomp-phase:nth-child(4) .accomp-phase-pulse { animation-delay: 1.2s; }
.accomp-phase:nth-child(5) .accomp-phase-pulse { animation-delay: 1.6s; }

@keyframes phasePulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.35); opacity: 0; }
}

/* ── Carte de phase ── */
.accomp-phase-card {
    flex: 1;
    margin-left: 28px;
    background: linear-gradient(135deg, hsla(220, 18%, 8%, 0.8), hsla(220, 16%, 10%, 0.6));
    border: 1px solid hsla(220, 14%, 18%, 0.4);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

/* ── Accent decoratif en coin ── */
.accomp-phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at top right, hsla(43, 89%, 50%, 0.06), transparent 70%);
    pointer-events: none;
}

.accomp-phase-card:hover {
    border-color: hsla(43, 89%, 50%, 0.3);
    box-shadow: 0 8px 40px hsla(0, 0%, 0%, 0.3), 0 0 0 1px hsla(43, 89%, 50%, 0.08);
    transform: translateX(4px);
}

.accomp-phase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.accomp-phase-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.accomp-phase-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.25rem 0.75rem;
    background: hsla(43, 89%, 50%, 0.08);
    border: 1px solid hsla(43, 89%, 50%, 0.15);
    border-radius: 9999px;
}

.accomp-phase-card > p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin: 0 0 1rem;
    line-height: 1.6;
}

/* ── Etiquettes de phase ── */
.accomp-phase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.accomp-phase-tags .service-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.85rem;
    background: hsla(43, 89%, 50%, 0.06);
    border: 1px solid hsla(43, 89%, 50%, 0.15);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    cursor: default;
    transition: all 0.25s ease;
}

.accomp-phase-tags .service-tag:hover {
    background: hsla(43, 89%, 50%, 0.12);
    border-color: hsla(43, 89%, 50%, 0.3);
}

.accomp-phase-tags .service-tag.uploaded {
    background: hsla(160, 84%, 39%, 0.1);
    border-color: hsla(160, 84%, 39%, 0.3);
    color: var(--success);
}

.accomp-phase-tags .service-tag--free {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.35);
    color: var(--gold);
    font-weight: 600;
}

/* ── Lien d'action de phase ── */
.accomp-phase-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--foreground);
    background: transparent;
    border: 1px solid hsla(220, 14%, 18%, 0.5);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
}

.accomp-phase-action:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: hsla(43, 89%, 50%, 0.05);
    transform: translateY(-1px);
}

.accomp-phase-action svg {
    transition: transform 0.3s ease;
}

.accomp-phase-action:hover svg {
    transform: translateY(-2px);
}

/* ============================================
   SECTION DEMANDE
   ============================================ */
.accomp-request-section {
    position: relative;
}

.accomp-request-wrapper {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

/* ── Element de bordure decoratif ── */
.accomp-request-deco {
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, hsla(43, 89%, 50%, 0.15), transparent 40%, transparent 60%, hsla(43, 89%, 50%, 0.1));
    z-index: 0;
    pointer-events: none;
}

.accomp-request-wrapper .request-card {
    position: relative;
    z-index: 1;
    max-width: none;
    margin: 0;
    background: linear-gradient(135deg, hsla(220, 18%, 8%, 0.9), hsla(220, 16%, 6%, 0.95));
    border: 1px solid hsla(220, 14%, 18%, 0.3);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.accomp-request-wrapper .request-header {
    text-align: center;
    margin-bottom: 2rem;
}

.accomp-request-wrapper .request-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
}

.accomp-request-wrapper .request-header p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

/* ── Authentification requise ── */
.auth-required {
    text-align: center;
    padding: 2rem 1rem;
}

.auth-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, hsla(43, 89%, 50%, 0.12), hsla(43, 89%, 50%, 0.04));
    border: 1px solid hsla(43, 89%, 50%, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.auth-icon svg {
    width: 30px;
    height: 30px;
    color: var(--gold);
}

.auth-required h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.auth-required > p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-size: 0.9rem;
}

.create-account {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.create-account a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.create-account a:hover {
    color: var(--gold-light);
}

/* ── Formulaire de reprise ── */
.reprise-form {
    padding: 1rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: hsla(220, 14%, 14%, 0.5);
    border: 1px solid hsla(220, 14%, 18%, 0.4);
    border-radius: var(--radius);
    color: var(--foreground);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.9375rem;
    resize: vertical;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group textarea:focus {
    outline: none;
    border-color: hsla(43, 89%, 50%, 0.5);
    box-shadow: 0 0 0 3px hsla(43, 89%, 50%, 0.08);
}

.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

/* ── Selecteur de phase ── */
.phase-selector {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.6rem;
}

.phase-option {
    cursor: pointer;
}

.phase-option input {
    display: none;
}

.phase-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    background: hsla(220, 14%, 14%, 0.4);
    border: 2px solid hsla(220, 14%, 18%, 0.3);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    text-align: center;
}

.phase-option input:checked + .phase-card {
    border-color: var(--gold);
    background: hsla(43, 89%, 50%, 0.08);
    box-shadow: 0 0 20px hsla(43, 89%, 50%, 0.08);
}

.phase-card:hover {
    border-color: hsla(43, 89%, 50%, 0.4);
    background: hsla(220, 14%, 14%, 0.6);
}

.phase-num {
    width: 34px;
    height: 34px;
    background: hsla(220, 14%, 18%, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--foreground);
    transition: all 0.3s ease;
}

.phase-option input:checked + .phase-card .phase-num {
    background: linear-gradient(135deg, var(--gold), hsl(35, 85%, 48%));
    color: hsl(220, 20%, 6%);
    box-shadow: 0 2px 12px hsla(43, 89%, 50%, 0.3);
}

.phase-name {
    font-size: 0.6875rem;
    color: var(--muted-foreground);
    line-height: 1.3;
}

/* ── Boite d'information ── */
.info-box {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
}

.info-box.warning {
    background: hsla(35, 95%, 55%, 0.06);
    border: 1px solid hsla(35, 95%, 55%, 0.2);
}

.info-box.warning svg {
    width: 20px;
    height: 20px;
    color: var(--amber);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box strong {
    display: block;
    color: var(--amber);
    margin-bottom: 0.25rem;
}

.info-box p {
    color: var(--muted-foreground);
    margin: 0;
}

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

/* ============================================
   SECTION APPEL A L'ACTION (CTA)
   ============================================ */
.accomp-cta-section {
    padding-bottom: 6rem;
}

.accomp-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.accomp-cta-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(43, 89%, 50%, 0.08), transparent 40%, transparent 60%, hsla(43, 89%, 50%, 0.06));
    pointer-events: none;
}

.accomp-cta-inner {
    position: relative;
    text-align: center;
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, hsla(220, 18%, 8%, 0.7), hsla(220, 16%, 10%, 0.5));
    border: 1px solid hsla(43, 89%, 50%, 0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.accomp-cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.accomp-cta-inner > p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.accomp-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
    .accomp-intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .accomp-hero-content {
        padding: 7rem 1rem 4rem;
    }

    .accomp-section {
        padding: 3.5rem 0;
    }

    .phase-selector {
        grid-template-columns: repeat(3, 1fr);
    }

    .accomp-timeline {
        padding-left: 32px;
    }

    .accomp-timeline-track {
        left: 22px;
    }

    .accomp-timeline-track-glow {
        left: 19px;
    }

    .accomp-phase-indicator {
        left: -32px;
    }

    .accomp-phase-ring {
        width: 46px;
        height: 46px;
    }

    .accomp-phase-pulse {
        width: 46px;
        height: 46px;
    }

    .accomp-phase-ring span {
        font-size: 1.1rem;
    }

    .accomp-phase-card {
        margin-left: 20px;
        padding: 1.25rem;
    }

    .accomp-section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .accomp-hero {
        min-height: 70vh;
    }

    .accomp-hero-content {
        padding: 6rem 1rem 3rem;
    }

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

    .phase-selector .phase-option:last-child {
        grid-column: span 2;
    }

    .accomp-request-wrapper .request-card {
        padding: 1.75rem;
        border-radius: var(--radius-lg);
    }

    .accomp-phase-card {
        padding: 1rem;
    }

    .accomp-cta-inner {
        padding: 2.5rem 1.25rem;
    }

    .accomp-cta-buttons {
        flex-direction: column;
    }

    .accomp-cta-buttons .btn {
        width: 100%;
    }

    .accomp-phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 360px) {
    .accomp-hero__title {
        font-size: 1.3rem;
    }

    .accomp-hero__subtitle {
        font-size: 0.85rem;
    }

    .accomp-phase-indicator {
        width: 36px;
        height: 36px;
    }

    .accomp-phase-num {
        font-size: 0.75rem;
    }

    .accomp-phase-card {
        padding: 1.25rem;
    }

    .accomp-phase-title {
        font-size: 1rem;
    }

    .accomp-phase-desc {
        font-size: 0.8rem;
    }

    .accomp-benefit {
        padding: 1rem;
    }

    .accomp-benefit__title {
        font-size: 0.9rem;
    }

    .accomp-cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   ACCESSIBILITE - REDUCTION DES ANIMATIONS
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }

    .accomp-orb {
        animation: none !important;
        opacity: 1;
    }

    .accomp-hero-badge,
    .accomp-hero h1,
    .accomp-hero-sub,
    .accomp-scroll-cue {
        animation: none !important;
    }

    .accomp-scroll-cue {
        transition-duration: 0.01ms !important;
    }

    .accomp-scroll-cue:hover {
        transform: none;
    }

    .accomp-scroll-cue svg {
        animation: none !important;
    }

    .accomp-benefit {
        transition-duration: 0.01ms !important;
    }

    .accomp-benefit:hover {
        transform: none;
    }

    .accomp-benefit-glow {
        transition-duration: 0.01ms !important;
    }

    .accomp-benefit-marker {
        transition-duration: 0.01ms !important;
    }

    .accomp-timeline-track-glow {
        animation: none !important;
    }

    .accomp-phase-ring {
        transition-duration: 0.01ms !important;
    }

    .accomp-phase:hover .accomp-phase-ring {
        transform: none;
    }

    .accomp-phase-pulse {
        animation: none !important;
    }

    .accomp-phase-card {
        transition-duration: 0.01ms !important;
    }

    .accomp-phase-card:hover {
        transform: none;
    }

    .accomp-phase-action {
        transition-duration: 0.01ms !important;
    }

    .accomp-phase-action:hover {
        transform: none;
    }

    .accomp-phase-action svg {
        transition-duration: 0.01ms !important;
    }

    .accomp-phase-action:hover svg {
        transform: none;
    }

    .phase-card {
        transition-duration: 0.01ms !important;
    }

    .phase-num {
        transition-duration: 0.01ms !important;
    }

    .form-group textarea {
        transition-duration: 0.01ms !important;
    }
}
