/* ============================================
   STYLES PAGES INTÉRIEURES
   ============================================ */

.page-hero {
    padding: 160px 0 80px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249,115,22,0.08) 0%, transparent 60%);
}

.page-hero .conteneur { position: relative; z-index: 1; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 24px;
}

.breadcrumb a { color: rgba(255,255,255,0.45); transition: 0.3s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

.page-hero h1 {
    font-family: var(--font-title);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    max-width: 760px;
    margin-bottom: 20px;
}

.page-hero h1 span { color: var(--orange); }

.page-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    max-width: 640px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.page-hero-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

.page-hero-badge::before { content: '✓'; color: var(--orange); font-weight: 700; }

/* CONTENU */
.page-content {
    padding: 80px 0;
    background: var(--white);
}

.page-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
}

.page-body h2 {
    font-family: var(--font-title);
    font-size: 30px;
    font-weight: 800;
    color: var(--dark);
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--orange);
    display: inline-block;
}

.page-body h2:first-child { margin-top: 0; }

.page-body h3 {
    font-family: var(--font-title);
    font-size: 21px;
    font-weight: 700;
    color: var(--dark);
    margin: 28px 0 10px;
}

.page-body p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.page-body ul, .page-body ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.page-body ul { list-style: none; padding-left: 0; }

.page-body ul li {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.9;
    padding: 6px 0 6px 28px;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}

.page-body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.page-body ol li {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 8px;
}

.page-body strong { color: var(--dark); }

/* FAQ */
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-title);
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    text-align: left;
    transition: 0.3s;
    gap: 16px;
}

.faq-question:hover { background: var(--gray-light); }
.faq-question.active { color: var(--orange); }

.faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--orange);
    flex-shrink: 0;
    transition: 0.3s;
}

.faq-question.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

.faq-answer.open { display: block; }

/* SIDEBAR */
.page-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e5e7eb;
}

.sidebar-card.orange {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.sidebar-card h4 {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--dark);
}

.sidebar-card.orange h4 { color: var(--white); }

.sidebar-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.sidebar-card.orange p { color: rgba(255,255,255,0.85); }

.sidebar-card ul { list-style: none; padding: 0; }
.sidebar-card ul li {
    font-size: 14px;
    color: var(--gray);
    padding: 6px 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card ul li::before { content: '✓'; color: var(--orange); font-weight: 700; }
.sidebar-card ul li:last-child { border-bottom: none; }

.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    transition: 0.3s;
}

.sidebar-link:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.sidebar-link::after { content: '→'; color: var(--orange); }

/* CTA BANNER */
.cta-banner {
    background: var(--dark);
    padding: 64px 0;
    text-align: center;
}

.cta-banner h2 {
    font-family: var(--font-title);
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-banner h2 span { color: var(--orange); }
.cta-banner p { color: rgba(255,255,255,0.6); margin-bottom: 32px; font-size: 16px; }

.cta-banner .btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BLOG */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 80px 0;
}

.blog-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.blog-card-img {
    height: 200px;
    background: var(--dark3);
    position: relative;
}

.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body { padding: 24px; }

.blog-tag {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(249,115,22,0.08);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--gray);
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.blog-read-more {
    color: var(--orange);
    font-weight: 600;
    font-size: 13px;
    transition: 0.3s;
}

.blog-read-more:hover { gap: 8px; }

/* ARTICLE BLOG */
.article-content { max-width: 760px; }
.article-content h2 { font-family: var(--font-title); font-size: 28px; font-weight: 800; margin: 40px 0 16px; color: var(--dark); }
.article-content h3 { font-family: var(--font-title); font-size: 22px; font-weight: 700; margin: 28px 0 12px; color: var(--dark); }
.article-content p { color: var(--gray); font-size: 16px; line-height: 1.9; margin-bottom: 18px; }
.article-content ul { padding-left: 0; list-style: none; margin-bottom: 18px; }
.article-content ul li { color: var(--gray); font-size: 15px; line-height: 1.9; padding: 6px 0 6px 24px; position: relative; }
.article-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.article-content strong { color: var(--dark); }
.article-highlight { background: rgba(249,115,22,0.06); border-left: 4px solid var(--orange); padding: 20px 24px; border-radius: 0 8px 8px 0; margin: 24px 0; }
.article-highlight p { margin: 0; color: var(--dark); font-weight: 500; }

/* ZONES GEO */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.zone-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    transition: 0.3s;
    text-align: center;
}

.zone-card:hover { border-color: var(--orange); }
.zone-card strong { display: block; font-family: var(--font-title); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.zone-card span { color: var(--gray); font-size: 13px; }
.zone-card a { color: var(--orange); font-size: 13px; font-weight: 600; display: block; margin-top: 8px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .page-layout { grid-template-columns: 1fr; }
    .page-sidebar { position: static; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .zones-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .page-hero { padding: 120px 0 60px; }
    .blog-grid { grid-template-columns: 1fr; }
    .zones-grid { grid-template-columns: 1fr 1fr; }
    .cta-banner .btn-group { flex-direction: column; align-items: center; }
    .page-hero-badges { flex-direction: column; gap: 10px; }
}
