/**
 * Imovia — Site vitrine (design system partagé)
 * Tokens, navigation, boutons, articles blog, pages légales, landing-news
 */

:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #f97316;
    --accent-light: #fb923c;
    --accent-dark: #ea580c;
    --indigo: #6366f1;
    --indigo-light: #818cf8;
    --text: #334155;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --radius: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 24px 52px rgba(15, 23, 42, 0.15);
    --shadow-xl: 0 40px 88px rgba(15, 23, 42, 0.2);
    --section-pad: 120px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* ——— Navigation (position fixe via .imovia-site-header dans imovia-lab-banner.php) ——— */

.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 12px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    margin-top: 8px;
    z-index: 10;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text);
    transition: background 0.2s;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-alt);
    color: var(--accent);
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
    color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-nav-overlay.open {
    display: block;
}

.mobile-nav-panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 1001;
    padding: 80px 24px 32px;
    box-shadow: -4px 0 24px rgba(15, 23, 42, 0.12);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav-panel.open {
    display: block;
    transform: translateX(0);
}

.mobile-nav-panel a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-panel a:hover {
    color: var(--accent);
}

/* ——— Boutons ——— */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-ghost {
    background: transparent;
    color: var(--text);
}

.btn-ghost:hover {
    background: var(--bg-alt);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: 0 6px 22px 0 rgba(249, 115, 22, 0.42);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px 0 rgba(249, 115, 22, 0.52);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: 16px;
}

/* ——— Landing news (homepage) ——— */

.landing-news {
    padding: 48px 48px 72px;
    margin-top: -16px;
    position: relative;
    z-index: 2;
}

.landing-news-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.landing-news-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--indigo);
}

.landing-news-label span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.12);
    font-size: 0.95rem;
}

.landing-news-slider {
    width: 100%;
}

.landing-news-viewport {
    display: flex;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(37, 99, 235, 0.14);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.07) 0%, rgba(99, 102, 241, 0.11) 100%);
    box-shadow: 0 20px 56px rgba(37, 99, 235, 0.16), 0 8px 24px rgba(15, 23, 42, 0.08);
}

.landing-news-track-clip {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.landing-news-track {
    display: flex;
    transition: transform 0.5s ease;
}

.landing-news-item {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: transparent;
    border: none;
    box-sizing: border-box;
}

.landing-news-item[aria-hidden="true"] {
    pointer-events: none;
}

.landing-news-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.landing-news-content {
    flex: 1;
    min-width: 0;
}

.landing-news-title {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.landing-news-text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--text-light);
}

.landing-news-arrow {
    flex-shrink: 0;
    align-self: center;
    width: 44px;
    height: 44px;
    margin: 0 16px 0 0;
    border-radius: 50%;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: white;
    color: var(--indigo);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, background 0.2s ease;
}

.landing-news-arrow:hover {
    background: rgba(99, 102, 241, 0.08);
    transform: scale(1.04);
}

.landing-news-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.landing-news-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(99, 102, 241, 0.25);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.landing-news-dot.is-active {
    width: 24px;
    border-radius: 6px;
    background: var(--indigo);
}

/* ——— Pages légales ——— */

.legal-content,
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 24px 80px;
}

.legal-content h1,
.content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.legal-content h2,
.content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 40px 0 16px;
}

.legal-content h3,
.content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin: 24px 0 12px;
}

.legal-content p,
.content p {
    margin-bottom: 16px;
    font-size: 1rem;
}

.legal-content ul,
.legal-content ol,
.content ul,
.content ol {
    margin: 16px 0 16px 24px;
}

.legal-content li,
.content li {
    margin-bottom: 8px;
}

.legal-content a,
.content a {
    color: var(--accent);
    text-decoration: none;
}

.legal-content a:hover,
.content a:hover {
    text-decoration: underline;
}

.info-box {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.info-box p {
    margin: 8px 0;
}

.info-box strong {
    color: var(--primary);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.95rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.data-table th {
    background: var(--primary);
    color: white;
    padding: 12px 16px;
    text-align: left;
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.data-table tr:nth-child(even) {
    background: var(--bg-alt);
}

/* ——— Blog / articles ——— */

.article-header {
    padding: 140px 24px 60px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        var(--bg);
}

.article-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.article-header .article-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-dark);
    margin-bottom: 24px;
}

.article-header .article-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.article-header .article-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.95rem;
}

.article-header .article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

article.article-content {
    padding: 60px 24px 100px;
}

.article-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

article.article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin: 48px 0 20px;
    letter-spacing: -0.01em;
}

article.article-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary);
    margin: 36px 0 16px;
}

article.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text);
}

article.article-content ul,
article.article-content ol {
    margin: 20px 0 20px 24px;
}

article.article-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

article.article-content strong {
    color: var(--primary);
    font-weight: 600;
}

article.article-content a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

article.article-content a:hover {
    text-decoration: underline;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(234, 88, 12, 0.05) 100%);
    border-left: 4px solid var(--accent);
    padding: 24px 28px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 32px 0;
    box-shadow: var(--shadow);
}

.highlight-box p {
    margin: 0;
    font-size: 1.05rem;
}

.feature-list {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 32px;
    margin: 32px 0;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.feature-list h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    margin: 0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 600;
    flex-shrink: 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin: 48px 0;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.cta-box h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 16px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.cta-box .btn {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow);
}

.cta-box .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ——— Composants articles blog ——— */

.quote-box {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 32px;
    margin: 32px 0;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow);
}

.quote-box blockquote,
.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.quote-box cite,
.quote-author {
    color: var(--text-light);
    font-size: 0.95rem;
}

.mindset-card,
.habit-card,
.example-box,
.zone-card,
.city-card {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 28px;
    margin: 24px 0;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.mindset-card h3,
.habit-card h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mindset-card p,
.habit-card p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-light);
}

.habit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(249, 115, 22, 0.12);
    color: var(--accent-dark);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin: 28px 0;
    box-shadow: var(--shadow);
}

.pricing-card h4 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.pricing-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--bg-alt);
    color: var(--text-light);
}

.pricing-badge.popular {
    background: rgba(249, 115, 22, 0.12);
    color: var(--accent-dark);
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
}

.pros-cons h5 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.pros-cons ul {
    margin: 0;
    padding-left: 18px;
}

.pros h5 {
    color: var(--success);
}

.cons h5 {
    color: #dc2626;
}

.pros,
.cons {
    font-size: 0.95rem;
    line-height: 1.6;
}

.comparison-table,
.ratio-table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 0.95rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.ratio-table th {
    background: var(--primary);
    color: white;
    padding: 14px 16px;
    text-align: left;
}

.comparison-table td,
.ratio-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.comparison-table tr:nth-child(even),
.ratio-table tr:nth-child(even) {
    background: var(--bg-alt);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.timeline {
    margin: 40px 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-phase-name {
    font-weight: 700;
    color: var(--primary);
}

.timeline-phase-duration {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 4px;
}

.timeline-date {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.timeline-content {
    color: var(--text);
    line-height: 1.7;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-content p {
    margin: 0 0 12px;
    font-size: 1rem;
    color: var(--text-light);
}

.timeline-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.timeline-stat {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 100px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text);
}

.tool-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin: 20px 0;
    box-shadow: var(--shadow);
}

.tool-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.tool-number {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.tool-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

.tool-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 2px;
}

.tool-description {
    margin: 0;
    color: var(--text);
    line-height: 1.7;
}

.tool-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 100px;
    background: rgba(249, 115, 22, 0.12);
    color: var(--accent-dark);
    margin-left: 8px;
    vertical-align: middle;
}

.tool-card.recommended {
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: var(--shadow-lg);
}

.process-step .step-content {
    flex: 1;
    min-width: 0;
}

.process-step .step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.process-step .step-content p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.phase-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin: 28px 0;
    box-shadow: var(--shadow);
}

.phase-box h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    color: var(--primary);
}

.phase-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
}

.checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.checklist li {
    position: relative;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid var(--border);
}

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

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 28px 0;
}

.feature-grid .feature-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.zone-stats,
.city-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.zone-stat,
.city-stat {
    flex: 1;
    min-width: 120px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}

.zone-stat-value,
.city-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.zone-stat-label,
.city-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.process-step {
    display: flex;
    gap: 20px;
    margin: 24px 0;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.12);
    color: var(--indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* ——— Blog listing ——— */

.page-hero {
    padding: 140px 24px 60px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        var(--bg);
    text-align: center;
}

.page-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.page-hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-dark);
    margin-bottom: 24px;
}

.articles {
    padding: 60px 24px 100px;
}

.articles-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.article-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249, 115, 22, 0.2);
}

.article-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.article-card .article-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card .article-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 12px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.article-card .article-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.article-card .article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ——— Footer simple (blog, légal, join) ——— */

.footer {
    background: var(--primary);
    color: white;
    padding: 48px 24px 32px;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer .logo {
    color: white;
}

.footer .logo-icon {
    background: rgba(255, 255, 255, 0.1);
}

/* ——— Responsive ——— */

@media (prefers-reduced-motion: reduce) {
    .landing-news-track {
        transition: none;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

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

@media (max-width: 768px) {
    .landing-news {
        padding: 32px 24px 56px;
    }

    .landing-news-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

    .landing-news-arrow {
        margin: 0 12px 0 0;
    }

    .nav-actions:not(.mobile-open) {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-actions.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 16px 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }

    .nav-actions.mobile-open .btn {
        width: 100%;
    }

    .article-header .article-title {
        font-size: 2rem;
    }

    .article-header .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    article.article-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h1,
    .content h1 {
        font-size: 2rem;
    }

    .data-table {
        font-size: 0.85rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

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

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .cta-box {
        padding: 32px 24px;
    }
}
