/* ============================================
   THERMOMÈTRE CARBONE - STYLES PREMIUM CORRIGÉS
   ============================================ */

:root {
    --thermo-primary: #00d4aa;
    --thermo-secondary: #0984e3;
    --thermo-accent: #6c5ce7;
    --thermo-warning: #ffcc00;
    --thermo-critical: #ff3b30;
    
    --thermo-dark: #0a0f1c;
    --thermo-dark-light: #1a2332;
    --thermo-light: #f8fafc;
    --thermo-gray: #64748b;
    
    --thermo-gradient: linear-gradient(135deg, var(--thermo-primary), var(--thermo-accent));
    --thermo-glow: 0 0 30px rgba(0, 212, 170, 0.4);
}

/* Page spécifique */
.thermometer-page {
    background: var(--thermo-dark);
    color: var(--thermo-light);
    min-height: 100vh;
}

/* Hero Thermomètre */
.thermometer-hero {
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(10, 15, 28, 0.95) 0%,
        rgba(26, 35, 50, 0.9) 100%);
}

.thermometer-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.quantum-grid {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridFlow 20s linear infinite;
}

.gradient-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(0, 212, 170, 0.1) 0%,
        rgba(9, 132, 227, 0.05) 30%,
        transparent 70%);
    filter: blur(40px);
    animation: orbPulse 8s ease-in-out infinite;
}

@keyframes gridFlow {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.thermometer-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.thermometer-hero .premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.thermometer-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.thermometer-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--thermo-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.stat-chip i {
    color: var(--thermo-primary);
}

/* Section principale du thermomètre */
.thermometer-main-section {
    padding: 4rem 0;
    position: relative;
}

.thermometer-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 212, 170, 0.3),
        transparent);
}

.thermometer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 1200px) {
    .thermometer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Colonne gauche : Contrôles */
.thermometer-controls {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.control-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.control-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.control-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.control-header h3 i {
    color: var(--thermo-primary);
}

.control-badge {
    background: rgba(0, 212, 170, 0.1);
    color: var(--thermo-primary);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.control-group {
    margin-bottom: 2rem;
}

.control-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.control-label i {
    font-size: 1.2rem;
    color: var(--thermo-primary);
    margin-top: 0.25rem;
}

.control-label h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.control-label p {
    font-size: 0.85rem;
    color: var(--thermo-gray);
    line-height: 1.4;
}

/* Sélecteur de secteur */
.sector-select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--thermo-light);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sector-select:focus {
    outline: none;
    border-color: var(--thermo-primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.sector-select option {
    background: var(--thermo-dark-light);
    color: var(--thermo-light);
}

/* Sliders personnalisés */
.range-container {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 15px;
}

.range-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.range-header span:first-child {
    font-size: 1.5rem;
    color: var(--thermo-primary);
}

.range-slider {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    margin: 1rem 0;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--thermo-gradient);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--thermo-dark);
    box-shadow: var(--thermo-glow);
    transition: all 0.3s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--thermo-primary);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--thermo-gray);
    margin-top: 0.5rem;
}

/* Boutons d'action */
.control-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

/* Carte de précision */
.precision-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.precision-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.precision-header i {
    color: var(--thermo-primary);
    font-size: 1.2rem;
}

.precision-header h4 {
    font-size: 1rem;
    font-weight: 600;
}

.precision-meter {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.precision-fill {
    height: 100%;
    background: var(--thermo-gradient);
    border-radius: 4px;
    transition: width 1s ease;
}

.precision-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.precision-details span {
    font-weight: 700;
    color: var(--thermo-primary);
}

.precision-details small {
    color: var(--thermo-gray);
    font-size: 0.8rem;
}

.precision-note {
    font-size: 0.85rem;
    color: var(--thermo-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.precision-note i {
    color: var(--thermo-primary);
    margin-top: 0.2rem;
}

.precision-note a {
    color: var(--thermo-primary);
    text-decoration: none;
    font-weight: 600;
}

.precision-note a:hover {
    text-decoration: underline;
}

/* Thermomètre 3D */
.thermometer-visual {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.visual-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.visual-header h3 i {
    color: var(--thermo-primary);
}

.visual-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-ghost {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--thermo-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--thermo-light);
    transform: translateY(-2px);
}

/* Thermomètre 3D */
.carbon-thermometer-3d {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.thermometer-scale-3d {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2rem 0;
    z-index: 2;
}

.scale-mark {
    color: var(--thermo-gray);
    font-size: 0.9rem;
    font-weight: 600;
    padding-right: 1rem;
    position: relative;
}

.scale-mark::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.thermometer-tube-3d {
    position: relative;
    width: 60px;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.5),
        0 10px 40px rgba(0, 0, 0, 0.3);
}

.tube-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 212, 170, 0.05) 50%,
        transparent 100%);
    animation: tubeGlow 4s ease-in-out infinite;
}

.mercury-level {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top,
        #00d4aa 0%,
        #00f5d4 50%,
        #00d4aa 100%);
    border-radius: 30px;
    transition: height 2s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        inset 0 0 30px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(0, 212, 170, 0.6);
}

.mercury-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    animation: mercuryGlow 3s ease-in-out infinite;
}

.mercury-bubbles {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
}

.bubble {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: bubbleRise 4s linear infinite;
}

.bubble:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    left: 50%;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    left: 80%;
    animation-delay: 2s;
}

@keyframes tubeGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

@keyframes mercuryGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes bubbleRise {
    0% {
        bottom: 0;
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateY(-20px) scale(0.5);
    }
}

.thermometer-bulb-3d {
    position: absolute;
    bottom: -40px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bulb-core {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle,
        #00d4aa 0%,
        #00b894 50%,
        #00997a 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 
        inset 0 0 30px rgba(255, 255, 255, 0.4),
        0 0 60px rgba(0, 212, 170, 0.8);
}

.core-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle,
        transparent 30%,
        rgba(0, 212, 170, 0.4) 70%,
        transparent 100%);
    animation: corePulse 2s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Marqueur 3D */
.thermometer-marker-3d {
    position: absolute;
    right: 0;
    transition: bottom 2s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
}

.marker-line {
    width: 40px;
    height: 2px;
    background: var(--thermo-light);
    position: relative;
}

.marker-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--thermo-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--thermo-primary);
}

.marker-value {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--thermo-dark-light);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.marker-dot {
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--thermo-light);
    border-radius: 50%;
    border: 3px solid var(--thermo-primary);
    box-shadow: 0 0 20px var(--thermo-primary);
}

/* Zones de performance */
.performance-zones {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 0;
}

.zone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.zone:hover {
    transform: translateX(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.zone.excellent { border-left: 3px solid #00d4aa; }
.zone.good { border-left: 3px solid #4cd964; }
.zone.medium { border-left: 3px solid #ffcc00; }
.zone.poor { border-left: 3px solid #ff9500; }
.zone.critical { border-left: 3px solid #ff3b30; }

.zone-label {
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 80px;
}

.zone-icon {
    font-size: 1.2rem;
}

/* Score global */
.global-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.score-ring {
    position: relative;
    width: 120px;
    height: 120px;
}

.score-background {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.score-progress {
    fill: none;
    stroke: var(--thermo-primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339;
    stroke-dashoffset: 339;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-value span {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--thermo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
}

.score-value small {
    font-size: 0.9rem;
    color: var(--thermo-gray);
}

.score-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.score-category {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--thermo-primary);
    margin-bottom: 0.5rem;
}

.score-rank {
    font-size: 0.9rem;
    color: var(--thermo-gray);
}

/* Colonne droite : Résultats */
.thermometer-results {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.results-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.results-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.results-header h3 i {
    color: var(--thermo-primary);
}

.results-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--thermo-light);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Scores détaillés */
.detailed-scores {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.score-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.score-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.score-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.score-icon.scope1 {
    background: rgba(0, 212, 170, 0.1);
    color: var(--thermo-primary);
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.score-icon.scope2 {
    background: rgba(9, 132, 227, 0.1);
    color: var(--thermo-secondary);
    border: 1px solid rgba(9, 132, 227, 0.2);
}

.score-icon.scope3 {
    background: rgba(108, 92, 231, 0.1);
    color: var(--thermo-accent);
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.score-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.score-info p {
    font-size: 0.85rem;
    color: var(--thermo-gray);
}

.score-value-item {
    text-align: right;
}

.score-value-item span {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.score-value-item small {
    font-size: 0.9rem;
    color: var(--thermo-gray);
}

/* Équivalents */
.equivalents-section {
    margin-bottom: 2rem;
}

.equivalents-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.equivalents-section h4 i {
    color: var(--thermo-primary);
}

.equivalents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.equivalent-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.equivalent-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--thermo-primary);
    font-size: 1.2rem;
}

.equivalent-details span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--thermo-primary);
    display: block;
    line-height: 1;
}

.equivalent-details small {
    font-size: 0.8rem;
    color: var(--thermo-gray);
}

/* Actions recommandées */
.actions-section {
    margin-bottom: 2rem;
}

.actions-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.actions-section h4 i {
    color: var(--thermo-primary);
}

.actions-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-placeholder {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--thermo-gray);
}

.action-placeholder i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--thermo-primary);
    opacity: 0.5;
}

.action-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid var(--thermo-primary);
    transition: all 0.3s ease;
}

.action-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.action-icon {
    width: 30px;
    height: 30px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thermo-primary);
    flex-shrink: 0;
}

.action-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.action-content p {
    font-size: 0.85rem;
    color: var(--thermo-gray);
    line-height: 1.4;
}

/* Section rapport */
.report-section {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.report-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.report-section h4 i {
    color: var(--thermo-primary);
}

.report-section p {
    font-size: 0.9rem;
    color: var(--thermo-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Section Benchmark */
.benchmark-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.benchmark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(9, 132, 227, 0.05) 0%, transparent 50%);
}

.benchmark-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .benchmark-grid {
        grid-template-columns: 1fr;
    }
}

.benchmark-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.benchmark-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.benchmark-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.benchmark-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benchmark-header h3 i {
    color: var(--thermo-primary);
}

.benchmark-rank,
.benchmark-target {
    font-size: 2rem;
    font-weight: 800;
    background: var(--thermo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Indicateur de position */
.position-indicator {
    position: relative;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 2rem 0 1rem;
    overflow: hidden;
}

.position-scale {
    display: flex;
    height: 100%;
}

.scale-segment {
    flex: 1;
}

.scale-segment.worst { background: #ff3b30; }
.scale-segment.poor { background: #ff9500; }
.scale-segment.average { background: #ffcc00; }
.scale-segment.good { background: #4cd964; }
.scale-segment.best { background: #00d4aa; }

.position-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--thermo-light);
    border-radius: 50%;
    border: 3px solid var(--thermo-primary);
    box-shadow: 0 0 20px var(--thermo-primary);
    z-index: 2;
}

.position-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--thermo-gray);
}

/* Cible */
.target-visual {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.target-ring {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.target-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        var(--thermo-primary) 0%,
        var(--thermo-primary) 0%,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    mask: radial-gradient(transparent 65px, black 66px);
    -webkit-mask: radial-gradient(transparent 65px, black 66px);
    transition: background 1s ease;
}

.target-details p {
    font-size: 0.9rem;
    color: var(--thermo-gray);
    margin-bottom: 0.5rem;
}

.target-savings span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--thermo-primary);
    display: block;
}

.target-savings small {
    font-size: 0.8rem;
    color: var(--thermo-gray);
}

/* CTA Thermomètre */
.thermometer-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(10, 15, 28, 0.95) 0%,
        rgba(26, 35, 50, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.thermometer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(9, 132, 227, 0.1) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--thermo-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--thermo-light);
    font-weight: 500;
}

.feature i {
    color: var(--thermo-primary);
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .thermometer-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .thermometer-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .carbon-thermometer-3d {
        height: 300px;
    }
    
    .thermometer-tube-3d {
        width: 40px;
    }
    
    .performance-zones {
        display: none;
    }
    
    .thermometer-scale-3d {
        display: none;
    }
    
    .global-score {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .control-actions {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-xl {
        width: 100%;
        max-width: 300px;
    }
    
    .equivalents-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .thermometer-hero {
        padding: 6rem 0 3rem;
    }
    
    .thermometer-hero .hero-title {
        font-size: 2rem;
    }
    
    .carbon-thermometer-3d {
        height: 250px;
    }
    
    .thermometer-bulb-3d {
        width: 70px;
        height: 70px;
        bottom: -25px;
    }
    
    .bulb-core {
        width: 50px;
        height: 50px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .thermometer-grid {
        gap: 1.5rem;
    }
}

/* Animations */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}