/* ========================================
   RL ARTTECH - STYLES PAGES INTERNES
   Styles spécifiques aux pages secondaires
   ======================================== */

/* === PAGE HERO (bandeau haut) === */
.page-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.7) 0%, rgba(28, 28, 28, 0.6) 100%),
                url('https://images.unsplash.com/photo-1600607687644-c7171b42498b?w=1920&q=90') center/cover no-repeat;
    color: var(--color-white);
    margin-top: 112px;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.page-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: white !important;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.page-hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === SECTION STYLES === */
.section {
    padding: 5rem 2rem;
}

.section-light {
    background-color: #FAFAFA;
}

.section-dark {
    background: linear-gradient(135deg, #1C1C1C 0%, #2a2a2a 100%);
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* === TITRES DE SECTION === */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.05rem;
    color: var(--color-gray-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === VISUALISATION 3D - SPÉCIFIQUE === */
.viz-tool-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.viz-tool-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.viz-tool-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.viz-tool-body {
    padding: 2rem;
}

.viz-tool-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.viz-tool-body p {
    color: var(--color-gray-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Section immersive */
.immersive-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(28,28,28,0.75) 0%, rgba(28,28,28,0.65) 100%),
                url('https://rlarttech.com/images/realite-virtuelle.jpg') center/cover no-repeat fixed;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.immersive-content {
    max-width: 900px;
    margin: 0 auto;
}

.immersive-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: 1.5rem;
}

.immersive-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.immersive-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.immersive-stat {
    text-align: center;
}

.immersive-stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--color-primary);
    display: block;
    line-height: 1;
}

.immersive-stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
    display: block;
}

/* === BLOC CTA DARK (modèle FAQ "Vous avez d'autres questions ?") === */
.page-cta-dark {
    text-align: center;
    padding: 3.5rem 2.5rem;
    background: linear-gradient(135deg, #1c1c1c 0%, #2d2d2d 100%);
    border-radius: 16px;
    color: white;
    max-width: 860px;
    margin: 0 auto;
}

.page-cta-dark h2 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.page-cta-dark p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-cta-btn-white {
    background: white !important;
    color: var(--color-primary) !important;
    font-weight: 700 !important;
    border: none !important;
}

.page-cta-btn-white:hover {
    background: #f0f0f0 !important;
    color: var(--color-primary) !important;
}

/* Conteneur de la section CTA */
.section-cta-wrap {
    background: #f6f4f0;
    padding: 4rem 2rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .page-hero {
        min-height: 35vh;
        padding: 6rem 1.5rem 3rem;
    }
    .page-hero-title {
        font-size: 1.8rem;
    }
    .section {
        padding: 3rem 1.5rem;
    }
    .immersive-stats {
        gap: 2rem;
    }
    .immersive-stat-number {
        font-size: 2.2rem;
    }
}
