.deployment-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    position: relative;
}
.flow-step {
    background: white;
    border: 3px solid;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    width: 160px;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.flow-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.flow-arrow {
    font-size: 28px;
    color: #6c757d;
    position: absolute;
    z-index: 0;
}
.step-1 { border-color: #007bff; }
.step-2 { border-color: #28a745; }
.step-3 { border-color: #ffc107; }
.step-4 { border-color: #dc3545; }
.step-5 { border-color: #6c757d; }
.deployment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.deploy-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    border: 3px solid;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.deploy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.deploy-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.deployment-console {
    background: #1e1e1e;
    color: #d4d4d4;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    font-family: 'Courier New', monospace;
    max-height: 500px;
    overflow-y: auto;
}
.console-line {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.6;
}
.deploy-demo-area {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    color: white;
}
.demo-container {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(255,255,255,0.2);
}
.deploy-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
    padding: 25px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}
.comparison-table {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    font-weight: 600;
}
.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #dee2e6;
}
.deploy-timeline {
    position: relative;
    margin: 50px 0;
    padding-left: 50px;
}
.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    border: 3px solid;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}
.timeline-marker {
    position: absolute;
    left: -50px;
    top: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 4px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.timeline-connector {
    position: absolute;
    left: -30px;
    top: 70px;
    bottom: -50px;
    width: 4px;
    background: linear-gradient(to bottom, #dee2e6, transparent);
    z-index: 1;
}
.timeline-item:last-child .timeline-connector {
    display: none;
}
.env-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin: 0 5px 10px 0;
}
.deploy-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    display: none;
}
.deploy-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}
.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.metric-box {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 2px solid;
    transition: all 0.3s ease;
}
.metric-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.deploy-checklist {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    color: white;
}
.checklist-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 15px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}
.checklist-item input {
    margin-right: 20px;
    transform: scale(1.3);
}
