/* Page PC sur mesure — particuliers */

.pcs-page {
    background: #f8fafc;
}

.pcs-hero.hero-premium.hero-minimal {
    background: radial-gradient(circle at top center, rgba(30, 58, 138, 0.08) 0%, rgba(217, 119, 87, 0.06) 45%, #ffffff 100%) !important;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box;
}

.pcs-hero .hero-premium-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7rem 1rem 3rem;
}

.pcs-hero .hero-title-massive {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
}

.pcs-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.pcs-hero__meta li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: #64748b;
}

.pcs-hero__meta svg {
    color: var(--clr-blue);
    flex-shrink: 0;
}

.pcs-hero .hero-scroll-cue {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.pcs-hero .hero-scroll-cue svg {
    animation: pcs-scroll-bounce 2s ease-in-out infinite;
}

.pcs-hero .hero-scroll-cue:hover {
    color: var(--clr-terracotta);
    transform: translateX(-50%) translateY(3px);
}

@keyframes pcs-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.pcs-content {
    padding: 2.5rem 0 4rem;
}

.pcs-section-title {
    text-align: center;
    color: #111827;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    margin-bottom: 0.35rem;
}

.pcs-section-desc {
    text-align: center;
    color: #4b5563;
    max-width: 36rem;
    margin: 0 auto 1.25rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.pcs-intro {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(17, 24, 39, 0.06);
    border: 1px solid #e5e7eb;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 2.5rem;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.pcs-intro h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.65rem;
    color: #111827;
}

.pcs-intro p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #4b5563;
    margin-bottom: 0.65rem;
}

.pcs-intro p:last-child {
    margin-bottom: 0;
}

/* Offres unifiées — 3 styles distincts */
.pcs-offers {
    margin-bottom: 2.5rem;
}

.pcs-offers__grid {
    display: grid;
    grid-template-columns: 1fr 1.12fr 1fr;
    gap: 1rem;
    max-width: 62rem;
    margin: 0 auto;
    align-items: stretch;
}

.pcs-offer {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pcs-offer__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pcs-offer__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.35rem 1.35rem 1.5rem;
}

.pcs-offer__label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.pcs-offer h3 {
    font-size: 1.2rem;
    margin-bottom: 0.45rem;
    line-height: 1.2;
}

.pcs-offer__body > p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.pcs-offer__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.15rem;
}

.pcs-offer__tags li {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    line-height: 1.3;
}

.pcs-offer__cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: auto;
}

.pcs-offer__ribbon {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 2;
    background: var(--clr-terracotta);
    color: #fff;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Bureau — sobre, bandeau bleu */
.pcs-offer--bureau {
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(17, 24, 39, 0.04);
}

.pcs-offer--bureau .pcs-offer__visual {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 1.5rem;
    color: var(--clr-blue);
}

.pcs-offer--bureau .pcs-offer__label {
    color: var(--clr-blue);
}

.pcs-offer--bureau h3 {
    color: #111827;
}

.pcs-offer--bureau .pcs-offer__body > p {
    color: #4b5563;
}

.pcs-offer--bureau .pcs-offer__tags li {
    background: rgba(30, 58, 138, 0.08);
    color: var(--clr-blue);
}

/* Gaming — carte sombre mise en avant */
.pcs-offer--gaming {
    background: linear-gradient(160deg, #1e3a8a 0%, #0f172a 100%);
    border: 1px solid #1e3a8a;
    box-shadow: 0 16px 40px rgba(30, 58, 138, 0.3);
    transform: translateY(-0.35rem);
}

.pcs-offer--gaming .pcs-offer__visual {
    background: rgba(255, 255, 255, 0.06);
    padding: 2rem 1.5rem 1.25rem;
    color: #f87171;
}

.pcs-offer--gaming .pcs-offer__label {
    color: rgba(255, 255, 255, 0.55);
}

.pcs-offer--gaming h3 {
    color: #fff;
    font-size: 1.35rem;
}

.pcs-offer--gaming .pcs-offer__body > p {
    color: rgba(255, 255, 255, 0.8);
}

.pcs-offer--gaming .pcs-offer__tags li {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
}

.pcs-offer--gaming .btn-primary {
    background-color: var(--clr-terracotta);
    border-color: var(--clr-terracotta);
}

/* Création — chaleur terracotta */
.pcs-offer--creation {
    background: linear-gradient(180deg, #fffbf7 0%, #fff7f2 100%);
    border: 1px solid rgba(217, 119, 87, 0.25);
    box-shadow: 0 4px 16px rgba(217, 119, 87, 0.08);
}

.pcs-offer--creation .pcs-offer__visual {
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.15) 0%, rgba(217, 119, 87, 0.05) 100%);
    padding: 1.5rem;
    color: var(--clr-terracotta);
    border-bottom: 1px solid rgba(217, 119, 87, 0.12);
}

.pcs-offer--creation .pcs-offer__label {
    color: var(--clr-terracotta);
}

.pcs-offer--creation h3 {
    color: #111827;
}

.pcs-offer--creation .pcs-offer__body > p {
    color: #4b5563;
}

.pcs-offer--creation .pcs-offer__tags li {
    background: rgba(217, 119, 87, 0.12);
    color: #9a3412;
}

.pcs-offers__legal {
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
    max-width: 40rem;
    margin: 1rem auto 0;
    line-height: 1.5;
}

.pcs-montage-fee {
    text-align: center;
    font-size: 1.05rem;
    color: #111827;
    margin: 0;
    padding: 0.85rem 1.25rem;
    background: rgba(30, 58, 138, 0.06);
    border: 1px solid rgba(30, 58, 138, 0.12);
    border-radius: 12px;
    max-width: 28rem;
}

.pcs-fees {
    max-width: 32rem;
    margin: 0 auto 1.25rem;
}

.pcs-fees__list {
    list-style: none;
    padding: 0;
    margin: 0.65rem 0 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #4b5563;
    text-align: center;
}

.pcs-fees__list li {
    margin-bottom: 0.35rem;
}

.pcs-fees__list li:last-child {
    margin-bottom: 0;
}

.pcs-fees__list strong {
    color: #111827;
    font-weight: 600;
}

.pcs-montage-fee span {
    color: #6b7280;
    font-size: 0.92rem;
    font-weight: 400;
}

.pcs-process {
    margin-bottom: 2.5rem;
}

.pcs-process__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    counter-reset: pcs-step;
    max-width: 56rem;
    margin: 0 auto;
    position: relative;
}

.pcs-process__steps::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-blue), var(--clr-terracotta));
    opacity: 0.2;
    z-index: 0;
}

.pcs-step {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 0.5rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pcs-step::before {
    counter-increment: pcs-step;
    content: counter(pcs-step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    background: var(--clr-blue);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 0 4px #f8fafc;
}

.pcs-step h3 {
    font-size: 0.95rem;
    color: #111827;
    margin-bottom: 0.35rem;
}

.pcs-step p {
    font-size: 0.82rem;
    line-height: 1.45;
    color: #64748b;
    margin: 0;
}

.pcs-included {
    max-width: 52rem;
    margin: 0 auto 2.5rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.04) 0%, rgba(217, 119, 87, 0.06) 100%);
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 2.5rem);
}

.pcs-included h2 {
    text-align: center;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    margin-bottom: 1rem;
    color: #111827;
}

.pcs-included__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.5rem;
}

.pcs-included__grid li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.45;
}

.pcs-included__grid svg {
    color: var(--clr-blue);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.pcs-faq {
    margin-bottom: 2rem;
}

.pcs-faq__header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.pcs-faq__header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #111827;
    margin-bottom: 0.35rem;
}

.pcs-faq__header p {
    color: #4b5563;
}

.pcs-faq .faq-list {
    max-width: 52rem;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.03);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question:hover {
    color: #1e3a8a;
    background-color: #f8fafc;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background-color: #f8fafc;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.7;
    border-top: 1px solid #e5e7eb;
    padding-top: 1.25rem;
}

.faq-text {
    font-size: 1rem;
}

.help-box {
    background-color: #111827;
    border-radius: 16px;
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 52rem;
    margin: 0 auto;
}

.help-box-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: 0;
}

.help-box-content {
    position: relative;
    z-index: 1;
}

.help-box h2 {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

.help-box-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    max-width: 36rem;
    margin: 0 auto 1.25rem;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .pcs-offers__grid {
        grid-template-columns: 1fr;
        max-width: 22rem;
    }

    .pcs-offer--gaming {
        transform: none;
        order: -1;
    }

    .pcs-process__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem 0.75rem;
    }

    .pcs-process__steps::before {
        display: none;
    }

    .pcs-step {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        padding: 1rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .pcs-hero .hero-premium-container {
        padding: 6.5rem 1rem 4rem;
        justify-content: flex-start;
    }

    .pcs-hero .hero-scroll-cue {
        bottom: 1.25rem;
    }

    .pcs-hero__meta {
        flex-direction: column;
        gap: 0.65rem;
    }

    .pcs-process__steps {
        grid-template-columns: 1fr;
    }

    .pcs-included__grid {
        grid-template-columns: 1fr;
    }
}
