/* ===================================
   PREMIUM LANDING PAGE STYLES
   =================================== */

/* Sections */
.wb-section {
  padding: var(--wb-space-3xl) 0;
}

.wb-section-compact {
  padding: var(--wb-space-xl) 0;
}

.wb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--wb-space-lg);
}

/* Hero Photo */
.wb-hero-photo {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--wb-radius-2xl);
  box-shadow: var(--wb-shadow-xl), var(--wb-glow-primary);
  border: 3px solid var(--wb-primary);
  object-fit: cover;
}

/* Positioning Section */
.wb-positioning-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.wb-positioning-content .wb-text-h1 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: none;
}

/* Signature Visual Section */
.wb-architecture-grid {
  align-items: center;
  gap: var(--wb-space-4xl);
}

.wb-signature-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Architecture Image */
.wb-architecture-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: var(--wb-radius-xl);
  box-shadow: var(--wb-shadow-xl);
  object-fit: contain;
}

.wb-architecture-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Manifesto Section */
.wb-manifesto-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.wb-manifesto-card .wb-card-body {
  padding: var(--wb-space-3xl);
}

/* Grid System */
.wb-grid {
  display: grid;
  gap: var(--wb-space-xl);
}

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

.wb-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Text Utilities */
.wb-text-center {
  text-align: center;
}

.wb-mb-lg {
  margin-bottom: var(--wb-space-lg);
}

.wb-mb-xl {
  margin-bottom: var(--wb-space-3xl);
}



/* Badges */




/* ========================================
   ARCHIVES PROJETS (IDE STYLE)
   ======================================== */

.ide-container {
    display: grid;
    grid-template-columns: 25% 75%;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: #dfe1e5;
    min-height: 600px;
}

/* Sidebar */
.ide-sidebar {
    background: rgba(79, 70, 229, 0.03);
    border-right: 1px solid rgba(148, 163, 184, 0.2);
}

.ide-sidebar-header {
    padding: 0.75rem 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--wb-primary);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    letter-spacing: 0.05em;
    background: rgba(79, 70, 229, 0.05);
}

.ide-file-list {
    padding: 0.5rem 0;
}

.ide-file {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: var(--wb-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.ide-file:hover {
    background: rgba(79, 70, 229, 0.05);
    color: var(--wb-text-primary);
}

.ide-file.active {
    background: rgba(79, 70, 229, 0.1);
    border-left-color: var(--wb-primary);
    color: var(--wb-primary);
    font-weight: 600;
}

.file-icon {
    font-size: 1rem;
}

.file-name {
    flex: 1;
}

/* Main View */
.ide-main {
    display: flex;
    flex-direction: column;
}

.ide-tabs {
    display: flex;
    gap: 0;
    background: rgba(79, 70, 229, 0.03);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.ide-tab {
    padding: 0.75rem 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: var(--wb-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    border-right: 1px solid rgba(148, 163, 184, 0.1);
    border-bottom: 2px solid transparent;
    position: relative;
}

.ide-tab:hover {
    background: rgba(79, 70, 229, 0.05);
    color: var(--wb-primary);
}

.ide-tab.active {
    background: #dfe1e5;
    color: var(--wb-primary);
    border-bottom-color: var(--wb-primary);
    font-weight: 600;
}

/* Content Area */
.ide-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.project-view {
    display: none;
    animation: glitchIn 0.3s ease;
}

.project-view.active {
    display: block !important;
}

@keyframes glitchIn {
    0% {
        opacity: 0;
        transform: translateX(-10px);
        filter: blur(2px);
    }
    50% {
        opacity: 0.5;
        transform: translateX(5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

.tab-content {
    display: none;
    padding: 2rem;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Project Header */
.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.project-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wb-text-primary);
}

.cursor-blink {
    animation: blink 1s step-end infinite;
    color: var(--wb-primary);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Image Wrapper */
.project-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.project-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.project-image-wrapper:hover .project-image {
    transform: scale(1.02);
}

.project-image-wrapper:hover {
    border-color: var(--wb-primary);
}

.project-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--wb-text-secondary);
}

/* Code Block */
.code-block {
    background: rgba(79, 70, 229, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    padding: 2rem;
    font-family: 'JetBrains Mono', monospace;
}

.code-line {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--wb-text-secondary);
    border-left: 3px solid transparent;
    padding-left: 1rem;
    transition: all 0.2s ease;
}

.code-line:hover {
    border-left-color: var(--wb-primary);
    background: rgba(79, 70, 229, 0.05);
    color: var(--wb-text-primary);
}

.code-key {
    color: var(--wb-primary);
    font-weight: 600;
}

/* KPI Grid */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.kpi-card {
    background: rgba(79, 70, 229, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.kpi-card:hover {
    border-color: var(--wb-primary);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.15);
    transform: translateY(-2px);
    background: rgba(79, 70, 229, 0.05);
}

.kpi-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--wb-primary);
    margin-bottom: 0.5rem;
}

.kpi-label {
    font-size: 0.875rem;
    color: var(--wb-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 992px) {
    .ide-container {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }
    
    /* Sidebar transformée en barre de navigation horizontale */
    .ide-sidebar {
        display: block !important;
        border-right: none;
        border-bottom: 1px solid rgba(148, 163, 184, 0.2);
        background: rgba(79, 70, 229, 0.05);
        width: 100%;
    }
    
    /* Suppression du header PROJETS sur mobile */
    .ide-sidebar-header {
        display: none;
    }
    
    /* Liste de fichiers horizontale scrollable */
    .ide-file-list {
        display: flex !important;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0.75rem 0.5rem;
        gap: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .ide-file-list::-webkit-scrollbar {
        display: none;
    }
    
    /* Fichiers en mode tabs horizontaux */
    .ide-file {
        display: flex !important;
        flex-shrink: 0;
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 0.625rem 1rem;
        border-radius: 4px 4px 0 0;
        background: rgba(79, 70, 229, 0.03);
        border: 1px solid rgba(148, 163, 184, 0.2);
        border-bottom: 3px solid transparent;
        min-width: fit-content;
        touch-action: manipulation;
    }
    
    .ide-file.active {
        border-left: none;
        border-bottom-color: var(--wb-primary);
        background: #dfe1e5;
        border-top: 1px solid var(--wb-primary);
        border-left: 1px solid var(--wb-primary);
        border-right: 1px solid var(--wb-primary);
    }
    
    .file-icon {
        font-size: 1.125rem;
        display: inline-block;
    }
    
    .file-name {
        font-size: 0.8125rem;
        display: inline-block;
    }
    
    /* Main View 100% largeur */
    .ide-main {
        width: 100%;
    }
    
    /* Projets visibles uniquement si actifs */
    .project-view {
        display: none !important;
    }
    
    .project-view.active {
        display: block !important;
    }
    
    /* Tabs réduits */
    .ide-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .ide-tab {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    /* Contenu ajusté */
    .tab-content {
        padding: 1.25rem;
    }
    
    /* Header projet : bouton en dessous du titre */
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .project-header .wb-btn,
    .project-header .wb-btn-sm {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }
    
    .project-title {
        font-size: 1.125rem;
        word-wrap: break-word;
        line-height: 1.4;
    }
    
    /* KPI Grid : 2 colonnes sur mobile */
    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .kpi-card {
        padding: 1.25rem 1rem;
    }
    
    .kpi-value {
        font-size: 1.75rem;
    }
    
    .kpi-label {
        font-size: 0.75rem;
    }
    
    /* Code block ajusté */
    .code-block {
        padding: 1.25rem;
        background: transparent !important;
        border: none !important;
    }
    
    .code-line {
        font-size: 0.8125rem;
        padding-left: 0.75rem;
        background: transparent !important;
        border-left-color: rgba(148, 163, 184, 0.3);
    }
    
    /* Image projet */
    .project-image-wrapper {
        margin-bottom: 1.25rem;
        overflow: hidden;
    }
    
    .project-image {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .project-desc {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
}
    
    .datasheet-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .datasheet-profile {
        position: static;
    }
    
    .spec-row {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .spec-number {
        font-size: 1.5rem;
    }
    
    .diagnostic-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .terminal-side {
        position: static;
    }
    
    .connection-lines {
        display: none;
    }
    
    .solution-module {
        opacity: 1;
        transform: translateX(0);
        padding: var(--wb-space-lg);
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }
    
    .solution-module .wb-btn,
    .solution-module .wb-btn-sm {
        width: 100%;
        white-space: normal;
        box-sizing: border-box;
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
        max-width: 100%;
    }
    
    .solution-desc {
        margin-bottom: 1rem;
    }
    
    .terminal-body {
        padding: 1rem;
        font-size: 0.75rem;
    }
    
    .launch-content {
        padding: 2rem;
    }
    
    .status-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .wb-container {
        padding: 0 var(--wb-space-lg);
        box-sizing: border-box;
    }
    
    .project-header {
        flex-direction: column;
        gap: var(--wb-space-md);
    }
    
    .project-header .wb-btn {
        width: 100%;
        box-sizing: border-box;
    }
    
    .project-title {
        font-size: 1rem;
        word-wrap: break-word;
    }
    
    .code-line {
        font-size: 0.75rem;
    }



/* ========================================
   FICHE TECHNIQUE ARCHITECTE (DATASHEET)
   ======================================== */

.datasheet-split {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 3rem;
    align-items: start;
}

/* Profil Gauche */
.datasheet-profile {
    /* position: sticky; */
    /* top: 2rem; */
}

.profile-header {
    margin-bottom: 2rem;
}

.profile-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--wb-primary);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: var(--wb-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--wb-text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.profile-title {
    font-size: 1.125rem;
    color: var(--wb-text-primary);
    line-height: 1.6;
    font-weight: 500;
}

.case-study {
    background: rgba(79, 70, 229, 0.05);
    border-left: 4px solid var(--wb-primary);
    padding: 1.5rem;
    border-radius: 4px;
}

.case-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--wb-primary);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.case-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--wb-text-primary);
}

/* Spécifications Droite */
.datasheet-specs {
    display: flex;
    flex-direction: column;
}

.spec-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

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

.spec-row:hover {
    background: rgba(79, 70, 229, 0.02);
    padding-left: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-right: 1rem;
}

.spec-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--wb-primary);
    line-height: 1;
    opacity: 0.4;
}

.spec-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.spec-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.spec-icon {
    color: var(--wb-primary);
    flex-shrink: 0;
}

.spec-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--wb-text-primary);
}

.spec-desc {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--wb-text-primary);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 968px) {
    .datasheet-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .datasheet-profile {
        position: static;
    }
    
    .spec-row {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .spec-number {
        font-size: 1.5rem;
    }
}



/* ========================================
   STATION DE LANCEMENT - DEPRECATED
   Styles moved to contact-terminal.css
   ======================================== */



/* Responsive */
@media (max-width: 768px) {
  .wb-section {
    padding: var(--wb-space-2xl) 0;
  }
  
  .wb-grid-2,
  .wb-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .wb-architecture-grid {
    grid-template-columns: 1fr;
  }
  
  .wb-signature-visual {
    margin-bottom: var(--wb-space-xl);
  }
  
  .wb-architecture-image {
    max-width: 100%;
  }
  
  .wb-manifesto-card .wb-card-body {
    padding: var(--wb-space-xl);
  }
  
  .wb-btn {
    width: 100%;
  }
}

/* ========================================
   CONSOLE DIAGNOSTIC & RÉPARATION
   ======================================== */

.diagnostic-split {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 2rem;
    align-items: stretch;
    position: relative;
}

/* Terminal Gauche */
.terminal-side {
    position: sticky;
    top: 2rem;
    height: 100%;
}

.terminal-window {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
}

.scan-line.active {
    animation: scanDown 3s ease-in-out forwards;
}

@keyframes scanDown {
    0% { top: 0; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.terminal-header {
    background: rgba(22, 27, 34, 0.95);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.terminal-controls {
    display: flex;
    gap: 0.5rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-close { background: #ff5f56; }
.control-minimize { background: #ffbd2e; }
.control-maximize { background: #27c93f; }

.terminal-title {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    flex: 1;
    text-align: center;
}

.terminal-body {
    padding: 2rem;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 1rem;
    line-height: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.terminal-line {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.terminal-muted { color: rgba(255, 255, 255, 0.5); }
.terminal-success { color: #10b981; }
.terminal-warning { color: #f59e0b; font-weight: 700; }
.terminal-blank { height: 1rem; }

.scan-log {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    margin: 0.75rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid transparent;
    border-radius: 4px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.scan-log.revealed {
    opacity: 1;
    transform: translateX(0);
}

.log-level {
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: 4px;
    white-space: nowrap;
}

.log-critical {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.4);
    animation: pulseCritical 2s ease-in-out infinite;
}

.log-warning {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.4);
    animation: pulseWarning 2s ease-in-out infinite;
}

.log-error {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.4);
    animation: pulseError 2s ease-in-out infinite;
}

.log-limit {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.4);
    animation: pulseLimit 2s ease-in-out infinite;
}

@keyframes pulseCritical {
    0%, 100% { box-shadow: 0 0 10px rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.6); }
}

@keyframes pulseWarning {
    0%, 100% { box-shadow: 0 0 10px rgba(245, 158, 11, 0.3); }
    50% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.6); }
}

@keyframes pulseError {
    0%, 100% { box-shadow: 0 0 10px rgba(234, 179, 8, 0.3); }
    50% { box-shadow: 0 0 20px rgba(234, 179, 8, 0.6); }
}

@keyframes pulseLimit {
    0%, 100% { box-shadow: 0 0 10px rgba(6, 182, 212, 0.3); }
    50% { box-shadow: 0 0 20px rgba(6, 182, 212, 0.6); }
}

.log-msg {
    color: rgba(255, 255, 255, 0.85);
    flex: 1;
}

.scan-complete {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Solutions Droite */
.solutions-side {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: -2rem;
    width: 2rem;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.connection-line {
    opacity: 0;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: all 0.6s ease;
}

.connection-line.active {
    opacity: 1;
    stroke-dashoffset: 0;
    filter: drop-shadow(0 0 8px currentColor);
}

.solution-module {
    background: #dfe1e5;
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    opacity: 0.1;
    transform: translateX(20px);
    transition: all 0.6s ease;
    position: relative;
    z-index: 1;
}

.solution-module.active {
    opacity: 1;
    transform: translateX(0);
    border-color: var(--wb-primary);
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.2);
}

.solution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.solution-icon {
    font-size: 1.5rem;
}

.solution-id {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--wb-primary);
    background: rgba(79, 70, 229, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.solution-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wb-text-primary);
    margin-bottom: 0.75rem;
}

.solution-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--wb-text-secondary);
    margin-bottom: 1.25rem;
}

.wb-btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* Bandeau Final */
.diagnostic-cta {
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.diagnostic-cta.active {
    opacity: 1;
    transform: translateY(0);
}

.diagnostic-cta .wb-card-body {
    text-align: center;
    padding: 2rem;
}

.diagnostic-cta .wb-text-h3 {
    color: #10b981;
    margin-bottom: 1rem;
    text-align: center;
}

.diagnostic-cta .wb-text-body {
    text-align: center;
}

.diagnostic-cta .wb-btn {
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 968px) {
    .diagnostic-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .terminal-side {
        position: static;
    }
    
    .connection-lines {
        display: none;
    }
    
    .solution-module {
        opacity: 1;
        transform: translateX(0);
    }
    
    .terminal-body {
        padding: 1.5rem;
        font-size: 0.8rem;
    }
    
    .diagnostic-cta {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Code-Highlighting Colors */
:root {
  --color-tech: #3b82f6;      /* Bleu pour technos */
  --color-business: #eab308;  /* Jaune pour business */
  --color-security: #22c55e;  /* Vert pour sécurité */
  --color-data: #a855f7;      /* Violet pour données */
}

.highlight-tech { color: var(--color-tech); font-weight: 600; }
.highlight-business { color: var(--color-business); font-weight: 600; }
.highlight-security { color: var(--color-security); font-weight: 600; }
.highlight-data { color: var(--color-data); font-weight: 600; }
