/* ========================================
   MLTC Section - Specific Styles
   ======================================== */

/* MLTC Sub-navigation */
.mltc-subnav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--primary-100);
    backdrop-filter: blur(10px);
    border-bottom: none;
    height: 46px;
}

[data-theme="dark"] .mltc-subnav {
    background: rgba(88, 28, 135, 0.25);
}

[data-theme="dark"] .subnav-link {
    color: #d4c6e8;
}

.mltc-subnav .container {
    height: 100%;
}

.subnav-menu {
    display: flex;
    gap: 0;
    padding: 0;
    align-items: stretch;
    height: 100%;
}

.subnav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-800);
    padding: 0 var(--spacing-md);
    border-radius: 0;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    height: 100%;
}

.subnav-link:hover {
    color: var(--primary-700);
    background: rgba(124, 58, 237, 0.1);
}

.subnav-link.active {
    color: var(--primary-600);
    background: rgba(124, 58, 237, 0.12);
    font-weight: 600;
}

[data-theme="dark"] .subnav-link:hover {
    color: #e0d4f5;
    background: rgba(167, 139, 250, 0.15);
}

[data-theme="dark"] .subnav-link.active {
    color: #e9dff7;
    background: rgba(167, 139, 250, 0.2);
}

/* Production link - uppercase */
.subnav-link[href*="production"] {
    text-transform: uppercase;
}


/* MLTC Hero */
.mltc-hero {
    padding: 180px var(--spacing-lg) var(--spacing-3xl);
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
}

.mltc-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, var(--hero-gradient-color) 0%, transparent 60%);
    opacity: 0.6;
    z-index: 0;
}

.mltc-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.mltc-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
}

.mltc-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mltc-tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.mltc-hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-text);
}

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

/* MLTC Introduction */
.mltc-intro {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--surface);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.intro-text p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    font-size: 1.05rem;
}

.intro-text strong {
    color: var(--accent-text);
}

.intro-image-placeholder,
.intro-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    display: block;
    object-fit: cover;
    box-shadow: var(--shadow-xl), var(--shadow-violet);
}

/* Navigation Cards */
.mltc-navigation-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--background);
}

.nav-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.nav-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid var(--border);
    transition: var(--transition-base);
    display: block;
}

.nav-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--card-hover-border);
}

.nav-card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-text);
    margin-bottom: var(--spacing-lg);
    transition: var(--transition-base);
}

.nav-card:hover .nav-card-icon {
    background: var(--primary-500);
    color: white;
}

.nav-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.nav-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.nav-card-arrow {
    font-weight: 500;
    color: var(--accent-text);
    transition: var(--transition-fast);
}

.nav-card:hover .nav-card-arrow {
    color: var(--primary-500);
}

/* Overview Section */
.mltc-overview {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--surface);
}

.mltc-overview > .container {
    max-width: 1600px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-xl);
}

.overview-item {
    background: var(--surface-elevated);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid var(--border);
}

.overview-item h4 {
    font-size: 1.1rem;
    color: var(--accent-text);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--card-hover-border);
}

.overview-item ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.overview-item li {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.overview-item li strong {
    color: var(--text-primary);
}

/* ========================================
   History Page - Modern Redesign
   ======================================== */

/* Hero */
.ht-hero {
    padding: 180px var(--spacing-lg) var(--spacing-3xl);
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
}
.ht-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, var(--hero-gradient-color) 0%, transparent 60%);
    opacity: 0.6;
    z-index: 0;
}
.ht-hero-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
}
.ht-hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 3.5rem);
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ht-hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Disclaimer callout */
.ht-disclaimer-section {
    padding: var(--spacing-xl) var(--spacing-lg) 0;
}
.ht-callout {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    background: var(--accent-bg);
    border: 1px solid var(--card-hover-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg) var(--spacing-xl);
}
.ht-callout-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    border-radius: var(--radius-lg);
}
.ht-callout strong {
    color: var(--accent-text);
    font-size: 1rem;
    display: block;
    margin-bottom: var(--spacing-xs);
}
.ht-callout p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.6;
    margin: 0;
}

/* Navigation anchors */
.ht-nav-anchors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: var(--spacing-lg);
}
.ht-anchor-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border-radius: var(--radius-full);
    background: rgba(124, 58, 237, 0.08);
    color: var(--primary-500);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
}
.ht-anchor-btn:hover {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: #fff;
    transform: translateY(-1px);
}

/* Scroll offset for fixed navbar */
html {
    scroll-padding-top: 130px;
}

/* Sections */
.ht-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
}
.ht-section-alt {
    background: var(--surface);
}
.ht-section > .container {
    max-width: 1200px;
}


/* Section headers with tag */
.ht-section-header {
    margin-bottom: var(--spacing-lg);
}
.ht-section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: var(--spacing-md);
}
.ht-section-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--text-primary);
    margin: 0;
}

/* Prose blocks */
.ht-prose {
    max-width: none;
}
.ht-prose p {
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: var(--spacing-md);
    font-size: 1.02rem;
}
.ht-prose strong {
    color: var(--accent-text);
}

/* Sub-headings */
.ht-h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: var(--spacing-2xl) 0 0.5rem;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--card-hover-border);
    display: inline-block;
}

/* Mini cards grid (group filiales) */
.ht-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}
.ht-mini-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: var(--transition-base);
}
.ht-mini-card:hover {
    border-color: var(--card-hover-border);
    box-shadow: var(--shadow-md);
}
.ht-mini-icon {
    font-size: 1.6rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}
.ht-mini-card strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}
.ht-mini-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Numbered steps - modernised */
.ht-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}
.ht-step {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: var(--transition-base);
    position: relative;
    border-top: 3px solid var(--border);
}
.ht-step:hover {
    border-color: var(--card-hover-border);
    border-top-color: var(--card-hover-border);
    box-shadow: var(--shadow-lg);
}
.ht-step-num {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    border-radius: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: var(--shadow-md);
}

/* Header row: title + status */
.ht-step-header {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
}
.ht-step-body {
    min-width: 0;
    flex: 1;
}
.ht-step-body strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 700;
}
.ht-step-body p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.93rem;
    margin: 0;
}

/* Status badges */
.ht-step-status {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 10px;
    border-radius: var(--radius-full);
}
.ht-status--abandoned {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.25);
}
.ht-status--rejected {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.25);
}
.ht-status--selected {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.25);
}
[data-theme="dark"] .ht-status--abandoned {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}
[data-theme="dark"] .ht-status--rejected {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}
[data-theme="dark"] .ht-status--selected {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

/* Card state variants */
.ht-step--abandoned {
    border-top-color: #ef4444;
    opacity: 0.75;
}
.ht-step--abandoned:hover { opacity: 1; }
.ht-step--abandoned .ht-step-num {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.ht-step--rejected {
    border-top-color: #f59e0b;
    opacity: 0.75;
}
.ht-step--rejected:hover { opacity: 1; }
.ht-step--rejected .ht-step-num {
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

.ht-step--selected {
    border-top-color: #22c55e;
    background: rgba(34, 197, 94, 0.04);
    box-shadow: var(--shadow-md);
}
[data-theme="dark"] .ht-step--selected {
    background: rgba(34, 197, 94, 0.06);
}
.ht-step--selected .ht-step-num {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

/* Company showcase - image-centric, alternating */
.ht-company-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-3xl);
    margin: var(--spacing-2xl) 0;
}
.ht-showcase-card {
    display: flex;
    flex-direction: column;
    background: rgba(124, 58, 237, 0.06);
    overflow: hidden;
    width: fit-content;
    max-width: 100%;
}
.ht-showcase-reverse { /* stacked, no special layout */ }
.ht-showcase-img img {
    display: block;
    max-width: 100%;
    height: auto;
}
.ht-showcase-body {
    padding: var(--spacing-md) var(--spacing-xl) var(--spacing-xl);
    width: 0;
    min-width: 100%;
    box-sizing: border-box;
}
.ht-showcase-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    padding: 2px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}
.ht-showcase-body h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

/* Triple-name layout (SBB CFF FFS style) */
.ht-triple-name {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: var(--spacing-md);
}
.ht-triple-name-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 var(--spacing-md);
}
.ht-triple-name-item:first-child {
    padding-left: 0;
}
.ht-triple-name-item:last-child {
    padding-right: 0;
}
.ht-triple-acronym {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}
.ht-triple-lang {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    font-style: italic;
    line-height: 1.35;
}
.ht-triple-sep {
    width: 1px;
    background: var(--border);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .ht-triple-name {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    .ht-triple-name-item {
        padding: 0;
        text-align: center;
    }
    .ht-triple-sep {
        width: 100%;
        height: 1px;
    }
}

.ht-showcase-full {
    font-size: 0.88rem;
    color: var(--accent-text);
    font-weight: 500;
    margin-bottom: var(--spacing-md) !important;
}
.ht-showcase-body p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Event cards - side-by-side milestone highlights */
.ht-event-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}
.ht-event-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary-500);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: var(--transition-base);
}
.ht-event-card:hover {
    border-color: var(--card-hover-border);
    border-top-color: var(--primary-500);
    box-shadow: var(--shadow-lg);
}
.ht-event-date {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary-600);
    background: rgba(124, 58, 237, 0.08);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.02em;
}
.ht-event-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}
.ht-event-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0;
}
@media (max-width: 768px) {
    .ht-event-cards {
        grid-template-columns: 1fr;
    }
}

/* Service pills - compact inline service list */
.ht-service-grid-inline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}
.ht-service-pill {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md) var(--spacing-lg);
    transition: var(--transition-base);
}
.ht-service-pill:hover {
    border-color: var(--card-hover-border);
    box-shadow: var(--shadow-md);
}
.ht-service-pill img {
    width: 48px;
    height: auto;
    flex-shrink: 0;
}
.ht-service-pill strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.ht-service-pill span {
    font-size: 0.82rem;
    color: var(--text-tertiary);
    line-height: 1.4;
}
@media (max-width: 768px) {
    .ht-service-grid-inline {
        grid-template-columns: 1fr;
    }
}

/* Timeline - alternating zigzag */
.ht-timeline {
    position: relative;
    margin: var(--spacing-3xl) 0;
    padding: var(--spacing-md) 0;
}
.ht-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
        transparent,
        rgba(124, 58, 237, 0.2) 8%,
        rgba(124, 58, 237, 0.3) 50%,
        rgba(124, 58, 237, 0.2) 92%,
        transparent);
    border-radius: var(--radius-full);
}
.ht-tl-item {
    position: relative;
    width: 50%;
    padding-bottom: var(--spacing-xl);
}
.ht-tl-item:nth-child(odd) {
    padding-right: 48px;
}
.ht-tl-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 48px;
}
/* Connector line from card to dot */
.ht-tl-item::after {
    content: '';
    position: absolute;
    top: 24px;
    width: 20px;
    height: 2px;
    background: rgba(124, 58, 237, 0.18);
}
.ht-tl-item:nth-child(odd)::after {
    right: 8px;
}
.ht-tl-item:nth-child(even)::after {
    left: 8px;
}
.ht-tl-dot {
    position: absolute;
    top: 18px;
    width: 13px;
    height: 13px;
    background: var(--background);
    border: 2.5px solid var(--primary-500);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
    z-index: 3;
    transition: all 0.3s ease;
}
.ht-tl-item:nth-child(odd) .ht-tl-dot {
    right: -7px;
    left: auto;
}
.ht-tl-item:nth-child(even) .ht-tl-dot {
    left: -7px;
    right: auto;
}
/* Active state on dot */
.ht-tl-item.ht-tl-active .ht-tl-dot,
.ht-tl-item.active .ht-tl-dot {
    background: var(--primary-500);
    box-shadow: 0 0 0 5px rgba(124, 58, 237, 0.2);
    transform: scale(1.15);
}
.ht-tl-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-lg);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    cursor: default;
    position: relative;
    z-index: 1;
}
.ht-tl-card:hover {
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
}
.ht-tl-item.ht-tl-active .ht-tl-card {
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 0 4px 24px rgba(124, 58, 237, 0.12), 0 1px 4px rgba(0, 0, 0, 0.04);
}
.ht-tl-date {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--primary-600);
    background: rgba(124, 58, 237, 0.08);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.02em;
}
.ht-tl-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    line-height: 1.35;
}
.ht-tl-flag {
    margin-right: 6px;
    font-size: 1.1em;
    vertical-align: -0.05em;
}
.ht-tl-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.75;
    margin: 0;
    max-width: 42ch;
}

/* ── Coexistence section ── */

/* Stats band */
.ht-coex-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: var(--spacing-xl) 0 var(--spacing-2xl);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--spacing-lg) 0;
}
.ht-coex-stat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ht-coex-stat + .ht-coex-stat {
    border-left: 1px solid var(--border);
}
.ht-coex-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-500);
    line-height: 1.1;
}
.ht-coex-stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    font-weight: 500;
}

/* Split fondateurs / expansion */
.ht-coex-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: var(--spacing-2xl);
}
.ht-coex-col {
    padding: var(--spacing-lg) var(--spacing-xl);
}
.ht-coex-col + .ht-coex-col {
    border-left: 0.5px solid var(--border);
}
.ht-coex-col-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}
.ht-coex-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.ht-coex-dot--fondateur { background: var(--primary-500); }
.ht-coex-dot--expansion { background: #22c55e; }
.ht-coex-col .ht-prose p {
    max-width: none;
}

/* Operator tags */
.ht-coex-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: var(--spacing-md);
}
.ht-coex-tag {
    font-family: var(--font-body);
    font-size: 0.72rem;
    padding: 3px 10px;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: transparent;
    line-height: 1.4;
}

/* Conclusion with pull quote */
.ht-coex-conclusion {
    display: grid;
    grid-template-columns: 1fr 38%;
    gap: var(--spacing-xl);
    align-items: start;
}
.ht-coex-conclusion-body {
    background: rgba(124, 58, 237, 0.08);
    padding: var(--spacing-xl);
}
.ht-coex-conclusion-body p {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.75;
}
.ht-coex-pullquote {
    border-left: 2px solid var(--primary-500);
    padding-left: var(--spacing-lg);
}
.ht-coex-pullquote p {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .ht-coex-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    .ht-coex-stat + .ht-coex-stat {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: var(--spacing-md);
    }
    .ht-coex-split {
        grid-template-columns: 1fr;
    }
    .ht-coex-col + .ht-coex-col {
        border-left: none;
        border-top: 0.5px solid var(--border);
    }
    .ht-coex-conclusion {
        grid-template-columns: 1fr;
    }
    .ht-coex-pullquote {
        margin-top: var(--spacing-md);
    }
}

/* Expansion module container – breakout */
.ht-expansion-module {
    width: 60vw;
    max-width: 1400px;
    margin-left: 50%;
    transform: translateX(-50%);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-2xl) var(--spacing-lg);
    margin-top: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}
.ht-expansion-module-header {
    margin-bottom: var(--spacing-lg);
}
.ht-expansion-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--card-hover-border);
    display: inline-block;
}

/* Expansion split layout */
.ht-expansion-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}
.ht-expansion-closing {
    margin: var(--spacing-xl) 0 0;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    background: rgba(124, 58, 237, 0.04);
    border-left: 3px solid var(--primary-400);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.ht-expansion-closing p {
    margin: 0;
}
.ht-expansion-left {
    min-width: 0;
}
.ht-expansion-right {
    position: relative;
    /* stretches to full grid row height = timeline rail */
}
.ht-expansion-sticky {
    position: sticky;
    top: calc(50vh - 280px);
}

/* Expansion responsive */
@media (max-width: 1200px) {
    .ht-expansion-module {
        width: 80vw;
    }
}
@media (max-width: 968px) {
    .ht-expansion-module {
        width: 100%;
        transform: none;
        margin-left: 0;
        padding: var(--spacing-lg);
    }
    .ht-expansion-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    .ht-expansion-sticky {
        position: static;
    }
}

/* ── Phase-based timeline ── */
.ht-expansion-left .ht-timeline {
    margin-top: 0;
    padding-top: 0;
}
.ht-expansion-left .ht-timeline::before {
    left: 12px;
    transform: none;
}
.ht-expansion-left .ht-tl-item,
.ht-expansion-left .ht-tl-item:nth-child(odd),
.ht-expansion-left .ht-tl-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: 42px;
    padding-right: 0;
    padding-bottom: 1.5rem;
    overflow: visible;
}
.ht-expansion-left .ht-tl-item::after {
    display: none;
}
.ht-expansion-left .ht-tl-item:nth-child(odd) .ht-tl-dot,
.ht-expansion-left .ht-tl-item:nth-child(even) .ht-tl-dot {
    left: 6px;
    right: auto;
    z-index: 5;
}
.ht-expansion-left .ht-tl-card {
    position: relative;
    z-index: 1;
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-md);
}
.ht-expansion-left .ht-tl-card h4 {
    font-size: 1rem;
}
.ht-expansion-left .ht-tl-card p {
    max-width: none;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ── Phase-based timeline ── */
.ht-phase {
    margin-bottom: var(--spacing-xl);
    border-left: 3px solid rgba(124, 58, 237, 0.15);
    padding-left: var(--spacing-lg);
    position: relative;
}
.ht-phase::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-500);
    transition: all 0.3s ease;
}
.ht-phase.ht-phase-active::before {
    width: 14px;
    height: 14px;
    left: -8.5px;
    top: -3.5px;
    box-shadow: 0 0 0 3px #EEEDFE;
}
.ht-phase:last-child {
    margin-bottom: 0;
}
.ht-phase-header {
    margin-bottom: var(--spacing-md);
}
.ht-phase-dates {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-600);
    background: rgba(124, 58, 237, 0.08);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    vertical-align: middle;
    margin-right: 8px;
}
.ht-phase-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 2px;
    line-height: 1.4;
}
.ht-phase-summary {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Event rows */
.ht-phase-events {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ht-evt {
    display: grid;
    grid-template-columns: 8px auto auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0 8px;
    padding: 6px 10px;
    border-radius: var(--radius-md, 6px);
    transition: background 0.2s;
    cursor: pointer;
}
.ht-evt:not(.active) {
    opacity: 0.4;
    transition: background 0.2s, opacity 0.3s;
}
.ht-evt:not(.active):hover {
    opacity: 0.7;
}
.ht-evt:hover {
    background: rgba(124, 58, 237, 0.04);
}
.ht-evt.active {
    background: #DDDAF7;
    border-left: 2px solid #534AB7;
    border-radius: 0 var(--radius-md, 6px) var(--radius-md, 6px) 0;
}
.ht-evt.ht-evt-open {
    background: rgba(124, 58, 237, 0.06);
}
.ht-evt.active.ht-evt-open {
    background: #DDDAF7;
}
.ht-evt-dot {
    grid-row: 1;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--background);
    border: 2px solid var(--primary-400);
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.ht-evt:hover .ht-evt-dot,
.ht-evt.ht-evt-open .ht-evt-dot {
    background: var(--primary-500);
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
.ht-evt.active .ht-evt-dot {
    background: var(--primary-500);
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
    transform: scale(1.2);
}
.ht-evt-date {
    grid-row: 1;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-600);
    white-space: nowrap;
}
.ht-evt-flag {
    grid-row: 1;
    font-size: 1em;
    line-height: 1;
}
.ht-evt-title {
    grid-row: 1;
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    line-height: 1.4;
}
.ht-evt-title:hover {
    color: var(--primary-500);
}
.ht-evt-body {
    grid-column: 2 / -1;
    grid-row: 2;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease 0.05s,
                padding 0.3s ease;
    padding: 0;
    will-change: max-height, opacity;
}
.ht-evt-body[hidden] {
    display: block !important;
    max-height: 0;
    opacity: 0;
    padding: 0;
}
.ht-evt-body.ht-evt-visible {
    opacity: 1;
    padding: 6px 0 4px;
}
.ht-evt-body p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}
.cov-map-title {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-xs);
    font-weight: 700;
}
.cov-map-subtitle {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0 0 var(--spacing-md);
}

/* Coverage map */
.cov-map-wrap {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px 20px 16px;
    position: relative;
}
.cov-map {
    width: 100%;
    height: auto;
    display: block;
}
.cov-map-hint {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.86rem;
    text-align: center;
}

/* Legend bar */
.cov-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}
.cov-legend-title {
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-variant: small-caps;
    color: var(--text-muted);
    margin-bottom: -4px;
}
.cov-legend-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}
.cov-legend-bar {
    width: 140px;
    height: 8px;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg,
        rgba(124, 58, 237, 0.28),
        rgba(124, 58, 237, 0.85));
}

/* Country shapes */
.cov-country {
    cursor: pointer;
    outline: none;
}
.cov-shape {
    stroke: var(--surface, #fff);
    stroke-width: 1.2;
    stroke-linejoin: round;
    transition: fill .3s, stroke .3s, filter .3s, opacity .3s;
}
.cov-country:hover .cov-shape {
    filter: brightness(1.15) saturate(1.3);
    stroke: var(--primary-300);
    stroke-width: 2;
}
.cov-country.cov-active .cov-shape {
    stroke: var(--primary-600, #9333ea);
    stroke-width: 2.5;
    filter: brightness(1.1) saturate(1.2);
}
/* Tooltip panel - static below map */
.cov-tooltip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0 14px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    transition: opacity .3s ease, max-height .4s ease, padding .3s ease, margin-top .3s ease;
    z-index: 10;
}
.cov-tooltip.visible {
    opacity: 1;
    pointer-events: auto;
    max-height: 300px;
    padding: 14px;
    margin-top: var(--spacing-md);
}
.cov-tooltip.cov-tt-left {
    /* no-op, kept for JS compat */
}
.cov-tt-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.cov-tt-flag {
    display: none;
}
.cov-tt-head h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
}
.cov-tt-group {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-500);
    background: rgba(124, 58, 237, 0.08);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}
.cov-tt-bar-wrap {
    height: 5px;
    background: var(--border);
    border-radius: var(--radius-full);
    margin-bottom: 6px;
    overflow: hidden;
}
.cov-tt-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-600), var(--primary-400));
    border-radius: var(--radius-full);
    transition: width .4s ease;
}
.cov-tooltip p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 8px;
}
.cov-tooltip .ht-country-services {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.cov-tooltip .ht-svc-pill {
    font-size: 0.78rem;
    padding: 2px 9px;
}

/* Shared service pill (keep for tooltip) */
.ht-country-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: var(--spacing-xs);
}
.ht-svc-pill {
    display: inline-block;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-500);
    background: rgba(124, 58, 237, 0.08);
    border-radius: var(--radius-full);
    letter-spacing: 0.01em;
}

/* ── Service card deck ── */
.ht-service-deck {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: var(--spacing-xl) 0;
}

/* Tab navigation row */
.ht-deck-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.ht-deck-tabs::-webkit-scrollbar { display: none; }
.ht-deck-tab {
    flex: 0 0 auto;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.ht-deck-tab:hover {
    color: var(--text-primary);
    border-color: var(--primary-500);
}
.ht-deck-tab.active {
    background: var(--primary-500);
    color: #fff;
    border-color: var(--primary-500);
}

/* Active card panel */
.ht-deck-panels {
    position: relative;
    display: flex;
    justify-content: center;
}
.ht-deck-panel {
    display: none;
    opacity: 0;
    transform: translateY(6px);
    animation: ht-deck-in 0.3s ease forwards;
}
.ht-deck-panel.active {
    display: inline-flex;
    flex-direction: column;
    width: fit-content;
    max-width: 100%;
}
@keyframes ht-deck-in {
    to { opacity: 1; transform: translateY(0); }
}
.ht-deck-panel img {
    display: block;
    width: auto;
    max-width: none;
    height: auto;
    flex-shrink: 0;
    align-self: flex-start;
}
.ht-deck-panel-body {
    background: var(--surface-elevated);
    box-sizing: border-box;
    padding: var(--spacing-lg) var(--spacing-xl);
    width: 0;
    min-width: 100%;
}
.ht-deck-panel-body h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}
.ht-deck-panel-body h4 .ht-service-abbr {
    font-weight: 500;
    color: var(--primary-500);
    margin-left: 0.3em;
}
.ht-deck-panel-body p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .ht-deck-panel-body {
        max-width: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ht-steps {
        grid-template-columns: 1fr;
    }
    .ht-step {
        text-align: center;
        align-items: center;
    }
    .ht-step-header {
        align-items: center;
    }
    .ht-callout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .ht-timeline {
        padding-left: 28px;
    }
    .ht-timeline::before {
        left: 12px;
        transform: none;
    }
    .ht-tl-item,
    .ht-tl-item:nth-child(odd),
    .ht-tl-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .ht-tl-item::after {
        display: none;
    }
    .ht-tl-item:nth-child(odd) .ht-tl-dot,
    .ht-tl-item:nth-child(even) .ht-tl-dot {
        left: -21px;
        right: auto;
    }
    .ht-tl-card p {
        max-width: none;
    }
    .cov-tooltip.visible {
        max-height: 400px;
    }

    .ht-expansion-right {
        max-width: 100%;
    }

    .ht-expansion-layout {
        grid-template-columns: 1fr;
        width: 100%;
        margin-left: 0;
    }
    .ht-expansion-sticky {
        position: relative;
        top: auto;
    }

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

/* ========================================
   Livrées Page - Image-centric design
   ======================================== */
.lv-page-section {
    padding: 140px 0 var(--spacing-3xl);
}

.lv-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* Page header - compact, centered */
.lv-header {
    text-align: left;
    margin-bottom: var(--spacing-2xl);
}

.lv-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.15em;
}

.lv-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
    max-width: none;
    margin: 0 0 var(--spacing-lg) 0;
    line-height: 1.65;
    text-align: left;
}

/* Hint chips */
.lv-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
}

.lv-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.45em 1em;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--accent-bg);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-full);
    line-height: 1.4;
}

.lv-chip svg {
    flex-shrink: 0;
    color: var(--accent-text);
    opacity: 0.8;
}

.lv-chip strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary-600);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.68rem;
    font-weight: 700;
}

/* Category blocks */
.lv-category {
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid var(--border);
}

.lv-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.lv-category-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subcategory label - inline, lightweight */
.lv-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: var(--spacing-lg) 0 var(--spacing-sm);
}

/* Image rows - centered, breathing room */
.lv-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-md);
}

/* Image links - the images ARE the UI */
.lv-icons a {
    display: inline-block;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.lv-icons a:hover {
    transform: translateY(-3px) scale(1.04);
    filter: drop-shadow(0 6px 18px rgba(147, 51, 234, 0.3));
}

.lv-icons a:active {
    transform: translateY(0) scale(1);
}

.lv-icons img {
    display: block;
    width: auto;
    height: auto;
    max-width: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* ═══════ MLCC Section ═══════ */
.ht-mlcc-section {
    background: linear-gradient(135deg, #7c032d 0%, #d10322 100%);
    color: #fff;
    padding: var(--spacing-3xl) 0;
}

.ht-mlcc-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.ht-mlcc-header h2 {
    color: #fff;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.ht-mlcc-sub {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.25em 0 0;
    font-size: 1.05rem;
}

.ht-mlcc-icon {
    height: 3rem;
    width: auto;
    flex-shrink: 0;
}

.ht-mlcc-prose p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
    margin-bottom: 1em;
    font-size: 1.02rem;
}

.ht-mlcc-prose p:last-child {
    margin-bottom: 0;
}

.ht-mlcc-prose strong {
    color: #fff;
    font-weight: 600;
}

.ht-mlcc-note {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.12);
    border-left: 3px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    font-style: italic;
}

/* Chapter grid - landing page */
.ht-chapter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}
.ht-chapter-card {
    display: flex;
    flex-direction: column;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}
.ht-chapter-card:hover {
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.10), 0 2px 8px rgba(0, 0, 0, 0.04);
    transform: translateY(-3px);
}
.ht-chapter-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--primary-600);
    background: rgba(124, 58, 237, 0.08);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.02em;
    width: fit-content;
}
.ht-chapter-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}
.ht-chapter-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.ht-chapter-arrow {
    display: block;
    margin-top: var(--spacing-md);
    font-size: 1.2rem;
    color: var(--primary-500);
    font-weight: 600;
    transition: transform 0.2s ease;
}
.ht-chapter-card:hover .ht-chapter-arrow {
    transform: translateX(4px);
}

/* Back link - subpage hero */
.ht-back-link {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--primary-400);
    text-decoration: none;
    margin-bottom: var(--spacing-sm);
    transition: color 0.2s ease;
}
.ht-back-link:hover {
    color: var(--primary-300);
}

/* Chapter prev/next navigation */
.ht-chapter-nav {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-xl);
}
.ht-chapter-nav-link {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-lg) var(--spacing-xl);
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}
.ht-chapter-nav-link:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.08);
    transform: translateY(-2px);
}
.ht-chapter-nav-next {
    text-align: right;
    margin-left: auto;
}
.ht-chapter-nav-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.ht-chapter-nav-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-500);
}

@media (max-width: 768px) {
    .ht-chapter-nav {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    .ht-chapter-nav-link {
        min-width: 0;
    }
    .ht-chapter-nav-next {
        text-align: left;
    }
}

/* ═══════ SanGo! Section (opérateurs privés) - v3 ═══════ */

/* ---- Section wrapper ---- */
.sg-body {
    background: linear-gradient(135deg, #DE9247 0%, #DF5E47 100%);
    color: #fff;
    padding: var(--spacing-xl) 0 var(--spacing-2xl);
}

/* ═══════ CFP Section (opérateurs privés) ═══════ */

.cfp-body {
    background: #D10422;
    color: #fff;
    padding: var(--spacing-xl) 0 var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

.cfp-header {
    max-width: 1500px;
    margin: 0 auto var(--spacing-lg);
    padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cfp-header-logo {
    height: 6rem;
    width: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.45));
}

.cfp-header-slogans {
    display: flex;
    flex-direction: column;
    gap: 0.3em;
}

.cfp-header-slogan-main {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cfp-header-slogan-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cfp-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--spacing-2xl);
    align-items: start;
}

.cfp-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.cfp-tag {
    display: block;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.6em;
}

.cfp-block {
    opacity: 0;
    transform: translateY(18px);
    animation: sgReveal 0.55s ease forwards;
}

.cfp-block--full {
    padding: 0 0 var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cfp-block--full:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cfp-block p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

.cfp-content > :nth-child(1) { animation-delay: 0.08s; }
.cfp-content > :nth-child(2) { animation-delay: 0.22s; }
.cfp-content > :nth-child(3) { animation-delay: 0.36s; }

.cfp-infobox {
    position: sticky;
    top: 100px;
    align-self: start;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateX(16px);
    animation: sgSlideIn 0.5s ease 0.35s forwards;
}

.cfp-infotable {
    width: 100%;
    border-collapse: collapse;
}

.cfp-infotable th,
.cfp-infotable td {
    padding: 11px 16px;
    font-size: 0.88rem;
    line-height: 1.55;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    vertical-align: top;
    white-space: nowrap;
}

.cfp-infotable tr:last-child th,
.cfp-infotable tr:last-child td {
    border-bottom: none;
}

.cfp-infotable th {
    color: rgba(0, 0, 0, 0.45);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    width: 1%;
}

.cfp-infotable td {
    color: #333;
}

.cfp-infotable td strong {
    color: #111;
}

.cfp-cta-caption {
    text-align: center;
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
    margin: var(--spacing-md) 0 0;
    padding: var(--spacing-md) var(--spacing-md) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cfp-cta {
    display: block;
    text-align: center;
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
    text-decoration: none;
    line-height: 0;
}

.cfp-cta-icon {
    display: inline-block;
    transition: filter 0.3s, transform 0.3s;
}

.cfp-cta-icon:hover {
    filter: drop-shadow(0 0 18px rgba(209, 4, 34, 0.7)) drop-shadow(0 0 40px rgba(206, 103, 120, 0.4));
}

@media (max-width: 900px) {
    .cfp-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-md);
    }
    .cfp-header-title {
        font-size: 1.4rem;
    }
    .cfp-container {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-md);
    }
    .cfp-infobox {
        position: static;
        transform: none;
        opacity: 1;
    }
    .cfp-infotable th,
    .cfp-infotable td {
        white-space: normal;
    }
    .cfp-block--full {
        padding: 0 0 var(--spacing-md);
    }
}

/* ---- Header / Hero banner ---- */
.sg-header {
    max-width: 1500px;
    margin: 0 auto var(--spacing-lg);
    padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sg-header-logo {
    height: 4rem;
    width: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.25));
}

.sg-header-slogans {
    display: flex;
    flex-direction: column;
    gap: 0.3em;
}

.sg-header-slogan-main {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.sg-header-slogan-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ---- Grid: text left, infobox right ---- */
.sg-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--spacing-2xl);
    align-items: start;
}

/* ---- CTA link ---- */
.sg-cta-caption {
    text-align: center;
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
    margin: var(--spacing-md) 0 0;
    padding: var(--spacing-md) var(--spacing-md) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.sg-cta {
    display: block;
    text-align: center;
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
    text-decoration: none;
    line-height: 0;
}

.sg-cta-icon {
    display: inline-block;
    transition: filter 0.3s, transform 0.3s;
}

.sg-cta-icon:hover {
    filter: drop-shadow(0 0 18px rgba(222, 146, 71, 0.7)) drop-shadow(0 0 40px rgba(223, 94, 71, 0.4));
}

/* Left column: stacked text blocks */
.sg-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

/* ---- Section titles ---- */
.sg-tag {
    display: block;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.6em;
}

/* ---- Full-width block ---- */
.sg-block {
    opacity: 0;
    transform: translateY(18px);
    animation: sgReveal 0.55s ease forwards;
}

.sg-block--full {
    padding: 0 0 var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sg-block--full:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sg-block p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

/* Staggered reveal */
.sg-content > :nth-child(1) { animation-delay: 0.08s; }
.sg-content > :nth-child(2) { animation-delay: 0.22s; }
.sg-content > :nth-child(3) { animation-delay: 0.36s; }
.sg-content > :nth-child(4) { animation-delay: 0.5s; }

@keyframes sgReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Infobox (right column, sticky) ---- */
.sg-infobox {
    position: sticky;
    top: 100px;
    align-self: start;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateX(16px);
    animation: sgSlideIn 0.5s ease 0.35s forwards;
}

@keyframes sgSlideIn {
    to { opacity: 1; transform: translateX(0); }
}

.sg-infotable {
    width: 100%;
    border-collapse: collapse;
}

.sg-infotable th,
.sg-infotable td {
    padding: 11px 16px;
    font-size: 0.88rem;
    line-height: 1.55;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    vertical-align: top;
    white-space: nowrap;
}

.sg-infotable tr:last-child th,
.sg-infotable tr:last-child td {
    border-bottom: none;
}

.sg-infotable th {
    color: rgba(0, 0, 0, 0.45);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    width: 1%;
}

.sg-infotable td {
    color: #333;
}

.sg-infotable td strong {
    color: #111;
}

.sg-infotable td em {
    font-style: italic;
    color: #555;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .sg-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-md);
    }
    .sg-header-logo {
        height: 5rem;
    }
    .sg-header-slogan-main {
        font-size: 1.4rem;
    }
    .sg-container {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-md);
    }
    .sg-infobox {
        position: static;
        transform: none;
        opacity: 1;
    }
    .sg-infotable th,
    .sg-infotable td {
        white-space: normal;
    }
    .sg-block--full {
        padding: 0 0 var(--spacing-md);
    }
}

/* Last Modified Section */
.last-modified {
    padding: var(--spacing-xl) var(--spacing-lg);
    border-top: 1px solid var(--border);
}

.last-modified p {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .mltc-hero {
        padding-top: 160px;
    }

    .mltc-hero-stats {
        gap: var(--spacing-xl);
    }

    .subnav-menu {
        gap: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .subnav-menu::-webkit-scrollbar { display: none; }

    .subnav-link {
        white-space: nowrap;
        font-size: 0.8rem;
        padding: 0 var(--spacing-sm);
    }

    /* Livrées responsive */
    .lv-container {
        padding: 0 var(--spacing-md);
    }

    .lv-header {
        margin-bottom: var(--spacing-xl);
    }

    .lv-chips {
        gap: 0.35rem;
    }

    .lv-chip {
        font-size: 0.76rem;
        padding: 0.35em 0.75em;
    }

    .lv-icons {
        justify-content: center;
        gap: var(--spacing-lg);
    }

    .lv-icons img {
        max-width: 45vw;
        height: auto;
    }

    .lv-sub {
        text-align: center;
    }

    .lv-category-title {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lv-icons img {
        max-width: 70vw;
    }
}

.lv-chips.lv-chips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm) var(--spacing-md);
  justify-items: stretch;
  align-items: stretch;
  max-width: 600px;
  margin: 0 0 var(--spacing-lg) 0;
}
@media (max-width: 600px) {
  .lv-chips.lv-chips-grid {
    grid-template-columns: 1fr;
  }
}

.lv-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centré en bloc */
  align-items: flex-start;
  gap: var(--spacing-xl) var(--spacing-3xl);
  margin: 0 auto var(--spacing-xl);
  max-width: 980px; /* limite la largeur pour garder un espacement cohérent */
  padding: 0 var(--spacing-md);
}
.lv-feature {
  flex: 0 1 220px; /* largeur de base fixe pour un wrapping identique */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}
.lv-feature-icon {
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-height: 44px;
  width: auto;
}
/* normaliser la taille des SVG / images / span à l'intérieur */
.lv-feature-icon svg,
.lv-feature-icon img,
.lv-feature-icon span {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto;
  line-height: 1;
}
/* carré R : légèrement plus grand pour rester identique visuellement */
.lv-feature-icon span {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: 0.95em;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* couleur du R (remplacé inline) */
.lv-feature-icon .lv-feature-r {
  background: #7c3aed;
  color: #fff;
}
.lv-feature-text {
  font-size: 0.98em;
  color: var(--text-secondary);
  line-height: 1.45;
  font-weight: 500;
  text-align: center;
  max-width: 200px; /* force des retours de ligne cohérents */
  margin: 0 auto;
}

@media (max-width: 600px) {
  .lv-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg) var(--spacing-md);
  }
  .lv-feature {
    flex: none;
    align-items: center;
    text-align: center;
  }
  .lv-feature-text {
    text-align: center;
    font-size: 0.85em;
  }
}

/* ========================================
   Lignes & Territoires - Index & Fiches
   ======================================== */

/* ---- Index card grid ---- */
.lt-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}
.lt-card {
    display: flex;
    flex-direction: column;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}
.lt-card:hover {
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.10), 0 2px 8px rgba(0, 0, 0, 0.04);
    transform: translateY(-3px);
}

/* Visual area (icon or future image) */
.lt-card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl) var(--spacing-xl) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(124, 58, 237, 0.02) 100%);
}
.lt-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    border-radius: var(--radius-lg);
}

/* Body */
.lt-card-body {
    padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-xl);
    display: flex;
    flex-direction: column;
    flex: 1;
}
.lt-card-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--primary-600);
    background: rgba(124, 58, 237, 0.08);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.02em;
    width: fit-content;
}
.lt-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}
.lt-card-body p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.lt-card-arrow {
    display: block;
    margin-top: var(--spacing-md);
    font-size: 1.2rem;
    color: var(--primary-500);
    font-weight: 600;
    transition: transform 0.2s ease;
}
.lt-card:hover .lt-card-arrow {
    transform: translateX(4px);
}

/* ---- Fiche detail pages ---- */

/* Metadata header */
.lt-fiche-header {
    max-width: 820px;
}
.lt-fiche-meta {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--spacing-md);
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
}
.lt-fiche-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lt-fiche-meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary-600);
}
.lt-fiche-meta-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Matériel encart */
.lt-materiel-encart {
    display: flex;
    gap: var(--spacing-xl);
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(124, 58, 237, 0.02) 100%);
    border: 1px solid var(--card-hover-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-2xl);
}
.lt-materiel-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    border-radius: var(--radius-lg);
}
.lt-materiel-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.lt-materiel-tagline {
    font-size: 0.92rem;
    color: var(--accent-text);
    font-weight: 500;
    margin-bottom: var(--spacing-lg) !important;
}
.lt-materiel-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: var(--spacing-md) 0 0;
}

/* Materiel specs */
.lt-materiel-specs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md) var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
}
.lt-materiel-spec {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.lt-materiel-spec-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary-600);
}
.lt-materiel-spec-value {
    font-size: 0.92rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Placeholder block for future content */
.lt-placeholder-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    padding: var(--spacing-3xl) var(--spacing-xl);
    background: var(--surface-elevated);
    border: 2px dashed var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
}
.lt-placeholder-icon {
    color: var(--text-muted);
    opacity: 0.5;
}
.lt-placeholder-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
    max-width: 400px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .lt-card-grid {
        grid-template-columns: 1fr;
    }
    .lt-materiel-encart {
        flex-direction: column;
        padding: var(--spacing-lg);
    }
    .lt-materiel-icon {
        width: 60px;
        height: 60px;
    }
    .lt-materiel-icon svg {
        width: 32px;
        height: 32px;
    }
    .lt-fiche-meta {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Production - Constructeur Ferroviaire
   ======================================== */

/* Page-level background - reset to default */

/* Hero - violet Production */
.prod-hero {
    padding: 180px var(--spacing-lg) var(--spacing-3xl);
    background: #9683EC;
    position: relative;
    overflow: hidden;
}
[data-theme="dark"] .prod-hero {
    background: #7b68c9;
}
.prod-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    opacity: 0.8;
    z-index: 0;
}
[data-theme="dark"] .prod-hero::before {
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
}
.prod-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.prod-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--spacing-md);
}
.prod-hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 3.5rem);
    margin-bottom: var(--spacing-md);
    color: white;
    -webkit-text-fill-color: white;
}
[data-theme="dark"] .prod-hero h1 {
    color: white;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: white;
}
.prod-hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Section tag - tons Production (violet lavande) */
.prod-section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #7e6b9e, #9b8ab8);
    color: white;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: var(--spacing-md);
}

/* Partnership banner */
.prod-partnership {
    padding: var(--spacing-xl) var(--spacing-lg) 0;
}
.prod-partnership-banner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.04) 0%, rgba(150, 120, 200, 0.04) 100%);
    border: 1px solid var(--card-hover-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg) var(--spacing-xl);
}
.prod-partnership-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-600), #9b8ab8);
    color: white;
    border-radius: var(--radius-lg);
}
.prod-partnership-banner strong {
    color: var(--accent-text);
    font-size: 1rem;
    display: block;
    margin-bottom: var(--spacing-xs);
}
.prod-partnership-banner p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.6;
    margin: 0;
}

/* Mini cards - Production color accent */
.prod-mini-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: var(--transition-base);
}
.prod-mini-card:hover {
    border-color: rgba(150, 120, 200, 0.35);
    box-shadow: 0 4px 16px rgba(150, 120, 200, 0.10);
}
.prod-mini-card strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}
.prod-mini-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Identity bar - horizontal fiche technique */
.prod-identity-bar {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface-elevated);
    margin: var(--spacing-xl) 0;
    overflow: hidden;
}
.prod-identity-item {
    flex: 1;
    padding: var(--spacing-lg) var(--spacing-xl);
}
.prod-identity-item strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #7e6b9e;
    margin-bottom: 4px;
}
[data-theme="dark"] .prod-identity-item strong {
    color: #c4b3de;
}
.prod-identity-item span {
    font-size: 0.92rem;
    color: var(--text-primary);
    line-height: 1.5;
}
.prod-identity-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

/* ---- History collapsible ---- */
.prod-details {
    margin-top: var(--spacing-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-elevated);
}
.prod-details + .prod-details {
    margin-top: var(--spacing-md);
}
.prod-details summary {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.15rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background 0.2s ease;
}
.prod-details summary::-webkit-details-marker { display: none; }
.prod-details summary::before {
    content: '';
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border-right: 2px solid #7e6b9e;
    border-bottom: 2px solid #7e6b9e;
    transform: rotate(-45deg);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
[data-theme="dark"] .prod-details summary::before {
    border-color: #c4b3de;
}
.prod-details[open] summary::before {
    transform: rotate(45deg);
}
.prod-details summary:hover {
    background: rgba(126, 107, 158, 0.06);
}
[data-theme="dark"] .prod-details summary:hover {
    background: rgba(196, 179, 222, 0.07);
}
.prod-details-body {
    padding: 0 1.15rem 1.15rem;
}

/* ---- History tables ---- */
.prod-table-wrap {
    overflow-x: auto;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.prod-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    line-height: 1.5;
}
.prod-table thead {
    background: rgba(126, 107, 158, 0.12);
}
[data-theme="dark"] .prod-table thead {
    background: rgba(196, 179, 222, 0.1);
}
.prod-table th {
    padding: 0.7rem 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    border-bottom: 2px solid var(--border);
}
.prod-table td {
    padding: 0.65rem 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.prod-table tbody tr:last-child td {
    border-bottom: none;
}
.prod-table tbody tr:hover {
    background: rgba(126, 107, 158, 0.05);
}
[data-theme="dark"] .prod-table tbody tr:hover {
    background: rgba(196, 179, 222, 0.06);
}
.prod-table td strong {
    color: var(--text-primary);
}

/* ---- Catalog grid ---- */
.prod-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}
.prod-card {
    display: flex;
    flex-direction: column;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}
.prod-card:hover {
    border-color: rgba(150, 120, 200, 0.35);
    box-shadow: 0 8px 28px rgba(150, 120, 200, 0.10), 0 2px 8px rgba(0, 0, 0, 0.04);
    transform: translateY(-3px);
}

/* Visual / image placeholder */
.prod-card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    background: linear-gradient(135deg, rgba(150, 120, 200, 0.06) 0%, rgba(150, 120, 200, 0.02) 100%);
    border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .prod-card-visual {
    background: linear-gradient(135deg, rgba(170, 140, 220, 0.08) 0%, rgba(170, 140, 220, 0.03) 100%);
}
.prod-card-img-placeholder {
    color: var(--text-muted);
    opacity: 0.4;
}

/* Body */
.prod-card-body {
    padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-xl);
    display: flex;
    flex-direction: column;
    flex: 1;
}
.prod-card-type {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.75rem;
    color: #7e6b9e;
    background: rgba(150, 120, 200, 0.10);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    width: fit-content;
}
[data-theme="dark"] .prod-card-type {
    color: #c4b3de;
    background: rgba(170, 140, 220, 0.15);
}
.prod-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}
.prod-card-body p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}
.prod-card-year {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.15rem 0.55rem;
    border-radius: var(--radius-sm, 4px);
    background: rgba(126, 107, 158, 0.12);
    color: #7e6b9e;
    font-size: 0.78rem;
    font-weight: 600;
}
[data-theme="dark"] .prod-card-year {
    background: rgba(196, 179, 222, 0.12);
    color: #c4b3de;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .prod-hero {
        padding-top: 160px;
    }
    .prod-catalog-grid {
        grid-template-columns: 1fr;
    }
    .prod-table {
        font-size: 0.82rem;
    }
    .prod-table th,
    .prod-table td {
        padding: 0.5rem 0.65rem;
    }
    .prod-identity-bar {
        flex-direction: column;
    }
    .prod-identity-divider {
        width: 100%;
        height: 1px;
    }
}

/* ========================================
   Opération Lignes de Vie - OLV Styles
   ======================================== */

/* ---- Institutional header ---- */
.olv-header-section {
    padding-bottom: 0;
}

.olv-institutional-header {
    max-width: 820px;
    text-align: center;
    margin: 0 auto;
}

.olv-sigles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.olv-sigle-prlc {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--primary-600);
    background: rgba(124, 58, 237, 0.08);
    padding: 6px 20px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(124, 58, 237, 0.2);
}

.olv-sigle-divider {
    width: 2px;
    height: 28px;
    background: var(--border);
    flex-shrink: 0;
}

.olv-sigle-full {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

.olv-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.olv-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.olv-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

.olv-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
}

/* ---- Frise chronologique ---- */
.olv-frise {
    position: relative;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.olv-frise-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg,
        transparent,
        rgba(124, 58, 237, 0.25) 5%,
        rgba(124, 58, 237, 0.35) 50%,
        rgba(124, 58, 237, 0.25) 95%,
        transparent);
    border-radius: var(--radius-full);
}

.olv-frise-item {
    position: relative;
    padding-left: 64px;
    padding-bottom: var(--spacing-xl);
}

.olv-frise-item:last-child {
    padding-bottom: 0;
}

.olv-frise-dot {
    position: absolute;
    left: 17px;
    top: 6px;
    width: 17px;
    height: 17px;
    background: var(--background);
    border: 3px solid var(--primary-500);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
    z-index: 1;
    transition: all 0.3s ease;
}

.olv-frise-item:hover .olv-frise-dot {
    background: var(--primary-500);
    box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.18);
    transform: scale(1.15);
}

.olv-frise-date {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-600);
    background: rgba(124, 58, 237, 0.08);
    padding: 3px 14px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.02em;
}

.olv-frise-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg) var(--spacing-xl);
    transition: all 0.3s ease;
}

.olv-frise-card:hover {
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
    transform: translateY(-2px);
}

.olv-frise-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.olv-frise-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* ---- Carte des lignes OLV ---- */
.olv-map-container {
    margin-top: var(--spacing-xl);
}

.olv-map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    min-height: 320px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.04) 0%, rgba(124, 58, 237, 0.02) 100%);
    border: 2px dashed rgba(124, 58, 237, 0.18);
    border-radius: var(--radius-xl);
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.olv-map-placeholder svg {
    opacity: 0.35;
}

.olv-map-legend {
    margin-top: var(--spacing-xl);
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
}

.olv-map-legend h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.olv-legend-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.olv-legend-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.olv-legend-dot {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-top: 3px;
}

.olv-legend-phase1 {
    background: var(--primary-600);
}

.olv-legend-phase2 {
    background: var(--primary-400);
}

.olv-legend-phase3 {
    background: rgba(124, 58, 237, 0.3);
    border: 2px dashed var(--primary-400);
}

.olv-legend-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.olv-legend-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ---- Fiche matériel Valado ---- */
.olv-valado-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.olv-valado-card {
    display: flex;
    flex-direction: column;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}

.olv-valado-card:hover {
    border-color: rgba(150, 120, 200, 0.35);
    box-shadow: 0 8px 28px rgba(150, 120, 200, 0.10), 0 2px 8px rgba(0, 0, 0, 0.04);
    transform: translateY(-3px);
}

.olv-valado-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    background: linear-gradient(135deg, rgba(150, 120, 200, 0.06) 0%, rgba(150, 120, 200, 0.02) 100%);
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    opacity: 0.5;
}

.olv-valado-body {
    padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-xl);
}

.olv-valado-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.olv-valado-specs {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.olv-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    gap: var(--spacing-md);
}

.olv-spec-row:last-child {
    border-bottom: none;
}

.olv-spec-row span {
    color: var(--text-muted);
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
}

.olv-spec-row strong {
    color: var(--text-primary);
    text-align: right;
    font-weight: 600;
    font-size: 0.83rem;
}

/* ---- Communiqué de presse ---- */
.olv-press-release {
    max-width: 780px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    color: #333;
}

[data-theme="dark"] .olv-press-release {
    background: var(--surface-elevated);
    border-color: var(--border);
    color: var(--text-secondary);
}

.olv-press-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 3px solid #1a1a6e;
    flex-wrap: wrap;
}

[data-theme="dark"] .olv-press-header {
    border-bottom-color: var(--primary-500);
}

.olv-press-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #1a1a6e;
}

[data-theme="dark"] .olv-press-logo {
    color: var(--primary-400);
}

.olv-press-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.olv-press-type {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1a1a6e;
    background: rgba(26, 26, 110, 0.08);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
}

[data-theme="dark"] .olv-press-type {
    color: var(--primary-400);
    background: rgba(124, 58, 237, 0.1);
}

.olv-press-date {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

[data-theme="dark"] .olv-press-date {
    color: var(--text-muted);
}

.olv-press-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin-bottom: var(--spacing-xl);
}

[data-theme="dark"] .olv-press-title {
    color: var(--text-primary);
}

.olv-press-body p {
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: var(--spacing-md);
    color: #444;
    text-align: justify;
}

[data-theme="dark"] .olv-press-body p {
    color: var(--text-secondary);
}

.olv-press-body strong {
    color: #222;
}

[data-theme="dark"] .olv-press-body strong {
    color: var(--text-primary);
}

.olv-press-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid #ddd;
    flex-wrap: wrap;
}

[data-theme="dark"] .olv-press-footer {
    border-top-color: var(--border);
}

.olv-press-contact strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #888;
    margin-bottom: 4px;
}

.olv-press-contact p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

[data-theme="dark"] .olv-press-contact strong {
    color: var(--text-muted);
}

[data-theme="dark"] .olv-press-contact p {
    color: var(--text-secondary);
}

.olv-press-ref span {
    font-size: 0.78rem;
    color: #aaa;
    font-family: monospace;
}

[data-theme="dark"] .olv-press-ref span {
    color: var(--text-muted);
}

/* ---- OLV Responsive ---- */
@media (max-width: 768px) {
    .olv-sigles {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    .olv-sigle-divider {
        width: 40px;
        height: 2px;
    }
    .olv-valado-grid {
        grid-template-columns: 1fr;
    }
    .olv-press-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .olv-press-meta {
        align-items: flex-start;
    }
    .olv-press-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .olv-press-body p {
        text-align: left;
    }
}

/* ---- Lines list ---- */
.olv-lines-subtitle {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: var(--spacing-xl) 0 var(--spacing-md);
}

.olv-lines-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.olv-line-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    transition: all 0.3s ease;
}

.olv-line-item:hover {
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.08);
    transform: translateY(-2px);
}

.olv-line-item-tbd {
    opacity: 0.6;
    border-style: dashed;
}

.olv-line-bullet {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-top: 6px;
    border-radius: 50%;
    background: var(--primary-500);
}

.olv-line-item-tbd .olv-line-bullet {
    background: var(--text-muted);
}

.olv-line-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.olv-line-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   WIP (En construction) Page
   ======================================== */
.wip-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.wip-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.wip-content svg {
    color: var(--text-secondary);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.wip-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.wip-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.wip-content .btn {
    display: inline-block;
}
