/**
 * spare-parts.css — Styles dédiés à la page Pièces Détachées Akrapovič
 * Phase 10.5 — Design PREMIUM WHOUAOU — refonte complète SEO homepage
 */

/* ============================================================================
   ANIMATIONS GLOBALES
   ========================================================================== */
@keyframes heroGlow {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}
@keyframes heroGlowPulse {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1; }
}
/* ===== HERO LAYOUT & ELEMENTS ===== */
.sp-hero-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 20px;
    text-align: left;
}

.sp-hero-text-side {
    flex: 1.2;
}

.sp-hero-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.schematic-float {
    max-width: 250px !important;
    animation: simpleFloat 4s ease-in-out infinite alternate !important;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
}

.schematic-float .hero-art-img {
    transform: none !important; /* Pas de rotation 3D pour celle-ci */
    box-shadow: none !important;
    border: none !important;
    filter: brightness(1.2);
}

@keyframes simpleFloat {
    from { transform: translateY(0); }
    to   { transform: translateY(-20px); }
}

.hero-logo-white, .sp-hero-content h1 .highlight img {
    height: 1.1em;
    width: auto;
    vertical-align: middle;
    filter: brightness(0) invert(1) !important;
    margin-left: 15px;
    opacity: 1 !important;
    -webkit-text-fill-color: initial !important;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(226,37,43,0.3) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-logo-inline {
    height: 22px;
    width: auto;
    vertical-align: middle;
    margin-left: 10px;
}

@keyframes floatingArt {
    0%, 100% { transform: translateY(0) rotateY(-10deg); }
    50% { transform: translateY(-20px) rotateY(-5deg); }
}

@media (max-width: 1024px) {
    .sp-hero-layout { flex-direction: column; text-align: center; gap: 40px; }
    .sp-hero-image-side { order: -1; }
    .sp-floating-mockup { max-width: 320px; }
}

/* PROTECTION MARQUES (No Background) */
.seo-brands-accordions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 30px;
    background: none !important;
}

.hero-schematic-inline {
    height: 100px;
    width: auto;
    vertical-align: middle;
    margin-left: 15px;
    filter: invert(1) brightness(1.5) contrast(1.1) drop-shadow(0 0 15px rgba(226, 37, 43, 0.4));
    mix-blend-mode: screen;
    opacity: 0.95;
    transition: transform 0.5s ease;
}

.hero-schematic-inline:hover {
    transform: scale(1.1) rotate(2deg);
    filter: invert(1) brightness(1.8) contrast(1.2) drop-shadow(0 0 25px rgba(226, 37, 43, 0.6));
}

@media (max-width: 768px) {
    .hero-schematic-inline { height: 60px; margin-left: 0; margin-top: 10px; display: block; margin: 10px auto; }
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(226, 37, 43, 0.4); }
    50%       { box-shadow: 0 0 0 8px rgba(226, 37, 43, 0); }
}
@keyframes dotBlink {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px #e2252b, 0 0 12px #e2252b; }
    50%       { opacity: 0.4; box-shadow: none; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
@keyframes particleFloat {
    0%   { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.3; }
    33%  { transform: translateY(-30px) translateX(15px) rotate(120deg); opacity: 0.6; }
    66%  { transform: translateY(-10px) translateX(-10px) rotate(240deg); opacity: 0.4; }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); opacity: 0.3; }
}
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes faqOpen {
    from { max-height: 0; opacity: 0; }
    to   { max-height: 500px; opacity: 1; }
}
@keyframes scanLine {
    0%   { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

/* ============================================================================
   HERO — NEW PREMIUM VERSION
   ========================================================================== */
.sp-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 5vw 80px;

    /* Base Carbon Fiber (100% CSS Pattern) */
    background:
        linear-gradient(27deg, #151515 5px, transparent 5px) 0 5px,
        linear-gradient(207deg, #151515 5px, transparent 5px) 10px 0px,
        linear-gradient(27deg, #222 5px, transparent 5px) 0px 10px,
        linear-gradient(207deg, #222 5px, transparent 5px) 10px 5px,
        linear-gradient(90deg, #1b1b1b 10px, transparent 10px),
        linear-gradient(#1d1d1d 25%, #1a1a1a 25%, #1a1a1a 50%, transparent 50%, transparent 75%, #242424 75%, #242424 100%);
    background-color: #131313;
    background-size: 20px 20px;
}

/* 1. LAYER DE FOND : Halo Rouge Actif et Assombrissement */
.sp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    
    background: 
        radial-gradient(ellipse 70% 80% at 50% 30%, rgba(226, 37, 43, 0.6) 0%, rgba(226, 37, 43, 0.2) 45%, transparent 80%),
        linear-gradient(180deg, rgba(226, 37, 43, 0.12) 0%, transparent 35%, #050505 100%);
    
    z-index: 0;
    pointer-events: none;
    animation: heroGlowPulse 5s ease-in-out infinite alternate;
}

/* 2. On supprime le ::after qui ne sert plus et masquait tout */
.sp-hero::after {
    display: none;
}

/* Floating particles via pseudo-éléments children */
.sp-hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(226, 37, 43, 0.25);
    pointer-events: none;
    z-index: 1;
}
.sp-hero-particle:nth-child(1) { width: 4px; height: 4px; top: 20%; left: 15%; animation: particleFloat 8s ease-in-out infinite; }
.sp-hero-particle:nth-child(2) { width: 6px; height: 6px; top: 60%; left: 80%; animation: particleFloat 12s ease-in-out infinite 2s; background: rgba(226,37,43,0.15); }
.sp-hero-particle:nth-child(3) { width: 3px; height: 3px; top: 75%; left: 25%; animation: particleFloat 10s ease-in-out infinite 4s; }
.sp-hero-particle:nth-child(4) { width: 5px; height: 5px; top: 35%; left: 70%; animation: particleFloat 9s ease-in-out infinite 1s; background: rgba(255,100,100,0.2); }
.sp-hero-particle:nth-child(5) { width: 4px; height: 4px; top: 85%; left: 55%; animation: particleFloat 11s ease-in-out infinite 3s; }

.sp-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 960px;
    animation: fadeInUp 0.9s ease-out;
}

/* Badge animé - VERSION GRIS CLAIR */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05); /* Fond gris très léger */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Bordure gris clair */
    padding: 8px 20px;
    border-radius: 100px;
    color: #cccccc; /* Texte gris clair */
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #cccccc; /* Point gris clair */
    border-radius: 50%;
    animation: simpleBlink 2s ease-in-out infinite;
}

@keyframes simpleBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.sp-hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 24px;
    color: #fff;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.sp-hero-content h1 .highlight {
    color: var(--primary, #e2252b);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #e2252b, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-hero-content h1 .highlight img {
    height: 0.7em;
    width: auto;
    filter: brightness(0) invert(1) !important;
    -webkit-text-fill-color: initial;
    opacity: 1;
    vertical-align: middle;
    margin-left: 10px;
}

.sp-hero-content .description {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

/* Stats bar */
.sp-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.sp-hero-stat {
    text-align: center;
    animation: countUp 1s ease-out forwards;
}

.sp-hero-stat-number {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    background: linear-gradient(135deg, #fff, #e2252b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-hero-stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 6px;
}

.sp-hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    align-self: center;
}

/* Trust pills */
.sp-hero-trust {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.sp-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
}

.sp-trust-pill:hover {
    background: rgba(226, 37, 43, 0.08);
    border-color: rgba(226, 37, 43, 0.3);
    color: #fff;
}

.sp-trust-pill svg {
    color: #4ade80;
    flex-shrink: 0;
}

/* ============================================================================
   SÉLECTEUR
   ========================================================================== */
.sp-selector-section {
    padding: 0 5vw 50px;
    background: transparent;
    position: relative;
    z-index: 10; /* Augmenté pour être au-dessus du hero content si besoin */
    margin-top: -40px;
}

.sp-selector-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(12, 12, 14, 0.9);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(226, 37, 43, 0.06) inset;
    position: relative;
    z-index: 1; /* Baseline basse pour les wrappers */
}

.search-selector {
    z-index: 100 !important; /* Beaucoup plus haut que les autres wrappers */
}

.sp-selector-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 22px;
}
.sp-selector-header svg { color: var(--primary, #e2252b); }

.sp-search-form {
    display: flex;
    gap: 14px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.sp-search-form .search-group {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sp-search-form label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
}

.sp-search-form select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.sp-search-form select:focus {
    outline: none;
    border-color: var(--primary, #e2252b);
    box-shadow: 0 0 0 3px rgba(226, 37, 43, 0.15);
}

.sp-search-form .search-btn {
    background: linear-gradient(135deg, #e2252b, #c71e24);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0 32px;
    height: 50px;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(226, 37, 43, 0.3);
}

.sp-search-form .search-btn:not(:disabled):hover {
    background: linear-gradient(135deg, #ff2d34, #e2252b);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(226, 37, 43, 0.5);
}

.sp-search-form .search-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.sp-selector-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 28px 0;
}

.sp-selector-divider::before,
.sp-selector-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.sp-selector-divider span {
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.sp-sku-search input[type="text"] {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sp-sku-search input[type="text"]:focus {
    outline: none;
    border-color: var(--primary, #e2252b);
    box-shadow: 0 0 0 3px rgba(226, 37, 43, 0.15);
}

.sku-input-container { position: relative; width: 100%; }

.sku-autocomplete-list {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #141416;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    z-index: 20000 !important; /* Premier plan absolu par rapport à tout */
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.sku-autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.sku-autocomplete-item:last-child { border-bottom: none; }
.sku-autocomplete-item:hover { background: rgba(226, 37, 43, 0.12); }
.sku-autocomplete-item .item-sku { display: block; font-weight: 700; color: #fff; margin-bottom: 2px; }
.sku-autocomplete-item .item-name { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ============================================================================
   SECTION SEO — CONTENU PREMIUM
   ========================================================================== */
.sp-seo-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 70px 5vw 20px;
}

/* --- Section générique --- */
.seo-section {
    margin-bottom: 80px;
}

.seo-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.seo-section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.1em;
    background: linear-gradient(180deg, #e2252b, #ff6b35);
    border-radius: 2px;
    flex-shrink: 0;
}

.seo-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 900px;
}

/* --- ENGAGEMENTS GRID (glassmorphism cards) --- */
.seo-engagements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.seo-engagement-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 24px 22px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.seo-engagement-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(226, 37, 43, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.seo-engagement-card:hover {
    border-color: rgba(226, 37, 43, 0.3);
    background: rgba(226, 37, 43, 0.04);
    transform: translateY(-4px);
}

.seo-engagement-card:hover::before { opacity: 1; }

.seo-engagement-icon {
    width: 48px;
    height: 48px;
    background: rgba(226, 37, 43, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #e2252b);
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.seo-engagement-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.seo-engagement-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
}

/* CTA Alert box */
.seo-alert-box {
    background: rgba(226, 37, 43, 0.05);
    border: 1px solid rgba(226, 37, 43, 0.2);
    border-left: 4px solid var(--primary, #e2252b);
    border-radius: 0 12px 12px 0;
    padding: 18px 24px;
    margin: 28px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}
.seo-alert-box strong { color: #fff; }

/* --- TIMELINE HISTOIRE --- */
.seo-timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 36px;
}

.seo-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary, #e2252b), transparent);
}

.seo-timeline-item {
    position: relative;
    margin-bottom: 28px;
    animation: slideInLeft 0.5s ease-out both;
}

.seo-timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary, #e2252b);
    box-shadow: 0 0 10px rgba(226, 37, 43, 0.6);
}

.seo-timeline-year {
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--primary, #e2252b);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 4px;
}

.seo-timeline-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 20px;
}

/* --- CATÉGORIES PIÈCES (icon cards) --- */
.seo-parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.seo-part-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    cursor: default;
}

.seo-part-card:hover {
    border-color: rgba(226, 37, 43, 0.35);
    background: rgba(226, 37, 43, 0.04);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.seo-part-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.seo-part-card-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.seo-part-card-name {
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.seo-part-card-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

/* Warning badge */
.seo-warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.25);
    color: #fbbf24;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    margin: 16px 0;
}

/* --- TABLEAU LIGNES AKRAPOVIC --- */
.seo-lines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.seo-line-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.seo-line-card:hover {
    border-color: rgba(226, 37, 43, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.seo-line-card-header {
    background: linear-gradient(135deg, rgba(226, 37, 43, 0.15), rgba(226, 37, 43, 0.05));
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.seo-line-card-name {
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.seo-line-card-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 3px;
}

.seo-line-card-body {
    padding: 18px 24px;
}

.seo-line-parts-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.seo-line-parts-list li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    transition: all 0.2s;
}

.seo-line-parts-list li:hover {
    background: rgba(226, 37, 43, 0.1);
    border-color: rgba(226, 37, 43, 0.3);
    color: #fff;
}

/* --- MARQUES (brand pills scroll) --- */
.seo-brands-bar {
    margin-top: 32px;
    overflow: hidden;
    position: relative;
}

.seo-brands-track {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.seo-brand-chip {
    background: rgba(226, 37, 43, 0.07);
    border: 1px solid rgba(226, 37, 43, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 100px;
    transition: all 0.2s;
    white-space: nowrap;
    cursor: default;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.seo-brand-chip:hover {
    background: rgba(226, 37, 43, 0.18);
    border-color: rgba(226, 37, 43, 0.5);
    color: #fff;
    transform: scale(1.05);
}

/* --- MICROFICHES (step cards) --- */
.seo-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 36px;
    position: relative;
}

.seo-step-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.seo-step-card:hover {
    border-color: rgba(226, 37, 43, 0.3);
    background: rgba(226, 37, 43, 0.03);
    transform: translateY(-4px);
}

.seo-step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(226, 37, 43, 0.15);
    line-height: 1;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.seo-step-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.seo-step-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

/* --- COMPARATIF ORIGINE vs GÉNÉRIQUE --- */
.seo-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 32px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.seo-comparison-table thead th {
    background: rgba(226, 37, 43, 0.12);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-comparison-table thead th:first-child { border-radius: 0; }
.seo-comparison-table thead th:nth-child(2) { color: #4ade80; }
.seo-comparison-table thead th:nth-child(3) { color: rgba(255, 255, 255, 0.4); }

.seo-comparison-table tbody td {
    padding: 14px 20px;
    font-size: 0.84rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    vertical-align: middle;
}

.seo-comparison-table tbody tr:last-child td { border-bottom: none; }

.seo-comparison-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.seo-comparison-table .col-ok { color: #4ade80; font-weight: 700; }
.seo-comparison-table .col-warn { color: rgba(255,255,255,0.35); }

/* --- GUIDE ENTRETIEN TABLE --- */
.seo-maintenance-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 32px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.seo-maintenance-table thead th {
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-maintenance-table tbody td {
    padding: 13px 20px;
    font-size: 0.83rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.75);
    vertical-align: middle;
}

.seo-maintenance-table tbody tr:last-child td { border-bottom: none; }
.seo-maintenance-table tbody tr:hover td { background: rgba(226, 37, 43, 0.03); }
.seo-maintenance-table .col-part { font-weight: 700; color: #fff; }
.seo-maintenance-table .col-freq { color: var(--primary, #e2252b); font-weight: 600; }

/* --- FAQ ACCORDÉON --- */
.seo-faq {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seo-faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s;
}

.seo-faq-item.open {
    border-color: rgba(226, 37, 43, 0.3);
}

.seo-faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    transition: background 0.2s;
}

.seo-faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.seo-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(226, 37, 43, 0.1);
    border: 1px solid rgba(226, 37, 43, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #e2252b);
    font-size: 1.2rem;
    font-weight: 900;
    transition: all 0.3s ease;
    line-height: 1;
}

.seo-faq-item.open .seo-faq-icon {
    background: rgba(226, 37, 43, 0.2);
    transform: rotate(45deg);
}

.seo-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

.seo-faq-item.open .seo-faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}

/* --- WHY TTSHOP CTA --- */
.seo-cta-block {
    background: linear-gradient(135deg, rgba(226, 37, 43, 0.07), rgba(226, 37, 43, 0.03));
    border: 1px solid rgba(226, 37, 43, 0.2);
    border-radius: 24px;
    padding: 50px 48px;
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.seo-cta-block::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(226, 37, 43, 0.08), transparent 70%);
    pointer-events: none;
}

.seo-cta-text { flex: 1; }

.seo-cta-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.seo-cta-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 24px;
}

.seo-cta-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.seo-cta-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.seo-cta-highlight-item svg { color: #4ade80; flex-shrink: 0; }

.seo-cta-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary, #e2252b);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 8px 25px rgba(226, 37, 43, 0.35);
}

.seo-cta-contact:hover {
    background: #c71e24;
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(226, 37, 43, 0.5);
}

.seo-cta-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.seo-official-badge {
    background: rgba(226, 37, 43, 0.1);
    border: 2px solid rgba(226, 37, 43, 0.4);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    box-shadow: 0 0 30px rgba(226, 37, 43, 0.15);
}

.seo-official-badge span {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary, #e2252b);
    display: block;
    margin-bottom: 4px;
}

/* ============================================================================
   RÉSULTATS GRILLE
   ========================================================================== */
.sp-results-section {
    padding: 50px 5vw 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.sp-results-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.sp-results-header h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.sp-count-badge {
    background: rgba(226, 37, 43, 0.1);
    border: 1px solid rgba(226, 37, 43, 0.3);
    color: var(--primary, #e2252b);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
}

.sp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.sp-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.sp-card:hover {
    border-color: rgba(226, 37, 43, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.sp-card-img {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.sp-card:hover .sp-card-img img {
    transform: scale(1.05);
}

.sp-card-no-img {
    color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.sp-parts-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 235, 120, 0.1);
    border: 1px solid rgba(0, 235, 120, 0.3);
    color: #00eb78;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sp-card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.sp-card-sku {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary, #e2252b);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sp-card-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sp-card-actions {
    margin-top: auto;
    padding-top: 14px;
}

.sp-btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #e2252b, #c71e24);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(226, 37, 43, 0.25);
}

.sp-btn-primary:hover {
    background: linear-gradient(135deg, #ff2d34, #e2252b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226, 37, 43, 0.45);
}

.sp-no-pdf {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    padding: 12px;
}

.sp-empty {
    text-align: center;
    padding: 80px 20px;
    color: rgba(255, 255, 255, 0.5);
}
.sp-empty svg { margin-bottom: 20px; opacity: 0.3; }
.sp-empty h3 { font-size: 1.3rem; color: rgba(255,255,255,0.8); margin-bottom: 12px; }
.sp-empty p { line-height: 1.7; margin-bottom: 28px; }

/* ============================================================================
   SECTION INFO (état initial)
   ========================================================================== */
.sp-info-section {
    padding: 20px 5vw 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.sp-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.sp-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.2s, transform 0.2s;
}

.sp-info-card:hover {
    border-color: rgba(226, 37, 43, 0.3);
    transform: translateY(-3px);
}

.sp-info-icon {
    width: 56px;
    height: 56px;
    background: rgba(226, 37, 43, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #e2252b);
    margin-bottom: 18px;
}

.sp-info-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
}

.sp-info-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================================
   MODAL
   ========================================================================== */
.sp-hero-content h1 .highlight img {
    vertical-align: middle;
    margin-left: 4px;
}

#sp-modal {
    overflow-y: hidden !important;
    align-items: center !important;
    padding: 0 !important;
}

#sp-modal-content.modal-content.full-width {
    height: 95vh !important;
    max-height: 95vh !important;
    min-height: auto !important;
    overflow-y: auto !important;
    margin: auto !important;
}

@media (max-width: 768px) {
    #sp-modal-content.modal-content.full-width {
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
    }
}

/* ============================================================================
   PAGINATION
   ========================================================================== */
.sp-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.sp-page-btn {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.sp-page-btn:hover,
.sp-page-btn.active { background: var(--primary, #e2252b); border-color: var(--primary, #e2252b); }

.sp-page-ellipsis { color: rgba(255,255,255,0.3); padding: 10px; }

/* ============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
    .seo-cta-block { flex-direction: column; padding: 36px 28px; }
    .seo-cta-badge { display: none; }
    .sp-hero-stats { gap: 20px; }
    .sp-hero-stat-divider { display: none; }
}

@media (max-width: 768px) {
    .sp-hero { min-height: 60vh; padding: 60px 5vw 40px; }
    .sp-hero-layout { gap: 30px; }
    .sp-selector-wrapper { padding: 22px 18px; }
    .sp-search-form { flex-direction: column; }
    .sp-search-form .search-btn { width: 100%; justify-content: center; }
    .sp-grid { grid-template-columns: 1fr; }
    .sp-results-section { padding: 30px 5vw 60px; }
    .seo-engagements-grid { grid-template-columns: 1fr 1fr; }
    .seo-parts-grid { grid-template-columns: 1fr; }
    .seo-selector-section { margin-top: 0; }
    .sp-selector-section { margin-top: 0; padding-top: 20px; }
    .seo-comparison-table { font-size: 0.75rem; }
    .seo-comparison-table thead th,
    .seo-comparison-table tbody td { padding: 10px 12px; }
}

@media (max-width: 480px) {
    .seo-engagements-grid { grid-template-columns: 1fr; }
    .sp-hero-trust { display: none; }
    .hero-badge { font-size: 0.62rem; padding: 6px 14px; }
    .sp-hero-content h1 { font-size: 1.8rem; }
}

/* ============================================================================
   ACCORDÉONS MARQUES (SEO)
   ========================================================================== */
.seo-brands-accordions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.seo-brand-details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 20px;
    cursor: pointer;
    flex: 1 1 calc(33.333% - 15px);
    min-width: 250px;
    transition: background 0.2s, border-color 0.2s;
}

@media (max-width: 768px) {
    .seo-brand-details {
        flex: 1 1 100%;
    }
}

.seo-brand-details:hover {
    background: rgba(255, 255, 255, 0.05);
}

.seo-brand-details[open] {
    background: rgba(226, 37, 43, 0.05);
    border-color: rgba(226, 37, 43, 0.3);
}

.seo-brand-summary {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seo-brand-summary::-webkit-details-marker {
    display: none;
}

.seo-brand-summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--primary, #e2252b);
    font-weight: 400;
    transition: transform 0.2s;
}

.seo-brand-details[open] .seo-brand-summary::after {
    content: '-';
    transform: rotate(180deg);
}

.seo-brand-content {
    margin-top: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

/* ============================================================================
   SEO SHADOW — Masqué visuellement, indexé par Google
   ========================================================================== */
#akra-seo-shadow {
    display: none;
}
